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

184 lines
5.5 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-04-19 05:52:07 +02:00
import net.citizensnpcs.npc.CitizensNPC;
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;
import net.citizensnpcs.util.Util;
2014-07-11 04:52:40 +02:00
import net.minecraft.server.v1_7_R4.EntitySkeleton;
import net.minecraft.server.v1_7_R4.NBTTagCompound;
2014-07-11 04:52:40 +02:00
import net.minecraft.server.v1_7_R4.World;
2012-02-03 10:20:48 +01:00
import org.bukkit.Bukkit;
2014-07-11 04:52:40 +02:00
import org.bukkit.craftbukkit.v1_7_R4.CraftServer;
import org.bukkit.craftbukkit.v1_7_R4.entity.CraftEntity;
import org.bukkit.craftbukkit.v1_7_R4.entity.CraftSkeleton;
import org.bukkit.entity.Skeleton;
import org.bukkit.util.Vector;
public class SkeletonController extends MobEntityController {
public SkeletonController() {
super(EntitySkeletonNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public Skeleton getBukkitEntity() {
return (Skeleton) super.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;
public EntitySkeletonNPC(World world) {
this(world, null);
}
public EntitySkeletonNPC(World world, NPC npc) {
super(world);
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-07-19 17:10:30 +02:00
}
}
@Override
protected void a(double d0, boolean flag) {
if (npc == null || !npc.isFlyable()) {
super.a(d0, flag);
}
}
2014-01-29 14:37:27 +01:00
@Override
2014-07-11 04:52:40 +02:00
protected String aT() {
return npc == null ? super.aT() : npc.data().get(NPC.HURT_SOUND_METADATA, super.aT());
2014-01-29 14:37:27 +01:00
}
@Override
2014-07-11 04:52:40 +02:00
protected String aU() {
return npc == null ? super.aU() : npc.data().get(NPC.DEATH_SOUND_METADATA, super.aU());
2014-01-29 14:37:27 +01:00
}
@Override
protected void b(float f) {
if (npc == null || !npc.isFlyable()) {
super.b(f);
}
2012-07-28 09:02:57 +02:00
}
2014-04-04 08:50:07 +02:00
@Override
2014-07-11 04:52:40 +02:00
public void bn() {
super.bn();
2014-04-04 08:50:07 +02:00
if (npc != null) {
npc.update();
}
}
2013-07-09 16:01:00 +02:00
@Override
2014-03-23 10:34:02 +01:00
public boolean bN() {
2013-07-09 16:01:00 +02:00
if (npc == null)
2014-03-23 10:34:02 +01:00
return super.bN();
2013-07-09 16:01:00 +02:00
boolean protectedDefault = npc.data().get(NPC.DEFAULT_PROTECTED_METADATA, true);
if (!protectedDefault || !npc.data().get(NPC.LEASH_PROTECTED_METADATA, protectedDefault))
2014-03-23 10:34:02 +01:00
return super.bN();
if (super.bN()) {
2013-09-20 18:01:39 +02:00
unleash(true, false); // clearLeash with client update
}
2013-07-09 16:01:00 +02:00
return false; // shouldLeash
}
2012-07-28 09:02:57 +02:00
@Override
2014-07-11 04:52:40 +02:00
public void collide(net.minecraft.server.v1_7_R4.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)
Util.callCollisionEvent(npc, entity.getBukkitEntity());
}
@Override
public boolean d(NBTTagCompound save) {
return npc == null ? super.d(save) : false;
}
@Override
public void e(float f, float f1) {
if (npc == null || !npc.isFlyable()) {
super.e(f, f1);
} else {
NMS.flyingMoveLogic(this, f, f1);
}
}
@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-19 17:10:30 +02:00
@Override
2013-01-19 13:42:03 +01:00
public CraftEntity getBukkitEntity() {
if (bukkitEntity == null && npc != null)
bukkitEntity = new SkeletonNPC(this);
return super.getBukkitEntity();
}
@Override
public NPC getNPC() {
return npc;
}
2014-01-21 05:25:14 +01:00
@Override
public boolean h_() {
if (npc == null || !npc.isFlyable()) {
return super.h_();
} else {
return false;
}
}
@Override
2014-02-20 04:57:24 +01:00
protected String t() {
return npc == null || !npc.data().has(NPC.AMBIENT_SOUND_METADATA) ? super.t() : npc.data().get(
NPC.AMBIENT_SOUND_METADATA, super.t());
2014-01-21 05:25:14 +01:00
}
2014-01-29 14:37:27 +01:00
@Override
2014-02-20 04:57:24 +01:00
protected void w() {
if (npc == null) {
super.w();
}
2014-01-29 14:37:27 +01:00
}
}
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-03 10:20:48 +01:00
}