SPIGOT-336, SPIGOT-3366, SPIGOT-5768, SPIGOT-6409, SPIGOT-6861, #1008: Add EntityRemoveEvent

By: DerFrZocker <derrieple@gmail.com>
This commit is contained in:
CraftBukkit/Spigot
2024-02-21 20:55:34 +11:00
parent 6dc11b5d28
commit 64cd2b148a
81 changed files with 2037 additions and 475 deletions

View File

@@ -1,6 +1,6 @@
--- a/net/minecraft/world/entity/EntityInsentient.java
+++ b/net/minecraft/world/entity/EntityInsentient.java
@@ -76,6 +76,19 @@
@@ -76,6 +76,20 @@
import net.minecraft.world.level.pathfinder.PathType;
import net.minecraft.world.phys.AxisAlignedBB;
@@ -10,6 +10,7 @@
+import org.bukkit.craftbukkit.entity.CraftLivingEntity;
+import org.bukkit.event.entity.CreatureSpawnEvent;
+import org.bukkit.event.entity.EntityCombustByEntityEvent;
+import org.bukkit.event.entity.EntityRemoveEvent;
+import org.bukkit.event.entity.EntityTargetLivingEntityEvent;
+import org.bukkit.event.entity.EntityTargetEvent;
+import org.bukkit.event.entity.EntityTransformEvent;
@@ -20,7 +21,7 @@
public abstract class EntityInsentient extends EntityLiving implements Targeting {
private static final DataWatcherObject<Byte> DATA_MOB_FLAGS_ID = DataWatcher.defineId(EntityInsentient.class, DataWatcherRegistry.BYTE);
@@ -123,6 +136,8 @@
@@ -123,6 +137,8 @@
private BlockPosition restrictCenter;
private float restrictRadius;
@@ -29,7 +30,7 @@
protected EntityInsentient(EntityTypes<? extends EntityInsentient> entitytypes, World world) {
super(entitytypes, world);
this.handItems = NonNullList.withSize(2, ItemStack.EMPTY);
@@ -148,6 +163,12 @@
@@ -148,6 +164,12 @@
}
@@ -42,7 +43,7 @@
protected void registerGoals() {}
public static AttributeProvider.Builder createMobAttributes() {
@@ -259,7 +280,38 @@
@@ -259,7 +281,38 @@
}
public void setTarget(@Nullable EntityLiving entityliving) {
@@ -81,7 +82,7 @@
}
@Override
@@ -399,6 +451,12 @@
@@ -399,6 +452,12 @@
return null;
}
@@ -94,7 +95,7 @@
@Override
public void addAdditionalSaveData(NBTTagCompound nbttagcompound) {
super.addAdditionalSaveData(nbttagcompound);
@@ -457,7 +515,7 @@
@@ -457,7 +516,7 @@
}
nbttagcompound.put("HandDropChances", nbttaglist3);
@@ -103,7 +104,7 @@
nbttagcompound2 = new NBTTagCompound();
if (this.leashHolder instanceof EntityLiving) {
UUID uuid = this.leashHolder.getUUID();
@@ -488,16 +546,26 @@
@@ -488,16 +547,26 @@
nbttagcompound.putBoolean("NoAI", this.isNoAi());
}
@@ -132,7 +133,7 @@
NBTTagList nbttaglist;
int i;
@@ -544,6 +612,11 @@
@@ -544,6 +613,11 @@
}
this.setNoAi(nbttagcompound.getBoolean("NoAI"));
@@ -144,7 +145,7 @@
}
@Override
@@ -611,7 +684,7 @@
@@ -611,20 +685,26 @@
protected void pickUpItem(EntityItem entityitem) {
ItemStack itemstack = entityitem.getItem();
@@ -153,7 +154,14 @@
if (!itemstack1.isEmpty()) {
this.onItemPickup(entityitem);
@@ -625,6 +698,12 @@
this.take(entityitem, itemstack1.getCount());
itemstack.shrink(itemstack1.getCount());
if (itemstack.isEmpty()) {
- entityitem.discard();
+ entityitem.discard(EntityRemoveEvent.Cause.PICKUP); // CraftBukkit - add Bukkit remove cause
}
}
}
public ItemStack equipItemIfPossible(ItemStack itemstack) {
@@ -166,7 +174,7 @@
EnumItemSlot enumitemslot = getEquipmentSlotForItem(itemstack);
ItemStack itemstack1 = this.getItemBySlot(enumitemslot);
boolean flag = this.canReplaceCurrentItem(itemstack, itemstack1);
@@ -635,11 +714,19 @@
@@ -635,11 +715,19 @@
flag = itemstack1.isEmpty();
}
@@ -187,7 +195,33 @@
}
if (enumitemslot.isArmor() && itemstack.getCount() > 1) {
@@ -791,6 +878,7 @@
@@ -760,7 +848,7 @@
@Override
public void checkDespawn() {
if (this.level().getDifficulty() == EnumDifficulty.PEACEFUL && this.shouldDespawnInPeaceful()) {
- this.discard();
+ this.discard(EntityRemoveEvent.Cause.DESPAWN); // CraftBukkit - add Bukkit remove cause
} else if (!this.isPersistenceRequired() && !this.requiresCustomPersistence()) {
EntityHuman entityhuman = this.level().getNearestPlayer(this, -1.0D);
@@ -770,14 +858,14 @@
int j = i * i;
if (d0 > (double) j && this.removeWhenFarAway(d0)) {
- this.discard();
+ this.discard(EntityRemoveEvent.Cause.DESPAWN); // CraftBukkit - add Bukkit remove cause
}
int k = this.getType().getCategory().getNoDespawnDistance();
int l = k * k;
if (this.noActionTime > 600 && this.random.nextInt(800) == 0 && d0 > (double) l && this.removeWhenFarAway(d0)) {
- this.discard();
+ this.discard(EntityRemoveEvent.Cause.DESPAWN); // CraftBukkit - add Bukkit remove cause
} else if (d0 < (double) l) {
this.noActionTime = 0;
}
@@ -791,6 +879,7 @@
@Override
protected final void serverAiStep() {
++this.noActionTime;
@@ -195,7 +229,7 @@
this.level().getProfiler().push("sensing");
this.sensing.tick();
this.level().getProfiler().pop();
@@ -1184,6 +1272,12 @@
@@ -1184,6 +1273,12 @@
if (!this.isAlive()) {
return EnumInteractionResult.PASS;
} else if (this.getLeashHolder() == entityhuman) {
@@ -208,7 +242,7 @@
this.dropLeash(true, !entityhuman.getAbilities().instabuild);
this.gameEvent(GameEvent.ENTITY_INTERACT, entityhuman);
return EnumInteractionResult.sidedSuccess(this.level().isClientSide);
@@ -1209,6 +1303,12 @@
@@ -1209,6 +1304,12 @@
ItemStack itemstack = entityhuman.getItemInHand(enumhand);
if (itemstack.is(Items.LEAD) && this.canBeLeashed(entityhuman)) {
@@ -221,7 +255,7 @@
this.setLeashedTo(entityhuman, true);
itemstack.shrink(1);
return EnumInteractionResult.sidedSuccess(this.level().isClientSide);
@@ -1224,7 +1324,7 @@
@@ -1224,7 +1325,7 @@
if (itemstack.getItem() instanceof ItemMonsterEgg) {
if (this.level() instanceof WorldServer) {
ItemMonsterEgg itemmonsteregg = (ItemMonsterEgg) itemstack.getItem();
@@ -230,7 +264,7 @@
optional.ifPresent((entityinsentient) -> {
this.onOffspringSpawnedFromEgg(entityhuman, entityinsentient);
@@ -1274,12 +1374,19 @@
@@ -1274,12 +1375,19 @@
return this.restrictRadius != -1.0F;
}
@@ -251,7 +285,7 @@
if (t0 == null) {
return null;
@@ -1313,7 +1420,12 @@
@@ -1313,7 +1421,12 @@
}
}
@@ -265,7 +299,16 @@
if (this.isPassenger()) {
Entity entity = this.getVehicle();
@@ -1334,7 +1446,8 @@
@@ -1321,7 +1434,7 @@
t0.startRiding(entity, true);
}
- this.discard();
+ this.discard(EntityRemoveEvent.Cause.TRANSFORMATION); // CraftBukkit - add Bukkit remove cause
return t0;
}
}
@@ -1334,7 +1447,8 @@
if (this.leashHolder != null) {
if (!this.isAlive() || !this.leashHolder.isAlive()) {
@@ -275,7 +318,7 @@
}
}
@@ -1345,7 +1458,9 @@
@@ -1345,7 +1459,9 @@
this.leashHolder = null;
this.leashInfoTag = null;
if (!this.level().isClientSide && flag1) {
@@ -285,7 +328,7 @@
}
if (!this.level().isClientSide && flag && this.level() instanceof WorldServer) {
@@ -1395,6 +1510,7 @@
@@ -1395,6 +1511,7 @@
boolean flag1 = super.startRiding(entity, flag);
if (flag1 && this.isLeashed()) {
@@ -293,7 +336,7 @@
this.dropLeash(true, true);
}
@@ -1419,7 +1535,9 @@
@@ -1419,7 +1536,9 @@
}
if (this.tickCount > 100) {
@@ -303,7 +346,7 @@
this.leashInfoTag = null;
}
}
@@ -1501,14 +1619,21 @@
@@ -1501,14 +1620,21 @@
int i = EnchantmentManager.getFireAspect(this);
if (i > 0) {
@@ -327,7 +370,7 @@
this.setDeltaMovement(this.getDeltaMovement().multiply(0.6D, 1.0D, 0.6D));
}
@@ -1576,6 +1701,7 @@
@@ -1576,6 +1702,7 @@
@Override
protected void removeAfterChangingDimensions() {
super.removeAfterChangingDimensions();