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

209 lines
6.6 KiB
Java
Raw Normal View History

package net.citizensnpcs.nms.v1_10_R1.entity;
2012-02-03 10:20:48 +01:00
2015-10-21 09:05:43 +02: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.CraftMagmaCube;
2015-10-21 09:05:43 +02:00
import org.bukkit.entity.MagmaCube;
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;
import net.citizensnpcs.nms.v1_10_R1.util.PlayerControllerMove;
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;
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.EntityMagmaCube;
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 MagmaCubeController extends MobEntityController {
public MagmaCubeController() {
super(EntityMagmaCubeNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public MagmaCube getBukkitEntity() {
return (MagmaCube) super.getBukkitEntity();
}
2012-07-19 17:10:30 +02:00
public static class EntityMagmaCubeNPC extends EntityMagmaCube implements NPCHolder {
2012-04-19 05:52:07 +02:00
private final CitizensNPC npc;
public EntityMagmaCubeNPC(World world) {
this(world, null);
}
public EntityMagmaCubeNPC(World world, NPC npc) {
super(world);
this.npc = (CitizensNPC) npc;
2012-07-19 17:10:30 +02:00
if (npc != null) {
setSize(3);
NMSImpl.clearGoals(goalSelector, targetSelector);
2015-10-31 17:51:37 +01:00
this.moveController = new PlayerControllerMove(this);
2012-07-19 17:10:30 +02:00
}
}
@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);
}
}
2014-01-29 14:37:27 +01: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);
2013-07-09 16:01:00 +02:00
}
2012-08-02 15:44:59 +02:00
@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);
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);
}
}
@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
// NPC so we prevent it from doing anything if the event is
// cancelled.
}
2012-03-27 16:42:15 +02:00
2014-11-28 16:22:11 +01:00
@Override
public void g(float f, float f1) {
if (npc == null || !npc.isFlyable()) {
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 MagmaCubeNPC(this);
return super.getBukkitEntity();
}
@Override
public NPC getNPC() {
return npc;
}
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();
if (npc != null) {
2016-03-01 04:12:13 +01:00
npc.update();
}
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
public void setSize(float f, float f1) {
if (npc == null) {
super.setSize(f, f1);
} else {
NMSImpl.setSize(this, f, f1, justCreated);
}
}
}
public static class MagmaCubeNPC extends CraftMagmaCube implements NPCHolder {
private final CitizensNPC npc;
public MagmaCubeNPC(EntityMagmaCubeNPC entity) {
super((CraftServer) Bukkit.getServer(), entity);
this.npc = entity.npc;
}
2012-03-27 16:42:15 +02:00
@Override
public NPC getNPC() {
return npc;
}
}
2012-02-03 10:20:48 +01:00
}