package net.citizensnpcs.nms.v1_8_R3.entity; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_8_R3.CraftServer; import org.bukkit.craftbukkit.v1_8_R3.entity.CraftEntity; import org.bukkit.craftbukkit.v1_8_R3.entity.CraftSnowman; import org.bukkit.entity.Snowman; 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_8_R3.util.NMSImpl; import net.citizensnpcs.npc.CitizensNPC; import net.citizensnpcs.npc.ai.NPCHolder; import net.citizensnpcs.util.Util; import net.minecraft.server.v1_8_R3.Block; import net.minecraft.server.v1_8_R3.BlockPosition; import net.minecraft.server.v1_8_R3.EntitySnowman; import net.minecraft.server.v1_8_R3.NBTTagCompound; import net.minecraft.server.v1_8_R3.World; public class SnowmanController extends MobEntityController { public SnowmanController() { super(EntitySnowmanNPC.class); } @Override public Snowman getBukkitEntity() { return (Snowman) super.getBukkitEntity(); } public static class EntitySnowmanNPC extends EntitySnowman implements NPCHolder { private final CitizensNPC npc; public EntitySnowmanNPC(World world) { this(world, null); } public EntitySnowmanNPC(World world, NPC npc) { super(world); this.npc = (CitizensNPC) npc; if (npc != null) { NMSImpl.clearGoals(goalSelector, targetSelector); } } @Override protected void a(double d0, boolean flag, Block block, BlockPosition blockposition) { if (npc == null || !npc.isFlyable()) { super.a(d0, flag, block, blockposition); } } @Override protected String bo() { return NMSImpl.getSoundEffect(npc, super.bo(), NPC.HURT_SOUND_METADATA); } @Override protected String bp() { return NMSImpl.getSoundEffect(npc, super.bp(), NPC.DEATH_SOUND_METADATA); } @Override public boolean cc() { if (npc == null) return super.cc(); boolean protectedDefault = npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true); if (!protectedDefault || !npc.data().get(NPC.LEASH_PROTECTED_METADATA, protectedDefault)) return super.cc(); if (super.cc()) { unleash(true, false); // clearLeash with client update } return false; // shouldLeash } @Override public void collide(net.minecraft.server.v1_8_R3.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 protected void D() { if (npc == null) { super.D(); } } @Override public void e(float f, float f1) { if (npc == null || !npc.isFlyable()) { super.e(f, f1); } } @Override public void E() { super.E(); if (npc != null) { npc.update(); } } @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 g(double x, double y, double z) { if (npc == null) { super.g(x, y, z); return; } if (NPCPushEvent.getHandlerList().getRegisteredListeners().length == 0) { if (!npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true)) super.g(x, y, z); return; } Vector vector = new Vector(x, y, z); NPCPushEvent event = Util.callPushEvent(npc, vector); if (!event.isCancelled()) { vector = event.getCollisionVector(); super.g(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 void g(float f, float f1) { if (npc == null || !npc.isFlyable()) { super.g(f, f1); } else { NMSImpl.flyingMoveLogic(this, f, f1); } } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(bukkitEntity instanceof NPCHolder)) bukkitEntity = new SnowmanNPC(this); return super.getBukkitEntity(); } @Override public NPC getNPC() { return npc; } @Override public boolean k_() { if (npc == null || !npc.isFlyable()) { return super.k_(); } else { return false; } } @Override public void m() { boolean allowsGriefing = this.world.getGameRules().getBoolean("mobGriefing"); if (npc != null) { this.world.getGameRules().set("mobGriefing", "false"); } super.m(); if (npc != null) { this.world.getGameRules().set("mobGriefing", Boolean.toString(allowsGriefing)); } } @Override public void setSize(float f, float f1) { if (npc == null) { super.setSize(f, f1); } else { NMSImpl.setSize(this, f, f1, justCreated); } } @Override protected String z() { return NMSImpl.getSoundEffect(npc, super.z(), NPC.AMBIENT_SOUND_METADATA); } } public static class SnowmanNPC extends CraftSnowman implements NPCHolder { private final CitizensNPC npc; public SnowmanNPC(EntitySnowmanNPC entity) { super((CraftServer) Bukkit.getServer(), entity); this.npc = entity.npc; } @Override public NPC getNPC() { return npc; } } }