Citizens2/main/src/main/java/net/citizensnpcs/nms/v1_10_R1/entity/EnderDragonController.java

180 lines
5.9 KiB
Java
Raw Normal View History

package net.citizensnpcs.nms.v1_10_R1.entity;
2012-02-03 10:20:48 +01:00
import org.bukkit.Bukkit;
2016-06-09 12:25:27 +02:00
import org.bukkit.craftbukkit.v1_10_R1.CraftServer;
import org.bukkit.craftbukkit.v1_10_R1.entity.CraftEnderDragon;
import org.bukkit.craftbukkit.v1_10_R1.entity.CraftEntity;
import org.bukkit.entity.EnderDragon;
import org.bukkit.util.Vector;
import net.citizensnpcs.api.event.NPCEnderTeleportEvent;
2012-07-28 09:02:57 +02:00
import net.citizensnpcs.api.event.NPCPushEvent;
import net.citizensnpcs.api.npc.NPC;
import net.citizensnpcs.nms.v1_10_R1.util.NMSImpl;
2012-04-19 05:52:07 +02:00
import net.citizensnpcs.npc.CitizensNPC;
2012-07-19 17:10:30 +02:00
import net.citizensnpcs.npc.ai.NPCHolder;
import net.citizensnpcs.util.Util;
2016-06-09 12:25:27 +02:00
import net.minecraft.server.v1_10_R1.EntityEnderDragon;
import net.minecraft.server.v1_10_R1.NBTTagCompound;
import net.minecraft.server.v1_10_R1.SoundEffect;
import net.minecraft.server.v1_10_R1.World;
2012-02-03 10:20:48 +01:00
public class EnderDragonController extends MobEntityController {
public EnderDragonController() {
super(EntityEnderDragonNPC.class);
2012-02-03 10:20:48 +01:00
}
@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;
}
}
2012-07-19 17:10:30 +02:00
public static class EntityEnderDragonNPC extends EntityEnderDragon implements NPCHolder {
2012-04-19 05:52:07 +02:00
private final CitizensNPC npc;
public EntityEnderDragonNPC(World world) {
this(world, null);
}
public EntityEnderDragonNPC(World world, NPC npc) {
super(world);
this.npc = (CitizensNPC) npc;
2012-07-19 17:10:30 +02:00
if (npc != null) {
NMSImpl.clearGoals(goalSelector, targetSelector);
2012-07-19 17:10:30 +02:00
}
}
2014-01-29 14:37:27 +01:00
@Override
2016-06-09 13:01:25 +02:00
protected SoundEffect bV() {
return NMSImpl.getSoundEffect(npc, super.bV(), NPC.DEATH_SOUND_METADATA);
2014-01-29 14:37:27 +01:00
}
@Override
2016-06-09 13:01:25 +02:00
protected SoundEffect bW() {
return NMSImpl.getSoundEffect(npc, super.bW(), NPC.HURT_SOUND_METADATA);
2014-01-29 14:37:27 +01:00
}
2013-07-09 16:01:00 +02:00
@Override
2016-06-09 12:25:27 +02:00
public void collide(net.minecraft.server.v1_10_R1.Entity entity) {
2013-12-01 10:24:54 +01:00
// 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);
}
}
2012-08-02 15:44:59 +02:00
@Override
public void g(double x, double y, double z) {
if (npc == null) {
super.g(x, y, z);
return;
}
2012-09-07 12:25:54 +02:00
if (NPCPushEvent.getHandlerList().getRegisteredListeners().length == 0) {
if (!npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true))
super.g(x, y, z);
2012-08-02 15:44:59 +02:00
return;
2012-09-07 12:25:54 +02:00
}
2012-08-04 07:39:04 +02:00
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());
}
2012-08-02 15:44:59 +02:00
// when another entity collides, this method is called to push the
// NPC so we prevent it from doing anything if the event is
// cancelled.
2012-02-04 15:31:16 +01:00
}
2012-03-27 16:42:15 +02:00
2016-03-01 04:12:13 +01:00
@Override
protected SoundEffect G() {
return NMSImpl.getSoundEffect(npc, super.G(), NPC.AMBIENT_SOUND_METADATA);
2016-03-01 04:12:13 +01:00
}
@Override
2013-01-19 13:42:03 +01:00
public CraftEntity getBukkitEntity() {
if (bukkitEntity == null && npc != null)
bukkitEntity = new EnderDragonNPC(this);
return super.getBukkitEntity();
}
2013-02-10 15:26:58 +01:00
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;
}
2012-03-27 16:42:15 +02:00
@Override
public NPC getNPC() {
return npc;
}
2014-01-21 05:25:14 +01:00
@Override
2016-03-01 04:12:13 +01:00
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() {
2015-03-22 09:30:30 +01:00
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 {
2016-03-01 04:12:13 +01:00
super.n();
2015-03-22 09:30:30 +01:00
}
2014-01-21 05:25:14 +01:00
}
}
2012-02-03 10:20:48 +01:00
}