Package net.minestom.server.collision
Class CollisionUtils
java.lang.Object
net.minestom.server.collision.CollisionUtils
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull Pos
applyWorldBorder
(@NotNull WorldBorder worldBorder, @NotNull Pos currentPosition, @NotNull Pos newPosition) Applies world border collision.static PhysicsResult
blocklessCollision
(@NotNull Pos entityPosition, @NotNull Vec entityVelocity) Simulate the entity's collision physics as if the world had no blocksstatic Entity
canPlaceBlockAt
(Instance instance, Point blockPos, Block b) static PhysicsResult
checkEntityCollisions
(@NotNull Entity entity, @NotNull Vec entityVelocity) static PhysicsResult
checkEntityCollisions
(@NotNull Instance instance, BoundingBox boundingBox, Point pos, @NotNull Vec velocity, double extendRadius, Function<Entity, Boolean> entityFilter, PhysicsResult blockResult) static PhysicsResult
handlePhysics
(@NotNull Entity entity, @NotNull Vec entityVelocity) static PhysicsResult
handlePhysics
(@NotNull Entity entity, @NotNull Vec entityVelocity, @Nullable PhysicsResult lastPhysicsResult) Moves an entity with physics applied (ie checking against blocks)static PhysicsResult
handlePhysics
(@NotNull Entity entity, @NotNull Vec entityVelocity, @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves an entity with physics applied (ie checking against blocks)static PhysicsResult
handlePhysics
(@NotNull Instance instance, @Nullable Chunk chunk, @NotNull BoundingBox boundingBox, @NotNull Pos position, @NotNull Vec velocity, @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves bounding box with physics applied (ie checking against blocks)static PhysicsResult
handlePhysics
(Block.Getter blockGetter, @NotNull BoundingBox boundingBox, @NotNull Pos position, @NotNull Vec velocity, @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves bounding box with physics applied (ie checking against blocks)static boolean
isLineOfSightReachingShape
(@NotNull Instance instance, @Nullable Chunk chunk, @NotNull Point start, @NotNull Point end, @NotNull Shape shape) Checks whether shape is reachable by the given line of sight (ie there are no blocks colliding with it).static Shape
parseBlockShape
(String collision, String occlusion, Registry.BlockEntry blockEntry)
-
Constructor Details
-
CollisionUtils
public CollisionUtils()
-
-
Method Details
-
handlePhysics
public static PhysicsResult handlePhysics(@NotNull @NotNull Entity entity, @NotNull @NotNull Vec entityVelocity, @Nullable @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves an entity with physics applied (ie checking against blocks)Works by getting all the full blocks that an entity could interact with. All bounding boxes inside the full blocks are checked for collisions with the entity.
- Parameters:
entity
- the entity to moveentityVelocity
- the velocity of the entitylastPhysicsResult
- the last physics result, can be nullsingleCollision
- if the entity should only collide with one block- Returns:
- the result of physics simulation
-
checkEntityCollisions
public static PhysicsResult checkEntityCollisions(@NotNull @NotNull Entity entity, @NotNull @NotNull Vec entityVelocity) - Parameters:
entity
- the entity to moveentityVelocity
- the velocity of the entity- Returns:
- the closest entity we collide with
-
checkEntityCollisions
public static PhysicsResult checkEntityCollisions(@NotNull @NotNull Instance instance, BoundingBox boundingBox, Point pos, @NotNull @NotNull Vec velocity, double extendRadius, Function<Entity, Boolean> entityFilter, PhysicsResult blockResult) - Parameters:
velocity
- the velocity of the entityextendRadius
- the largest entity bounding box we can collide with Measured from bottom center to top corner This is used to extend the search radius for entities we collide with For players this is (0.3^2 + 0.3^2 + 1.8^2) ^ (1/3) ~= 1.51- Returns:
- the closest entity we collide with
-
handlePhysics
public static PhysicsResult handlePhysics(@NotNull @NotNull Entity entity, @NotNull @NotNull Vec entityVelocity, @Nullable @Nullable PhysicsResult lastPhysicsResult) Moves an entity with physics applied (ie checking against blocks)Works by getting all the full blocks that an entity could interact with. All bounding boxes inside the full blocks are checked for collisions with the entity.
- Parameters:
entity
- the entity to moveentityVelocity
- the velocity of the entitylastPhysicsResult
- the last physics result, can be null- Returns:
- the result of physics simulation
-
handlePhysics
public static PhysicsResult handlePhysics(@NotNull @NotNull Instance instance, @Nullable @Nullable Chunk chunk, @NotNull @NotNull BoundingBox boundingBox, @NotNull @NotNull Pos position, @NotNull @NotNull Vec velocity, @Nullable @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves bounding box with physics applied (ie checking against blocks)Works by getting all the full blocks that a bounding box could interact with. All bounding boxes inside the full blocks are checked for collisions with the given bounding box.
- Parameters:
boundingBox
- the bounding box to move- Returns:
- the result of physics simulation
-
handlePhysics
@Internal public static PhysicsResult handlePhysics(@NotNull Block.Getter blockGetter, @NotNull @NotNull BoundingBox boundingBox, @NotNull @NotNull Pos position, @NotNull @NotNull Vec velocity, @Nullable @Nullable PhysicsResult lastPhysicsResult, boolean singleCollision) Moves bounding box with physics applied (ie checking against blocks)Works by getting all the full blocks that a bounding box could interact with. All bounding boxes inside the full blocks are checked for collisions with the given bounding box.
- Parameters:
blockGetter
- the block getter to check collisions against, ensure block access is synchronized- Returns:
- the result of physics simulation
-
isLineOfSightReachingShape
public static boolean isLineOfSightReachingShape(@NotNull @NotNull Instance instance, @Nullable @Nullable Chunk chunk, @NotNull @NotNull Point start, @NotNull @NotNull Point end, @NotNull @NotNull Shape shape) Checks whether shape is reachable by the given line of sight (ie there are no blocks colliding with it).- Parameters:
instance
- the instance.chunk
- optional chunk reference for speedup purposes.start
- start of the line of sight.end
- end of the line of sight.shape
- shape to check.- Returns:
- true is shape is reachable by the given line of sight; false otherwise.
-
handlePhysics
public static PhysicsResult handlePhysics(@NotNull @NotNull Entity entity, @NotNull @NotNull Vec entityVelocity) -
canPlaceBlockAt
-
applyWorldBorder
@NotNull public static @NotNull Pos applyWorldBorder(@NotNull @NotNull WorldBorder worldBorder, @NotNull @NotNull Pos currentPosition, @NotNull @NotNull Pos newPosition) Applies world border collision.- Parameters:
worldBorder
- the world bordercurrentPosition
- the current positionnewPosition
- the future target position- Returns:
- the position with the world border collision applied (can be
newPosition
if not changed)
-
parseBlockShape
public static Shape parseBlockShape(String collision, String occlusion, Registry.BlockEntry blockEntry) -
blocklessCollision
public static PhysicsResult blocklessCollision(@NotNull @NotNull Pos entityPosition, @NotNull @NotNull Vec entityVelocity) Simulate the entity's collision physics as if the world had no blocks- Parameters:
entityPosition
- the position of the entityentityVelocity
- the velocity of the entity- Returns:
- the result of physics simulation
-