Interface IForgeAbstractMinecart
- All Known Implementing Classes:
AbstractMinecart
,AbstractMinecartContainer
,Minecart
,MinecartChest
,MinecartCommandBlock
,MinecartFurnace
,MinecartHopper
,MinecartSpawner
,MinecartTNT
public interface IForgeAbstractMinecart
-
Field Summary
Modifier and TypeFieldDescriptionstatic final double
static final float
static final float
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returns true if this cart can be ridden by an Entity.boolean
Returns true if this cart can currently use rails.default ItemStack
Deprecated, for removal: This API element is subject to removal in a future version.default int
Called from Detector Rails to retrieve a redstone power level for comparators.float
Returns the current speed cap for the cart when traveling on rails.default BlockPos
Internal, returns the current spot to look for the attached rail.double
default float
Returns the carts max speed when traveling on rails.float
float
double
default double
default boolean
Returns true if this cart is self propelled.void
Moved to allow overrides.private AbstractMinecart
self()
void
setCanUseRail
(boolean use) Set whether the minecart can use rails.void
setCurrentCartSpeedCapOnRail
(float value) void
setDragAir
(double value) void
setMaxSpeedAirLateral
(float value) void
setMaxSpeedAirVertical
(float value) default boolean
Return false if this cart should not call onMinecartPass() and should ignore Powered Rails.
-
Field Details
-
DEFAULT_MAX_SPEED_AIR_LATERAL
static final float DEFAULT_MAX_SPEED_AIR_LATERAL- See Also:
-
DEFAULT_MAX_SPEED_AIR_VERTICAL
static final float DEFAULT_MAX_SPEED_AIR_VERTICAL- See Also:
-
DEFAULT_AIR_DRAG
static final double DEFAULT_AIR_DRAG- See Also:
-
-
Method Details
-
self
-
getCurrentRailPosition
Internal, returns the current spot to look for the attached rail. -
getMaxSpeedWithRail
double getMaxSpeedWithRail() -
moveMinecartOnRail
Moved to allow overrides. This code handles minecart movement and speed capping when on a rail. -
getCartItem
Deprecated, for removal: This API element is subject to removal in a future version.TODO Remove in 1.19 - useAbstractMinecart.getPickResult()
insteadThis function returns an ItemStack that represents this cart. This should be an ItemStack that can be used by the player to place the cart, but is not necessary the item the cart drops when destroyed.- Returns:
- An ItemStack that can be used to place the cart.
-
canUseRail
boolean canUseRail()Returns true if this cart can currently use rails. This function is mainly used to gracefully detach a minecart from a rail.- Returns:
- True if the minecart can use rails.
-
setCanUseRail
void setCanUseRail(boolean use) Set whether the minecart can use rails. This function is mainly used to gracefully detach a minecart from a rail.- Parameters:
use
- Whether the minecart can currently use rails.
-
shouldDoRailFunctions
default boolean shouldDoRailFunctions()Return false if this cart should not call onMinecartPass() and should ignore Powered Rails.- Returns:
- True if this cart should call onMinecartPass().
-
isPoweredCart
default boolean isPoweredCart()Returns true if this cart is self propelled.- Returns:
- True if powered.
-
canBeRidden
default boolean canBeRidden()Returns true if this cart can be ridden by an Entity.- Returns:
- True if this cart can be ridden.
-
getMaxCartSpeedOnRail
default float getMaxCartSpeedOnRail()Returns the carts max speed when traveling on rails. Carts going faster than 1.1 cause issues with chunk loading. Carts cant traverse slopes or corners at greater than 0.5 - 0.6. This value is compared with the rails max speed and the carts current speed cap to determine the carts current max speed. A normal rail's max speed is 0.4.- Returns:
- Carts max speed.
-
getCurrentCartSpeedCapOnRail
float getCurrentCartSpeedCapOnRail()Returns the current speed cap for the cart when traveling on rails. This functions differs from getMaxCartSpeedOnRail() in that it controls current movement and cannot be overridden. The value however can never be higher than getMaxCartSpeedOnRail(). -
setCurrentCartSpeedCapOnRail
void setCurrentCartSpeedCapOnRail(float value) -
getMaxSpeedAirLateral
float getMaxSpeedAirLateral() -
setMaxSpeedAirLateral
void setMaxSpeedAirLateral(float value) -
getMaxSpeedAirVertical
float getMaxSpeedAirVertical() -
setMaxSpeedAirVertical
void setMaxSpeedAirVertical(float value) -
getDragAir
double getDragAir() -
setDragAir
void setDragAir(double value) -
getSlopeAdjustment
default double getSlopeAdjustment() -
getComparatorLevel
default int getComparatorLevel()Called from Detector Rails to retrieve a redstone power level for comparators.
-
AbstractMinecart.getPickResult()
instead