package net.citizensnpcs.nms.v1_17_R1.entity; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_17_R1.CraftServer; import org.bukkit.craftbukkit.v1_17_R1.entity.CraftEntity; import org.bukkit.craftbukkit.v1_17_R1.entity.CraftHoglin; import org.bukkit.util.Vector; import net.citizensnpcs.api.event.NPCEnderTeleportEvent; import net.citizensnpcs.api.npc.NPC; import net.citizensnpcs.nms.v1_17_R1.util.ForwardingNPCHolder; import net.citizensnpcs.nms.v1_17_R1.util.NMSImpl; import net.citizensnpcs.npc.CitizensNPC; import net.citizensnpcs.npc.ai.NPCHolder; import net.citizensnpcs.util.Util; import net.minecraft.core.BlockPos; import net.minecraft.nbt.CompoundTag; import net.minecraft.sounds.SoundEvent; import net.minecraft.world.damagesource.DamageSource; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.monster.hoglin.Hoglin; import net.minecraft.world.entity.vehicle.AbstractMinecart; import net.minecraft.world.entity.vehicle.Boat; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.phys.Vec3; public class HoglinController extends MobEntityController { public HoglinController() { super(EntityHoglinNPC.class); } @Override public org.bukkit.entity.Hoglin getBukkitEntity() { return (org.bukkit.entity.Hoglin) super.getBukkitEntity(); } public static class EntityHoglinNPC extends Hoglin implements NPCHolder { private final CitizensNPC npc; public EntityHoglinNPC(EntityType types, Level level) { this(types, level, null); } public EntityHoglinNPC(EntityType types, Level level, NPC npc) { super(types, level); this.npc = (CitizensNPC) npc; if (npc != null) { NMSImpl.clearGoals(npc, goalSelector, targetSelector); } } @Override protected boolean canRide(Entity entity) { if (npc != null && (entity instanceof Boat || entity instanceof AbstractMinecart)) { return !npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true); } return super.canRide(entity); } @Override public boolean causeFallDamage(float f, float f1, DamageSource damagesource) { if (npc == null || !npc.isFlyable()) { return super.causeFallDamage(f, f1, damagesource); } return false; } @Override public void checkDespawn() { if (npc == null) { super.checkDespawn(); } } @Override protected void checkFallDamage(double d0, boolean flag, BlockState iblockdata, BlockPos blockposition) { if (npc == null || !npc.isFlyable()) { super.checkFallDamage(d0, flag, iblockdata, blockposition); } } @Override public void customServerAiStep() { if (npc != null) { NMSImpl.updateMinecraftAIState(npc, this); setImmuneToZombification(true); } super.customServerAiStep(); if (npc != null) { npc.update(); } } @Override public void dismountTo(double d0, double d1, double d2) { if (npc == null) { super.dismountTo(d0, d1, d2); return; } NPCEnderTeleportEvent event = new NPCEnderTeleportEvent(npc); Bukkit.getPluginManager().callEvent(event); if (!event.isCancelled()) { super.dismountTo(d0, d1, d2); } } @Override protected SoundEvent getAmbientSound() { return NMSImpl.getSoundEffect(npc, super.getAmbientSound(), NPC.AMBIENT_SOUND_METADATA); } @Override public CraftEntity getBukkitEntity() { if (npc != null && !(super.getBukkitEntity() instanceof NPCHolder)) { NMSImpl.setBukkitEntity(this, new HoglinNPC(this)); } return super.getBukkitEntity(); } @Override protected SoundEvent getDeathSound() { return NMSImpl.getSoundEffect(npc, super.getDeathSound(), NPC.DEATH_SOUND_METADATA); } @Override protected SoundEvent getHurtSound(DamageSource damagesource) { return NMSImpl.getSoundEffect(npc, super.getHurtSound(damagesource), NPC.HURT_SOUND_METADATA); } @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()) { dropLeash(true, false); // clearLeash with client update } return false; // shouldLeash } @Override public boolean onClimbable() { if (npc == null || !npc.isFlyable()) { return super.onClimbable(); } else { return false; } } @Override public void push(double x, double y, double z) { Vector vector = Util.callPushEvent(npc, x, y, z); if (vector != null) { super.push(vector.getX(), vector.getY(), vector.getZ()); } } @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 void travel(Vec3 vec3d) { if (npc == null || !npc.isFlyable()) { super.travel(vec3d); } else { NMSImpl.flyingMoveLogic(this, vec3d); } } } public static class HoglinNPC extends CraftHoglin implements ForwardingNPCHolder { public HoglinNPC(EntityHoglinNPC entity) { super((CraftServer) Bukkit.getServer(), entity); } } }