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

226 lines
7.0 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.CraftEntity;
import org.bukkit.craftbukkit.v1_10_R1.entity.CraftPig;
import org.bukkit.entity.Pig;
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;
2016-12-11 10:12:29 +01:00
import net.citizensnpcs.trait.Controllable;
import net.citizensnpcs.util.Util;
2016-06-09 12:25:27 +02:00
import net.minecraft.server.v1_10_R1.BlockPosition;
import net.minecraft.server.v1_10_R1.EntityLightning;
import net.minecraft.server.v1_10_R1.EntityPig;
import net.minecraft.server.v1_10_R1.IBlockData;
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 PigController extends MobEntityController {
public PigController() {
super(EntityPigNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public Pig getBukkitEntity() {
return (Pig) super.getBukkitEntity();
}
public static class EntityPigNPC extends EntityPig implements NPCHolder {
2012-04-19 05:52:07 +02:00
private final CitizensNPC npc;
public EntityPigNPC(World world) {
this(world, null);
}
public EntityPigNPC(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
}
}
@Override
public void a(boolean flag) {
float oldw = width;
float oldl = length;
super.a(flag);
if (oldw != width || oldl != length) {
this.setPosition(locX - 0.01, locY, locZ - 0.01);
this.setPosition(locX + 0.01, locY, locZ + 0.01);
}
}
@Override
2016-03-01 04:12:13 +01:00
protected void a(double d0, boolean flag, IBlockData block, BlockPosition blockposition) {
if (npc == null || !npc.isFlyable()) {
2014-11-28 16:22:11 +01:00
super.a(d0, flag, block, blockposition);
}
}
2012-03-27 16:42:15 +02: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);
}
@Override
2016-06-09 12:25:27 +02:00
public void collide(net.minecraft.server.v1_10_R1.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);
if (npc != null) {
Util.callCollisionEvent(npc, entity.getBukkitEntity());
}
}
2016-12-11 10:12:29 +01:00
@Override
public boolean cP() {
if (npc == null) {
return super.cP();
}
return npc.hasTrait(Controllable.class) && npc.getTrait(Controllable.class).isEnabled();
}
@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);
}
}
@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);
}
}
@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
2012-08-04 07:39:04 +02:00
// NPC so we prevent it from doing anything if the event is
// cancelled.
}
2012-07-19 17:10:30 +02:00
2014-11-28 16:22:11 +01:00
@Override
public void g(float f, float f1) {
if (npc == null || !npc.isFlyable()) {
2014-11-28 16:22:11 +01:00
super.g(f, f1);
} else {
NMSImpl.flyingMoveLogic(this, f, f1);
2014-11-28 16:22:11 +01: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() {
2016-12-03 19:00:36 +01:00
if (npc != null && !(bukkitEntity instanceof NPCHolder))
bukkitEntity = new PigNPC(this);
return super.getBukkitEntity();
}
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
}
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 M() {
super.M();
2016-03-01 11:00:33 +01:00
if (npc != null) {
2016-03-01 04:12:13 +01:00
npc.update();
2016-03-01 11:00:33 +01:00
}
2016-03-01 04:12:13 +01:00
}
@Override
2016-06-09 12:25:27 +02:00
public boolean m_() {
2014-01-21 05:25:14 +01:00
if (npc == null || !npc.isFlyable()) {
2016-06-09 12:25:27 +02:00
return super.m_();
2014-01-21 05:25:14 +01:00
} else {
return false;
}
}
@Override
2014-11-28 16:22:11 +01:00
public void onLightningStrike(EntityLightning entitylightning) {
if (npc == null) {
super.onLightningStrike(entitylightning);
}
2014-01-21 05:25:14 +01:00
}
}
public static class PigNPC extends CraftPig implements NPCHolder {
private final CitizensNPC npc;
public PigNPC(EntityPigNPC entity) {
super((CraftServer) Bukkit.getServer(), entity);
this.npc = entity.npc;
}
@Override
public NPC getNPC() {
return npc;
}
}
2012-02-03 10:20:48 +01:00
}