Search in sources :

Example 26 with WorldMaster

use of io.xol.chunkstories.api.world.WorldMaster in project chunkstories-core by Hugobros3.

the class VoxelDoor method onRemove.

@Override
public void onRemove(ChunkCell context, WorldModificationCause cause) {
    // Don't interfere with system pokes, else we get stuck in a loop
    if (cause == null || !(cause instanceof Entity))
        return;
    World world = context.getWorld();
    int x = context.getX();
    int y = context.getY();
    int z = context.getZ();
    // Ignore all that crap on a slave world
    if (!(world instanceof WorldMaster))
        return;
    int otherPartOfTheDoorY = y;
    if (top)
        otherPartOfTheDoorY--;
    else
        otherPartOfTheDoorY++;
    Voxel restOfTheDoorVoxel = world.peekSimple(x, otherPartOfTheDoorY, z);
    // Remove the other part as well, if it still exists
    if (restOfTheDoorVoxel instanceof VoxelDoor)
        world.pokeSimple(x, otherPartOfTheDoorY, z, store().air(), -1, -1, 0);
}
Also used : Entity(io.xol.chunkstories.api.entity.Entity) ItemVoxel(io.xol.chunkstories.api.item.ItemVoxel) Voxel(io.xol.chunkstories.api.voxel.Voxel) World(io.xol.chunkstories.api.world.World) WorldMaster(io.xol.chunkstories.api.world.WorldMaster)

Example 27 with WorldMaster

use of io.xol.chunkstories.api.world.WorldMaster in project chunkstories-core by Hugobros3.

the class VoxelDoor method onPlace.

@Override
public void onPlace(FutureCell cell, WorldModificationCause cause) throws IllegalBlockModificationException {
    // Ignore all that crap on a slave world
    if (!(cell.getWorld() instanceof WorldMaster))
        return;
    // We should only place the lower part, prevent entities from doing so !
    if (top && cause != null && cause instanceof Entity)
        throw new IllegalBlockModificationException(cell, "Entities can't place upper doors parts");
    // If the system adds the upper part, no modifications to be done on it
    if (top)
        return;
    World world = cell.getWorld();
    int x = cell.getX();
    int y = cell.getY();
    int z = cell.getZ();
    // Check top is free
    int topData = world.peekRaw(x, y + 1, z);
    if (VoxelFormat.id(topData) != 0)
        throw new IllegalBlockModificationException(cell, "Top part isn't free");
    // grab our attributes
    boolean isOpen = ((cell.getMetaData() >> 0) & 0x1) == 1;
    boolean hingeSide = ((cell.getMetaData() >> 1) & 0x1) == 1;
    int facingPassed = (cell.getMetaData() >> 2) & 0x3;
    // Default face is given by passed metadata
    VoxelSide doorSideFacing = VoxelSide.values()[facingPassed];
    // Determine side if placed by an entity and not internal code
    if (cause != null && cause instanceof Entity) {
        Location loc = ((Entity) cause).getLocation();
        double dx = loc.x() - (x + 0.5);
        double dz = loc.z() - (z + 0.5);
        if (Math.abs(dx) > Math.abs(dz)) {
            if (dx > 0)
                doorSideFacing = VoxelSide.RIGHT;
            else
                doorSideFacing = VoxelSide.LEFT;
        } else {
            if (dz > 0)
                doorSideFacing = VoxelSide.FRONT;
            else
                doorSideFacing = VoxelSide.BACK;
        }
        // If there is an adjacent one, set the hinge to right
        Voxel adjacent = null;
        switch(doorSideFacing) {
            case LEFT:
                adjacent = world.peekSimple(x, y, z - 1);
                break;
            case RIGHT:
                adjacent = world.peekSimple(x, y, z + 1);
                break;
            case FRONT:
                adjacent = world.peekSimple(x - 1, y, z);
                break;
            case BACK:
                adjacent = world.peekSimple(x + 1, y, z);
                break;
            default:
                break;
        }
        if (adjacent instanceof VoxelDoor) {
            hingeSide = true;
        }
        cell.setMetaData(computeMeta(isOpen, hingeSide, doorSideFacing));
    }
    // Place the upper part and we're good to go
    world.pokeSimple(x, y + 1, z, this.getUpperPart(), -1, -1, cell.getMetaData());
}
Also used : Entity(io.xol.chunkstories.api.entity.Entity) VoxelSide(io.xol.chunkstories.api.voxel.VoxelSide) ItemVoxel(io.xol.chunkstories.api.item.ItemVoxel) Voxel(io.xol.chunkstories.api.voxel.Voxel) IllegalBlockModificationException(io.xol.chunkstories.api.exceptions.world.voxel.IllegalBlockModificationException) World(io.xol.chunkstories.api.world.World) WorldMaster(io.xol.chunkstories.api.world.WorldMaster) Location(io.xol.chunkstories.api.Location)

Aggregations

WorldMaster (io.xol.chunkstories.api.world.WorldMaster)27 Location (io.xol.chunkstories.api.Location)12 Entity (io.xol.chunkstories.api.entity.Entity)12 EntityControllable (io.xol.chunkstories.api.entity.interfaces.EntityControllable)9 Player (io.xol.chunkstories.api.player.Player)8 Vector3d (org.joml.Vector3d)8 Controller (io.xol.chunkstories.api.entity.Controller)6 WorldClient (io.xol.chunkstories.api.world.WorldClient)6 ItemPile (io.xol.chunkstories.api.item.inventory.ItemPile)5 Voxel (io.xol.chunkstories.api.voxel.Voxel)5 World (io.xol.chunkstories.api.world.World)5 Vector3dc (org.joml.Vector3dc)5 WorldException (io.xol.chunkstories.api.exceptions.world.WorldException)4 EntityLiving (io.xol.chunkstories.api.entity.EntityLiving)3 PlayerVoxelModificationEvent (io.xol.chunkstories.api.events.player.voxel.PlayerVoxelModificationEvent)3 ItemVoxel (io.xol.chunkstories.api.item.ItemVoxel)3 CellData (io.xol.chunkstories.api.world.cell.CellData)3 FutureCell (io.xol.chunkstories.api.world.cell.FutureCell)3 SerializedEntityFile (io.xol.chunkstories.entity.SerializedEntityFile)3 LocalPlayer (io.xol.chunkstories.api.client.LocalPlayer)2