Citizens2/src/main/java/net/citizensnpcs/npc/entity/CitizensEnderDragonNPC.java

85 lines
2.6 KiB
Java
Raw Normal View History

2012-02-03 10:20:48 +01:00
package net.citizensnpcs.npc.entity;
2012-07-28 09:02:57 +02:00
import net.citizensnpcs.api.event.NPCPushEvent;
import net.citizensnpcs.api.npc.NPC;
2012-02-04 09:13:20 +01:00
import net.citizensnpcs.npc.CitizensMobNPC;
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;
2012-08-03 15:18:10 +02:00
import net.citizensnpcs.util.NMSReflection;
import net.citizensnpcs.util.Util;
import net.minecraft.server.EntityEnderDragon;
import net.minecraft.server.World;
2012-02-03 10:20:48 +01:00
import org.bukkit.entity.EnderDragon;
import org.bukkit.util.Vector;
public class CitizensEnderDragonNPC extends CitizensMobNPC {
2012-02-03 10:20:48 +01:00
public CitizensEnderDragonNPC(int id, String name) {
super(id, name, EntityEnderDragonNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public EnderDragon getBukkitEntity() {
return (EnderDragon) getHandle().getBukkitEntity();
}
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, NPC npc) {
super(world);
this.npc = (CitizensNPC) npc;
2012-07-19 17:10:30 +02:00
if (npc != null) {
2012-08-03 15:18:10 +02:00
NMSReflection.clearGoals(goalSelector, targetSelector);
2012-07-19 17:10:30 +02:00
}
}
@Override
2012-08-02 15:44:59 +02:00
public void be() {
if (npc == null)
super.be();
2012-07-28 09:02:57 +02:00
}
@Override
public void collide(net.minecraft.server.Entity entity) {
// this method is called by both the entities involved - cancelling
// it will not stop the NPC from moving.
super.collide(entity);
Util.callCollisionEvent(npc, entity);
}
@Override
2012-08-02 15:44:59 +02:00
public void d() {
2012-07-19 17:10:30 +02:00
if (npc != null)
npc.update();
else
2012-08-02 15:44:59 +02:00
super.d();
}
@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)
return;
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
@Override
public NPC getNPC() {
return npc;
}
}
2012-02-03 10:20:48 +01:00
}