2012-02-03 10:20:48 +01:00
|
|
|
package net.citizensnpcs.npc.entity;
|
|
|
|
|
2012-03-12 11:45:36 +01:00
|
|
|
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-02-04 07:48:23 +01:00
|
|
|
import net.minecraft.server.EntitySkeleton;
|
2012-03-02 10:59:02 +01:00
|
|
|
import net.minecraft.server.PathfinderGoalSelector;
|
2012-02-04 07:48:23 +01:00
|
|
|
import net.minecraft.server.World;
|
2012-02-03 10:20:48 +01:00
|
|
|
|
2012-02-04 07:48:23 +01:00
|
|
|
import org.bukkit.entity.Skeleton;
|
|
|
|
|
|
|
|
public class CitizensSkeletonNPC extends CitizensMobNPC {
|
2012-02-03 10:20:48 +01:00
|
|
|
|
2012-05-13 13:41:21 +02:00
|
|
|
public CitizensSkeletonNPC(int id, String name) {
|
|
|
|
super(id, name, EntitySkeletonNPC.class);
|
2012-02-03 10:20:48 +01:00
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public Skeleton getBukkitEntity() {
|
|
|
|
return (Skeleton) getHandle().getBukkitEntity();
|
|
|
|
}
|
|
|
|
|
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-07-24 08:47:10 +02:00
|
|
|
private boolean pushable = false;
|
|
|
|
|
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) {
|
|
|
|
goalSelector = new PathfinderGoalSelector();
|
|
|
|
targetSelector = new PathfinderGoalSelector();
|
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-07-19 17:10:30 +02:00
|
|
|
public void b_(double x, double y, double z) {
|
2012-07-24 08:47:10 +02:00
|
|
|
if (npc == null || pushable)
|
|
|
|
super.b_(x, y, z);
|
2012-07-19 17:10:30 +02:00
|
|
|
// when another entity collides, b_ is called to push the NPC
|
|
|
|
// so we prevent b_ from doing anything.
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
2012-07-09 15:35:57 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public NPC getNPC() {
|
|
|
|
return npc;
|
|
|
|
}
|
2012-07-19 17:10:30 +02:00
|
|
|
|
2012-07-24 08:47:10 +02:00
|
|
|
@Override
|
|
|
|
public boolean isPushable() {
|
|
|
|
return pushable;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setPushable(boolean pushable) {
|
|
|
|
this.pushable = pushable;
|
|
|
|
}
|
|
|
|
|
2012-07-19 17:10:30 +02:00
|
|
|
@Override
|
|
|
|
public void z_() {
|
|
|
|
super.z_();
|
|
|
|
if (npc != null)
|
|
|
|
npc.update();
|
|
|
|
}
|
2012-02-04 07:48:23 +01:00
|
|
|
}
|
2012-02-03 10:20:48 +01:00
|
|
|
}
|