package net.citizensnpcs.nms.v1_20_R3.entity.nonliving; import org.bukkit.Bukkit; import org.bukkit.Location; import org.bukkit.craftbukkit.v1_20_R3.CraftServer; import org.bukkit.craftbukkit.v1_20_R3.CraftWorld; import org.bukkit.craftbukkit.v1_20_R3.entity.CraftEntity; import org.bukkit.craftbukkit.v1_20_R3.entity.CraftFallingBlock; import org.bukkit.craftbukkit.v1_20_R3.util.CraftMagicNumbers; import org.bukkit.entity.FallingBlock; import net.citizensnpcs.api.npc.NPC; import net.citizensnpcs.nms.v1_20_R3.util.NMSBoundingBox; import net.citizensnpcs.nms.v1_20_R3.util.NMSImpl; import net.citizensnpcs.npc.AbstractEntityController; import net.citizensnpcs.npc.CitizensNPC; import net.citizensnpcs.npc.ai.NPCHolder; import net.citizensnpcs.util.Util; import net.minecraft.nbt.CompoundTag; import net.minecraft.server.level.ServerLevel; import net.minecraft.tags.TagKey; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.MoverType; import net.minecraft.world.entity.item.FallingBlockEntity; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.material.Fluid; import net.minecraft.world.level.material.PushReaction; import net.minecraft.world.phys.AABB; import net.minecraft.world.phys.Vec3; public class FallingBlockController extends AbstractEntityController { public FallingBlockController() { super(EntityFallingBlockNPC.class); } @Override protected org.bukkit.entity.Entity createEntity(Location at, NPC npc) { ServerLevel ws = ((CraftWorld) at.getWorld()).getHandle(); Block id = CraftMagicNumbers.getBlock(npc.getItemProvider().get().getType()); final EntityFallingBlockNPC handle = new EntityFallingBlockNPC(EntityType.FALLING_BLOCK, ws, npc); handle.setPos(at.getX(), at.getY(), at.getZ()); handle.setDeltaMovement(Vec3.ZERO); NMSImpl.setFallingBlockState(handle, id.defaultBlockState()); return handle.getBukkitEntity(); } @Override public FallingBlock getBukkitEntity() { return (FallingBlock) super.getBukkitEntity(); } public static class EntityFallingBlockNPC extends FallingBlockEntity implements NPCHolder { private final CitizensNPC npc; public EntityFallingBlockNPC(EntityType types, Level level) { this(types, level, null); } public EntityFallingBlockNPC(EntityType types, Level level, NPC npc) { super(types, level); this.npc = (CitizensNPC) npc; } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(super.getBukkitEntity() instanceof NPCHolder)) { NMSImpl.setBukkitEntity(this, new FallingBlockNPC(this)); } return super.getBukkitEntity(); } @Override public NPC getNPC() { return npc; } @Override public PushReaction getPistonPushReaction() { return Util.callPistonPushEvent(npc) ? PushReaction.IGNORE : super.getPistonPushReaction(); } @Override public boolean isPushable() { return npc == null ? super.isPushable() : npc.data(). get(NPC.Metadata.COLLIDABLE, !npc.isProtected()); } @Override protected AABB makeBoundingBox() { return NMSBoundingBox.makeBB(npc, super.makeBoundingBox()); } @Override public void push(Entity entity) { // this method is called by both the entities involved - cancelling // it will not stop the NPC from moving. super.push(entity); if (npc != null) { Util.callCollisionEvent(npc, entity.getBukkitEntity()); } } @Override public void refreshDimensions() { if (npc == null) { super.refreshDimensions(); } else { NMSImpl.setSize(this, firstTick); } } @Override public boolean save(CompoundTag save) { return npc == null ? super.save(save) : false; } @Override public Entity teleportTo(ServerLevel worldserver, Vec3 location) { if (npc == null) return super.teleportTo(worldserver, location); return NMSImpl.teleportAcrossWorld(this, worldserver, location); } @Override public void tick() { if (npc != null) { npc.update(); Vec3 mot = getDeltaMovement(); if (Math.abs(mot.x) > EPSILON || Math.abs(mot.y) > EPSILON || Math.abs(mot.z) > EPSILON) { mot = mot.multiply(0.98, 0.98, 0.98); setDeltaMovement(mot); move(MoverType.SELF, mot); } } else { super.tick(); } } @Override public boolean updateFluidHeightAndDoFluidPushing(TagKey tagkey, double d0) { if (npc == null) return super.updateFluidHeightAndDoFluidPushing(tagkey, d0); Vec3 old = getDeltaMovement().add(0, 0, 0); boolean res = super.updateFluidHeightAndDoFluidPushing(tagkey, d0); if (!npc.isPushableByFluids()) { setDeltaMovement(old); } return res; } private static final double EPSILON = 0.001; } public static class FallingBlockNPC extends CraftFallingBlock implements NPCHolder { private final CitizensNPC npc; public FallingBlockNPC(EntityFallingBlockNPC entity) { super((CraftServer) Bukkit.getServer(), entity); this.npc = entity.npc; } @Override public NPC getNPC() { return npc; } } }