Paper/nms-patches/EntityInsentient.patch

215 lines
9.2 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityInsentient.java
+++ b/net/minecraft/server/EntityInsentient.java
2019-06-21 12:00:00 +02:00
@@ -9,6 +9,18 @@
import java.util.UUID;
2016-05-10 13:47:39 +02:00
import javax.annotation.Nullable;
+// CraftBukkit start
+import org.bukkit.craftbukkit.event.CraftEventFactory;
+import org.bukkit.craftbukkit.entity.CraftLivingEntity;
+import org.bukkit.entity.LivingEntity;
2018-07-15 02:00:00 +02:00
+import org.bukkit.event.entity.EntityCombustByEntityEvent;
+import org.bukkit.event.entity.EntityPickupItemEvent;
+import org.bukkit.event.entity.EntityTargetLivingEntityEvent;
+import org.bukkit.event.entity.EntityTargetEvent;
+import org.bukkit.event.entity.EntityUnleashEvent;
+import org.bukkit.event.entity.EntityUnleashEvent.UnleashReason;
+// CraftBukkit end
+
public abstract class EntityInsentient extends EntityLiving {
2019-04-23 04:00:00 +02:00
private static final DataWatcherObject<Byte> b = DataWatcher.a(EntityInsentient.class, DataWatcherRegistry.a);
2019-06-21 12:00:00 +02:00
@@ -27,7 +39,7 @@
2019-04-23 04:00:00 +02:00
public final float[] dropChanceHand;
private final NonNullList<ItemStack> bB;
public final float[] dropChanceArmor;
- private boolean canPickUpLoot;
+ // private boolean canPickUpLoot; // CraftBukkit - moved up to EntityLiving
public boolean persistent;
2019-04-23 04:00:00 +02:00
private final Map<PathType, Float> bE;
2018-08-26 04:00:00 +02:00
public MinecraftKey lootTableKey;
2019-06-21 12:00:00 +02:00
@@ -63,6 +75,9 @@
2019-04-23 04:00:00 +02:00
this.initPathfinder();
}
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - default persistance to type's persistance value
2019-04-23 04:00:00 +02:00
+ this.persistent = !isTypeNotPersistent(0);
+ // CraftBukkit end
}
2019-04-23 04:00:00 +02:00
protected void initPathfinder() {}
2019-06-21 12:00:00 +02:00
@@ -130,7 +145,38 @@
2016-05-10 13:47:39 +02:00
}
public void setGoalTarget(@Nullable EntityLiving entityliving) {
+ // CraftBukkit start - fire event
+ setGoalTarget(entityliving, EntityTargetEvent.TargetReason.UNKNOWN, true);
+ }
2015-02-26 23:41:06 +01:00
+
+ public boolean setGoalTarget(EntityLiving entityliving, EntityTargetEvent.TargetReason reason, boolean fireEvent) {
+ if (getGoalTarget() == entityliving) return false;
+ if (fireEvent) {
+ if (reason == EntityTargetEvent.TargetReason.UNKNOWN && getGoalTarget() != null && entityliving == null) {
+ reason = getGoalTarget().isAlive() ? EntityTargetEvent.TargetReason.FORGOT_TARGET : EntityTargetEvent.TargetReason.TARGET_DIED;
+ }
+ if (reason == EntityTargetEvent.TargetReason.UNKNOWN) {
+ world.getServer().getLogger().log(java.util.logging.Level.WARNING, "Unknown target reason, please report on the issue tracker", new Exception());
+ }
+ CraftLivingEntity ctarget = null;
+ if (entityliving != null) {
+ ctarget = (CraftLivingEntity) entityliving.getBukkitEntity();
+ }
+ EntityTargetLivingEntityEvent event = new EntityTargetLivingEntityEvent(this.getBukkitEntity(), ctarget, reason);
+ world.getServer().getPluginManager().callEvent(event);
+ if (event.isCancelled()) {
+ return false;
+ }
2015-02-26 23:41:06 +01:00
+
+ if (event.getTarget() != null) {
+ entityliving = ((CraftLivingEntity) event.getTarget()).getHandle();
+ } else {
+ entityliving = null;
+ }
+ }
this.goalTarget = entityliving;
+ return true;
+ // CraftBukkit end
}
2019-04-23 04:00:00 +02:00
@Override
2019-06-21 12:00:00 +02:00
@@ -346,11 +392,20 @@
2019-04-23 04:00:00 +02:00
@Override
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
2016-02-29 22:32:46 +01:00
+
+ // CraftBukkit start - If looting or persistence is false only use it if it was set after we started using it
if (nbttagcompound.hasKeyOfType("CanPickUpLoot", 1)) {
2019-04-23 04:00:00 +02:00
- this.setCanPickupLoot(nbttagcompound.getBoolean("CanPickUpLoot"));
+ boolean data = nbttagcompound.getBoolean("CanPickUpLoot");
+ if (isLevelAtLeast(nbttagcompound, 1) || data) {
2019-04-23 04:00:00 +02:00
+ this.setCanPickupLoot(data);
+ }
}
- this.persistent = nbttagcompound.getBoolean("PersistenceRequired");
+ boolean data = nbttagcompound.getBoolean("PersistenceRequired");
+ if (isLevelAtLeast(nbttagcompound, 1) || data) {
+ this.persistent = data;
+ }
+ // CraftBukkit end
NBTTagList nbttaglist;
int i;
2019-06-21 12:00:00 +02:00
@@ -404,6 +459,11 @@
2019-04-23 04:00:00 +02:00
super.a(damagesource, flag);
this.lootTableKey = null;
2018-08-12 10:39:51 +02:00
}
+ // CraftBukkit - start
+ public MinecraftKey getLootTable() {
2018-08-26 04:00:00 +02:00
+ return getDefaultLootTable();
2018-08-12 10:39:51 +02:00
+ }
+ // CraftBukkit - end
2019-04-23 04:00:00 +02:00
@Override
protected LootTableInfo.Builder a(boolean flag, DamageSource damagesource) {
2019-06-21 12:00:00 +02:00
@@ -463,11 +523,17 @@
2018-07-15 02:00:00 +02:00
ItemStack itemstack1 = this.getEquipment(enumitemslot);
boolean flag = this.a(itemstack, itemstack1, enumitemslot);
2019-04-23 04:00:00 +02:00
- if (flag && this.g(itemstack)) {
+ // CraftBukkit start
2019-04-23 04:00:00 +02:00
+ boolean canPickup = flag && this.g(itemstack);
+ canPickup = !org.bukkit.craftbukkit.event.CraftEventFactory.callEntityPickupItemEvent(this, entityitem, 0, !canPickup).isCancelled();
+ if (canPickup) {
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
double d0 = (double) this.d(enumitemslot);
if (!itemstack1.isEmpty() && (double) (this.random.nextFloat() - 0.1F) < d0) {
+ this.forceDrops = true; // CraftBukkit
2019-04-23 04:00:00 +02:00
this.a(itemstack1);
+ this.forceDrops = false; // CraftBukkit
}
2017-05-14 04:00:00 +02:00
this.setSlot(enumitemslot, itemstack);
2019-06-21 12:00:00 +02:00
@@ -545,11 +611,11 @@
2019-04-23 04:00:00 +02:00
if (entityhuman != null) {
double d0 = entityhuman.h(this);
2019-04-23 04:00:00 +02:00
- if (d0 > 16384.0D && this.isTypeNotPersistent(d0)) {
+ if (d0 > 16384.0D) { // CraftBukkit - remove isTypeNotPersistent() check
this.die();
}
2019-04-23 04:00:00 +02:00
- if (this.ticksFarFromPlayer > 600 && this.random.nextInt(800) == 0 && d0 > 1024.0D && this.isTypeNotPersistent(d0)) {
+ if (this.ticksFarFromPlayer > 600 && this.random.nextInt(800) == 0 && d0 > 1024.0D) { // CraftBukkit - remove isTypeNotPersistent() check
this.die();
2019-04-23 04:00:00 +02:00
} else if (d0 < 1024.0D) {
2015-02-26 23:41:06 +01:00
this.ticksFarFromPlayer = 0;
2019-06-21 12:00:00 +02:00
@@ -945,12 +1011,24 @@
2019-04-23 04:00:00 +02:00
if (!this.isAlive()) {
return false;
} else if (this.getLeashHolder() == entityhuman) {
+ // CraftBukkit start - fire PlayerUnleashEntityEvent
+ if (CraftEventFactory.callPlayerUnleashEntityEvent(this, entityhuman).isCancelled()) {
2016-02-29 22:32:46 +01:00
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutAttachEntity(this, this.getLeashHolder()));
+ return false;
+ }
+ // CraftBukkit end
this.unleash(true, !entityhuman.abilities.canInstantlyBuild);
return true;
2016-11-17 02:41:03 +01:00
} else {
ItemStack itemstack = entityhuman.b(enumhand);
if (itemstack.getItem() == Items.LEAD && this.a(entityhuman)) {
+ // CraftBukkit start - fire PlayerLeashEntityEvent
+ if (CraftEventFactory.callPlayerLeashEntityEvent(this, entityhuman, entityhuman).isCancelled()) {
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutAttachEntity(this, this.getLeashHolder()));
+ return false;
+ }
+ // CraftBukkit end
this.setLeashHolder(entityhuman, true);
itemstack.subtract(1);
return true;
2019-06-21 12:00:00 +02:00
@@ -996,6 +1074,7 @@
2016-11-17 02:41:03 +01:00
2019-04-23 04:00:00 +02:00
if (this.leashHolder != null) {
if (!this.isAlive() || !this.leashHolder.isAlive()) {
+ this.world.getServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), (!this.isAlive()) ? UnleashReason.PLAYER_UNLEASH : UnleashReason.HOLDER_GONE)); // CraftBukkit
this.unleash(true, true);
}
2019-06-21 12:00:00 +02:00
@@ -1011,7 +1090,9 @@
2019-04-23 04:00:00 +02:00
this.leashHolder = null;
if (!this.world.isClientSide && flag1) {
+ this.forceDrops = true; // CraftBukkit
2018-07-15 02:00:00 +02:00
this.a((IMaterial) Items.LEAD);
+ this.forceDrops = false; // CraftBukkit
}
if (!this.world.isClientSide && flag && this.world instanceof WorldServer) {
2019-06-21 12:00:00 +02:00
@@ -1080,6 +1161,7 @@
2019-04-23 04:00:00 +02:00
this.setLeashHolder(EntityLeash.a(this.world, blockposition), true);
} else {
+ this.world.getServer().getPluginManager().callEvent(new EntityUnleashEvent(this.getBukkitEntity(), UnleashReason.UNKNOWN)); // CraftBukkit
this.unleash(false, true);
}
2019-04-23 04:00:00 +02:00
2019-06-21 12:00:00 +02:00
@@ -1187,7 +1269,14 @@
2019-04-23 04:00:00 +02:00
int i = EnchantmentManager.getFireAspectEnchantmentLevel(this);
if (i > 0) {
- entity.setOnFire(i * 4);
+ // CraftBukkit start - Call a combust event when somebody hits with a fire enchanted item
+ EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), i * 4);
+ org.bukkit.Bukkit.getPluginManager().callEvent(combustEvent);
2018-07-15 02:00:00 +02:00
+
2019-04-23 04:00:00 +02:00
+ if (!combustEvent.isCancelled()) {
+ entity.setOnFire(combustEvent.getDuration(), false);
+ }
+ // CraftBukkit end
}
2018-07-15 02:00:00 +02:00
2019-04-23 04:00:00 +02:00
boolean flag = entity.damageEntity(DamageSource.mobAttack(this), f);