Minestom/src/main/java/net/minestom/server/collision/Shape.java

56 lines
1.7 KiB
Java

package net.minestom.server.collision;
import net.minestom.server.coordinate.Point;
import net.minestom.server.instance.block.BlockFace;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
@ApiStatus.Experimental
public interface Shape {
boolean isOccluded(@NotNull Shape shape, @NotNull BlockFace face);
/**
* Returns true if the given block face is completely covered by this shape, false otherwise.
* @param face The face to test
*/
default boolean isFaceFull(@NotNull BlockFace face) {
return false;
}
/**
* Checks if two bounding boxes intersect.
*
* @param positionRelative Relative position of bounding box to check with
* @param boundingBox Bounding box to check for intersections with
* @return is an intersection found
*/
boolean intersectBox(@NotNull Point positionRelative, @NotNull BoundingBox boundingBox);
/**
* Checks if a moving bounding box will hit this shape.
*
* @param rayStart Position of the moving shape
* @param rayDirection Movement vector
* @param shapePos Position of this shape
* @param moving Bounding Box of moving shape
* @param finalResult Stores final SweepResult
* @return is an intersection found
*/
boolean intersectBoxSwept(@NotNull Point rayStart, @NotNull Point rayDirection,
@NotNull Point shapePos, @NotNull BoundingBox moving, @NotNull SweepResult finalResult);
/**
* Relative Start
*
* @return Start of shape
*/
@NotNull Point relativeStart();
/**
* Relative End
*
* @return End of shape
*/
@NotNull Point relativeEnd();
}