package net.citizensnpcs.nms.v1_13_R2.entity.nonliving; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_13_R2.CraftServer; import org.bukkit.craftbukkit.v1_13_R2.entity.CraftArmorStand; import org.bukkit.craftbukkit.v1_13_R2.entity.CraftEntity; import org.bukkit.entity.ArmorStand; import org.bukkit.entity.Player; import org.bukkit.event.player.PlayerInteractEntityEvent; import org.bukkit.util.Vector; import net.citizensnpcs.api.event.NPCPushEvent; import net.citizensnpcs.api.npc.NPC; import net.citizensnpcs.nms.v1_13_R2.entity.MobEntityController; import net.citizensnpcs.npc.CitizensNPC; import net.citizensnpcs.npc.ai.NPCHolder; import net.citizensnpcs.util.Util; import net.minecraft.server.v1_13_R2.EntityArmorStand; import net.minecraft.server.v1_13_R2.EntityHuman; import net.minecraft.server.v1_13_R2.EnumHand; import net.minecraft.server.v1_13_R2.EnumInteractionResult; import net.minecraft.server.v1_13_R2.NBTTagCompound; import net.minecraft.server.v1_13_R2.Vec3D; import net.minecraft.server.v1_13_R2.World; public class ArmorStandController extends MobEntityController { public ArmorStandController() { super(EntityArmorStandNPC.class); } @Override public ArmorStand getBukkitEntity() { return (ArmorStand) super.getBukkitEntity(); } public static class ArmorStandNPC extends CraftArmorStand implements NPCHolder { private final CitizensNPC npc; public ArmorStandNPC(EntityArmorStandNPC entity) { super((CraftServer) Bukkit.getServer(), entity); this.npc = entity.npc; } @Override public NPC getNPC() { return npc; } } public static class EntityArmorStandNPC extends EntityArmorStand implements NPCHolder { private final CitizensNPC npc; public EntityArmorStandNPC(World world) { this(world, null); } public EntityArmorStandNPC(World world, NPC npc) { super(world); this.npc = (CitizensNPC) npc; } @Override public EnumInteractionResult a(EntityHuman entityhuman, Vec3D vec3d, EnumHand enumhand) { if (npc == null) { return super.a(entityhuman, vec3d, enumhand); } PlayerInteractEntityEvent event = new PlayerInteractEntityEvent((Player) entityhuman.getBukkitEntity(), getBukkitEntity()); Bukkit.getPluginManager().callEvent(event); return event.isCancelled() ? EnumInteractionResult.FAIL : EnumInteractionResult.SUCCESS; } @Override public void tick() { super.tick(); if (npc != null) { npc.update(); } } @Override public void collide(net.minecraft.server.v1_13_R2.Entity entity) { // this method is called by both the entities involved - cancelling // it will not stop the NPC from moving. super.collide(entity); if (npc != null) { Util.callCollisionEvent(npc, entity.getBukkitEntity()); } } @Override public boolean d(NBTTagCompound save) { return npc == null ? super.d(save) : false; } @Override public void f(double x, double y, double z) { if (npc == null) { super.f(x, y, z); return; } if (NPCPushEvent.getHandlerList().getRegisteredListeners().length == 0) { if (!npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true)) super.f(x, y, z); return; } Vector vector = new Vector(x, y, z); NPCPushEvent event = Util.callPushEvent(npc, vector); if (!event.isCancelled()) { vector = event.getCollisionVector(); super.f(vector.getX(), vector.getY(), vector.getZ()); } // when another entity collides, this method is called to push the // NPC so we prevent it from doing anything if the event is // cancelled. } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(bukkitEntity instanceof NPCHolder)) { bukkitEntity = new ArmorStandNPC(this); } return super.getBukkitEntity(); } @Override public NPC getNPC() { return npc; } } }