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.CraftEgg; import org.bukkit.craftbukkit.v1_20_R3.entity.CraftEntity; import net.citizensnpcs.api.npc.NPC; import net.citizensnpcs.nms.v1_20_R3.util.ForwardingNPCHolder; 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.projectile.ThrownEgg; import net.minecraft.world.level.Level; 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 EggController extends AbstractEntityController { public EggController() { super(EntityEggNPC.class); } @Override protected org.bukkit.entity.Entity createEntity(Location at, NPC npc) { ServerLevel ws = ((CraftWorld) at.getWorld()).getHandle(); final EntityEggNPC handle = new EntityEggNPC(ws, npc, at.getX(), at.getY(), at.getZ()); return handle.getBukkitEntity(); } @Override public org.bukkit.entity.Egg getBukkitEntity() { return (org.bukkit.entity.Egg) super.getBukkitEntity(); } public static class EggNPC extends CraftEgg implements ForwardingNPCHolder { public EggNPC(EntityEggNPC entity) { super((CraftServer) Bukkit.getServer(), entity); } } public static class EntityEggNPC extends ThrownEgg implements NPCHolder { private final CitizensNPC npc; public EntityEggNPC(EntityType types, Level level) { this(types, level, null); } public EntityEggNPC(EntityType types, Level level, NPC npc) { super(types, level); this.npc = (CitizensNPC) npc; } public EntityEggNPC(Level level, NPC npc, double d0, double d1, double d2) { super(level, d0, d1, d2); this.npc = (CitizensNPC) npc; } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(super.getBukkitEntity() instanceof NPCHolder)) { NMSImpl.setBukkitEntity(this, new EggNPC(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 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(); if (!npc.isProtected()) { super.tick(); } } 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; } } }