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;
|
2012-03-12 11:45:36 +01:00
|
|
|
import net.citizensnpcs.api.npc.NPC;
|
2012-04-19 05:52:07 +02:00
|
|
|
import net.citizensnpcs.npc.CitizensNPC;
|
2012-12-14 15:07:25 +01:00
|
|
|
import net.citizensnpcs.npc.MobEntityController;
|
2012-07-19 17:10:30 +02:00
|
|
|
import net.citizensnpcs.npc.ai.NPCHolder;
|
2012-09-01 12:05:22 +02:00
|
|
|
import net.citizensnpcs.util.NMS;
|
2012-07-27 18:01:52 +02:00
|
|
|
import net.citizensnpcs.util.Util;
|
2012-12-06 16:59:17 +01:00
|
|
|
import net.minecraft.server.v1_4_5.EntitySkeleton;
|
|
|
|
import net.minecraft.server.v1_4_5.World;
|
2012-02-03 10:20:48 +01:00
|
|
|
|
2012-10-12 06:16:44 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2012-12-06 16:59:17 +01:00
|
|
|
import org.bukkit.craftbukkit.v1_4_5.CraftServer;
|
|
|
|
import org.bukkit.craftbukkit.v1_4_5.entity.CraftSkeleton;
|
2012-10-12 06:16:44 +02:00
|
|
|
import org.bukkit.entity.Entity;
|
2012-02-04 07:48:23 +01:00
|
|
|
import org.bukkit.entity.Skeleton;
|
2012-07-27 18:01:52 +02:00
|
|
|
import org.bukkit.util.Vector;
|
2012-02-04 07:48:23 +01:00
|
|
|
|
2012-12-08 13:08:58 +01:00
|
|
|
public class SkeletonController extends MobEntityController {
|
|
|
|
public SkeletonController() {
|
|
|
|
super(EntitySkeletonNPC.class);
|
2012-02-03 10:20:48 +01:00
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Skeleton getBukkitEntity() {
|
2012-08-12 08:39:44 +02:00
|
|
|
return (Skeleton) super.getBukkitEntity();
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
|
|
|
|
2012-07-19 17:10:30 +02:00
|
|
|
public static class EntitySkeletonNPC extends EntitySkeleton implements NPCHolder {
|
2012-04-19 05:52:07 +02:00
|
|
|
private final CitizensNPC npc;
|
2012-03-12 11:45:36 +01:00
|
|
|
|
2012-05-03 23:38:23 +02:00
|
|
|
public EntitySkeletonNPC(World world) {
|
|
|
|
this(world, null);
|
|
|
|
}
|
|
|
|
|
2012-04-20 16:45:09 +02:00
|
|
|
public EntitySkeletonNPC(World world, NPC npc) {
|
2012-02-04 07:48:23 +01:00
|
|
|
super(world);
|
2012-04-20 16:45:09 +02:00
|
|
|
this.npc = (CitizensNPC) npc;
|
2012-07-19 17:10:30 +02:00
|
|
|
if (npc != null) {
|
2012-09-01 12:05:22 +02:00
|
|
|
NMS.clearGoals(goalSelector, targetSelector);
|
2012-12-06 16:59:17 +01:00
|
|
|
|
2012-07-19 17:10:30 +02:00
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
|
|
|
|
2012-09-01 12:05:22 +02:00
|
|
|
@Override
|
2012-11-16 08:47:51 +01:00
|
|
|
public void bl() {
|
|
|
|
super.bl();
|
2012-08-02 15:44:59 +02:00
|
|
|
if (npc != null)
|
|
|
|
npc.update();
|
2012-07-28 09:02:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-12-06 16:59:17 +01:00
|
|
|
public void collide(net.minecraft.server.v1_4_5.Entity entity) {
|
2012-07-28 09:02:57 +02:00
|
|
|
// this method is called by both the entities involved - cancelling
|
|
|
|
// it will not stop the NPC from moving.
|
|
|
|
super.collide(entity);
|
2012-09-07 12:25:54 +02:00
|
|
|
if (npc != null)
|
2012-12-14 15:07:25 +01:00
|
|
|
Util.callCollisionEvent(npc, entity.getBukkitEntity());
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
2012-07-09 15:35:57 +02:00
|
|
|
|
|
|
|
@Override
|
2012-08-02 15:44:59 +02:00
|
|
|
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-07-09 15:35:57 +02:00
|
|
|
}
|
2012-07-19 17:10:30 +02:00
|
|
|
|
2012-10-12 06:16:44 +02:00
|
|
|
@Override
|
|
|
|
public Entity getBukkitEntity() {
|
|
|
|
if (bukkitEntity == null && npc != null)
|
|
|
|
bukkitEntity = new SkeletonNPC(this);
|
|
|
|
return super.getBukkitEntity();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public NPC getNPC() {
|
|
|
|
return npc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class SkeletonNPC extends CraftSkeleton implements NPCHolder {
|
|
|
|
private final CitizensNPC npc;
|
|
|
|
|
|
|
|
public SkeletonNPC(EntitySkeletonNPC entity) {
|
|
|
|
super((CraftServer) Bukkit.getServer(), entity);
|
|
|
|
this.npc = entity.npc;
|
|
|
|
}
|
|
|
|
|
2012-07-19 17:10:30 +02:00
|
|
|
@Override
|
2012-08-02 15:44:59 +02:00
|
|
|
public NPC getNPC() {
|
|
|
|
return npc;
|
2012-07-19 17:10:30 +02:00
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
2012-02-03 10:20:48 +01:00
|
|
|
}
|