Citizens2/v1_16_R3/src/main/java/net/citizensnpcs/nms/v1_16_R3/entity/TropicalFishController.java

247 lines
8.3 KiB
Java
Raw Normal View History

package net.citizensnpcs.nms.v1_16_R3.entity;
2020-06-25 11:24:32 +02:00
import org.bukkit.Bukkit;
import org.bukkit.craftbukkit.v1_16_R3.CraftServer;
import org.bukkit.craftbukkit.v1_16_R3.entity.CraftEntity;
import org.bukkit.craftbukkit.v1_16_R3.entity.CraftTropicalFish;
2020-06-25 11:24:32 +02:00
import org.bukkit.entity.TropicalFish;
import org.bukkit.util.Vector;
2023-02-22 17:06:13 +01:00
2020-06-25 11:24:32 +02:00
import net.citizensnpcs.api.npc.NPC;
import net.citizensnpcs.nms.v1_16_R3.util.ForwardingNPCHolder;
import net.citizensnpcs.nms.v1_16_R3.util.NMSBoundingBox;
import net.citizensnpcs.nms.v1_16_R3.util.NMSImpl;
import net.citizensnpcs.nms.v1_16_R3.util.EntityMoveControl;
2020-06-25 11:24:32 +02:00
import net.citizensnpcs.npc.CitizensNPC;
import net.citizensnpcs.npc.ai.NPCHolder;
import net.citizensnpcs.util.NMS;
2020-06-25 11:24:32 +02:00
import net.citizensnpcs.util.Util;
import net.minecraft.server.v1_16_R3.AxisAlignedBB;
import net.minecraft.server.v1_16_R3.BlockPosition;
import net.minecraft.server.v1_16_R3.ControllerMove;
import net.minecraft.server.v1_16_R3.DamageSource;
import net.minecraft.server.v1_16_R3.Entity;
import net.minecraft.server.v1_16_R3.EntityBoat;
import net.minecraft.server.v1_16_R3.EntityHuman;
import net.minecraft.server.v1_16_R3.EntityMinecartAbstract;
import net.minecraft.server.v1_16_R3.EntityTropicalFish;
import net.minecraft.server.v1_16_R3.EntityTypes;
import net.minecraft.server.v1_16_R3.EnumHand;
import net.minecraft.server.v1_16_R3.EnumInteractionResult;
import net.minecraft.server.v1_16_R3.FluidType;
import net.minecraft.server.v1_16_R3.IBlockData;
import net.minecraft.server.v1_16_R3.ItemStack;
import net.minecraft.server.v1_16_R3.Items;
import net.minecraft.server.v1_16_R3.NBTTagCompound;
import net.minecraft.server.v1_16_R3.SoundEffect;
import net.minecraft.server.v1_16_R3.Tag;
import net.minecraft.server.v1_16_R3.Vec3D;
import net.minecraft.server.v1_16_R3.World;
2020-06-25 11:24:32 +02:00
public class TropicalFishController extends MobEntityController {
public TropicalFishController() {
super(EntityTropicalFishNPC.class);
}
@Override
public TropicalFish getBukkitEntity() {
return (TropicalFish) super.getBukkitEntity();
}
public static class EntityTropicalFishNPC extends EntityTropicalFish implements NPCHolder {
private final CitizensNPC npc;
2020-06-25 11:24:32 +02:00
private ControllerMove oldMoveController;
public EntityTropicalFishNPC(EntityTypes<? extends EntityTropicalFish> types, World world) {
this(types, world, null);
}
public EntityTropicalFishNPC(EntityTypes<? extends EntityTropicalFish> types, World world, NPC npc) {
super(types, world);
this.npc = (CitizensNPC) npc;
if (npc != null) {
this.oldMoveController = this.moveController;
this.moveController = new ControllerMove(this);
}
}
@Override
public void a(AxisAlignedBB bb) {
super.a(NMSBoundingBox.makeBB(npc, bb));
}
2020-06-25 11:24:32 +02:00
@Override
protected void a(double d0, boolean flag, IBlockData block, BlockPosition blockposition) {
if (npc == null || !npc.isFlyable()) {
super.a(d0, flag, block, blockposition);
}
}
2022-11-13 16:33:18 +01:00
@Override
public void a(float strength, double dx, double dz) {
NMS.callKnockbackEvent(npc, strength, dx, dz, (evt) -> super.a((float) evt.getStrength(),
evt.getKnockbackVector().getX(), evt.getKnockbackVector().getZ()));
2022-11-13 16:33:18 +01:00
}
@Override
public boolean a(Tag<FluidType> tag, double d0) {
2023-02-13 17:19:45 +01:00
return NMSImpl.fluidPush(npc, this, () -> super.a(tag, d0));
2022-11-13 16:33:18 +01:00
}
@Override
public EnumInteractionResult b(EntityHuman entityhuman, EnumHand enumhand) {
if (npc == null || !npc.isProtected())
return super.b(entityhuman, enumhand);
ItemStack itemstack = entityhuman.b(enumhand);
if (itemstack.getItem() == Items.WATER_BUCKET && isAlive()) {
return EnumInteractionResult.FAIL;
}
return super.b(entityhuman, enumhand);
}
2020-06-25 11:24:32 +02:00
@Override
public boolean b(float f, float f1) {
if (npc == null || !npc.isFlyable()) {
return super.b(f, f1);
}
return false;
}
@Override
public int bP() {
return NMS.getFallDistance(npc, super.bP());
}
2020-06-25 11:24:32 +02:00
@Override
public void checkDespawn() {
if (npc == null) {
super.checkDespawn();
}
}
@Override
public void collide(net.minecraft.server.v1_16_R3.Entity entity) {
2020-06-25 11:24:32 +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());
}
@Override
public boolean d(NBTTagCompound save) {
return npc == null ? super.d(save) : false;
}
2020-06-25 11:24:32 +02:00
@Override
2020-08-12 16:21:12 +02:00
public void g(Vec3D vec3d) {
if (npc == null || !npc.isFlyable()) {
if (!NMSImpl.moveFish(npc, this, vec3d)) {
super.g(vec3d);
}
} else {
NMSImpl.flyingMoveLogic(this, vec3d);
}
}
2020-06-25 11:24:32 +02:00
@Override
public CraftEntity getBukkitEntity() {
if (npc != null && !(super.getBukkitEntity() instanceof NPCHolder)) {
NMSImpl.setBukkitEntity(this, new TropicalFishNPC(this));
}
return super.getBukkitEntity();
}
@Override
public NPC getNPC() {
return npc;
}
@Override
protected SoundEffect getSoundAmbient() {
return NMSImpl.getSoundEffect(npc, super.getSoundAmbient(), NPC.Metadata.AMBIENT_SOUND);
2020-06-25 11:24:32 +02:00
}
@Override
protected SoundEffect getSoundDeath() {
return NMSImpl.getSoundEffect(npc, super.getSoundDeath(), NPC.Metadata.DEATH_SOUND);
2020-06-25 11:24:32 +02:00
}
@Override
protected SoundEffect getSoundHurt(DamageSource damagesource) {
return NMSImpl.getSoundEffect(npc, super.getSoundHurt(damagesource), NPC.Metadata.HURT_SOUND);
2020-06-25 11:24:32 +02:00
}
@Override
2020-08-12 16:21:12 +02:00
public void i(double x, double y, double z) {
Vector vector = Util.callPushEvent(npc, x, y, z);
if (vector != null) {
2020-08-12 16:21:12 +02:00
super.i(vector.getX(), vector.getY(), vector.getZ());
2020-06-25 11:24:32 +02:00
}
}
@Override
public boolean isClimbing() {
if (npc == null || !npc.isFlyable()) {
return super.isClimbing();
} else {
return false;
}
}
@Override
public boolean isLeashed() {
2023-02-13 17:46:30 +01:00
return NMSImpl.isLeashed(npc, super::isLeashed, this);
2020-06-25 11:24:32 +02:00
}
@Override
public void mobTick() {
if (npc != null) {
if (!npc.useMinecraftAI()) {
NMSImpl.setNotInSchool(this);
}
NMSImpl.updateMinecraftAIState(npc, this);
if (npc.useMinecraftAI() && this.moveController != this.oldMoveController) {
this.moveController = this.oldMoveController;
}
if (!npc.useMinecraftAI() && this.moveController == this.oldMoveController) {
this.moveController = new EntityMoveControl(this);
2020-06-25 11:24:32 +02:00
}
}
super.mobTick();
if (npc != null) {
npc.update();
}
}
@Override
public void movementTick() {
boolean lastInWater = this.v;
if (npc != null) {
this.v = false;
}
super.movementTick();
if (npc != null) {
this.v = lastInWater;
}
}
@Override
protected boolean n(Entity entity) {
if (npc != null && (entity instanceof EntityBoat || entity instanceof EntityMinecartAbstract)) {
2022-12-10 06:29:05 +01:00
return !npc.isProtected();
2020-06-25 11:24:32 +02:00
}
return super.n(entity);
}
}
public static class TropicalFishNPC extends CraftTropicalFish implements ForwardingNPCHolder {
2020-06-25 11:24:32 +02:00
public TropicalFishNPC(EntityTropicalFishNPC entity) {
super((CraftServer) Bukkit.getServer(), entity);
}
}
}