package net.citizensnpcs.nms.v1_12_R1.entity; import net.minecraft.server.v1_12_R1.DamageSource; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_12_R1.CraftServer; import org.bukkit.craftbukkit.v1_12_R1.entity.CraftEnderDragon; import org.bukkit.craftbukkit.v1_12_R1.entity.CraftEntity; import org.bukkit.entity.EnderDragon; import org.bukkit.util.Vector; import net.citizensnpcs.api.event.NPCEnderTeleportEvent; import net.citizensnpcs.api.event.NPCPushEvent; import net.citizensnpcs.api.npc.NPC; import net.citizensnpcs.nms.v1_12_R1.util.NMSImpl; import net.citizensnpcs.npc.CitizensNPC; import net.citizensnpcs.npc.ai.NPCHolder; import net.citizensnpcs.util.Util; import net.minecraft.server.v1_12_R1.EntityEnderDragon; import net.minecraft.server.v1_12_R1.NBTTagCompound; import net.minecraft.server.v1_12_R1.SoundEffect; import net.minecraft.server.v1_12_R1.World; public class EnderDragonController extends MobEntityController { public EnderDragonController() { super(EntityEnderDragonNPC.class); } @Override public EnderDragon getBukkitEntity() { return (EnderDragon) super.getBukkitEntity(); } public static class EnderDragonNPC extends CraftEnderDragon implements NPCHolder { private final CitizensNPC npc; public EnderDragonNPC(EntityEnderDragonNPC entity) { super((CraftServer) Bukkit.getServer(), entity); this.npc = entity.npc; } @Override public NPC getNPC() { return npc; } } public static class EntityEnderDragonNPC extends EntityEnderDragon implements NPCHolder { private final CitizensNPC npc; public EntityEnderDragonNPC(World world) { this(world, null); } public EntityEnderDragonNPC(World world, NPC npc) { super(world); this.npc = (CitizensNPC) npc; if (npc != null) { NMSImpl.clearGoals(goalSelector, targetSelector); } } @Override protected SoundEffect cd() { return NMSImpl.getSoundEffect(npc, super.cd(), NPC.DEATH_SOUND_METADATA); } @Override protected SoundEffect d(DamageSource damagesource) { return NMSImpl.getSoundEffect(npc, super.d(damagesource), NPC.HURT_SOUND_METADATA); } @Override public void collide(net.minecraft.server.v1_12_R1.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 enderTeleportTo(double d0, double d1, double d2) { if (npc == null) super.enderTeleportTo(d0, d1, d2); NPCEnderTeleportEvent event = new NPCEnderTeleportEvent(npc); Bukkit.getPluginManager().callEvent(event); if (!event.isCancelled()) { super.enderTeleportTo(d0, d1, d2); } } @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 protected SoundEffect F() { return NMSImpl.getSoundEffect(npc, super.F(), NPC.AMBIENT_SOUND_METADATA); } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(bukkitEntity instanceof NPCHolder)) { bukkitEntity = new EnderDragonNPC(this); } return super.getBukkitEntity(); } private float getCorrectYaw(double tX, double tZ) { if (locZ > tZ) return (float) (-Math.toDegrees(Math.atan((locX - tX) / (locZ - tZ)))); if (locZ < tZ) { return (float) (-Math.toDegrees(Math.atan((locX - tX) / (locZ - tZ)))) + 180.0F; } return yaw; } @Override public NPC getNPC() { return npc; } @Override public boolean isLeashed() { if (npc == null) return super.isLeashed(); boolean protectedDefault = npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true); if (!protectedDefault || !npc.data().get(NPC.LEASH_PROTECTED_METADATA, protectedDefault)) return super.isLeashed(); if (super.isLeashed()) { unleash(true, false); // clearLeash with client update } return false; // shouldLeash } @Override protected void L() { if (npc == null) { super.L(); } } @Override public void n() { if (npc != null) { npc.update(); if (motX != 0 || motY != 0 || motZ != 0) { motX *= 0.98; motY *= 0.98; motZ *= 0.98; yaw = getCorrectYaw(locX + motX, locZ + motZ); setPosition(locX + motX, locY + motY, locZ + motZ); } } else { super.n(); } } } }