2020-06-26 14:04:38 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
Date: Wed, 15 Aug 2018 01:26:09 -0700
|
|
|
|
Subject: [PATCH] Allow disabling armour stand ticking
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-08-25 04:22:08 +02:00
|
|
|
index 92ddf96f7db08a2b390ef3f49b0643f9d90bbea4..414b9077317022e4efc0b1e547d7f387610146dc 100644
|
2020-06-26 14:04:38 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -377,4 +377,10 @@ public class PaperWorldConfig {
|
2020-06-26 14:04:38 +02:00
|
|
|
private void armorStandEntityLookups() {
|
|
|
|
armorStandEntityLookups = getBoolean("armor-stands-do-collision-entity-lookups", true);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean armorStandTick = true;
|
|
|
|
+ private void armorStandTick() {
|
|
|
|
+ this.armorStandTick = this.getBoolean("armor-stands-tick", this.armorStandTick);
|
|
|
|
+ log("ArmorStand ticking is " + (this.armorStandTick ? "enabled" : "disabled") + " by default");
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityArmorStand.java b/src/main/java/net/minecraft/server/EntityArmorStand.java
|
2020-09-11 01:47:58 +02:00
|
|
|
index c83f7a0baee28c93b035a4bee68eb26374d50a79..3b01b560f29e5d2c765f28b53e79119503fcfbac 100644
|
2020-06-26 14:04:38 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityArmorStand.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityArmorStand.java
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -46,9 +46,16 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
public Vector3f leftLegPose;
|
|
|
|
public Vector3f rightLegPose;
|
|
|
|
public boolean canMove = true; // Paper
|
|
|
|
+ // Paper start - Allow ArmorStands not to tick
|
|
|
|
+ public boolean canTick = true;
|
|
|
|
+ public boolean canTickSetByAPI = false;
|
|
|
|
+ private boolean noTickPoseDirty = false;
|
|
|
|
+ private boolean noTickEquipmentDirty = false;
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public EntityArmorStand(EntityTypes<? extends EntityArmorStand> entitytypes, World world) {
|
|
|
|
super(entitytypes, world);
|
|
|
|
+ if (world != null) this.canTick = world.paperConfig.armorStandTick; // Paper - armour stand ticking
|
2020-08-25 04:22:08 +02:00
|
|
|
this.handItems = NonNullList.a(2, ItemStack.b);
|
|
|
|
this.armorItems = NonNullList.a(4, ItemStack.b);
|
|
|
|
this.headPose = EntityArmorStand.bj;
|
|
|
|
@@ -137,6 +144,7 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
this.armorItems.set(enumitemslot.b(), itemstack);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ this.noTickEquipmentDirty = true; // Paper - Allow equipment to be updated even when tick disabled
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -217,6 +225,7 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
nbttagcompound.set("Pose", this.B());
|
|
|
|
+ if (this.canTickSetByAPI) nbttagcompound.setBoolean("Paper.CanTickOverride", this.canTick); // Paper - persist no tick setting
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -248,6 +257,12 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
this.setBasePlate(nbttagcompound.getBoolean("NoBasePlate"));
|
|
|
|
this.setMarker(nbttagcompound.getBoolean("Marker"));
|
|
|
|
this.noclip = !this.A();
|
|
|
|
+ // Paper start - persist no tick
|
|
|
|
+ if (nbttagcompound.hasKey("Paper.CanTickOverride")) {
|
|
|
|
+ this.canTick = nbttagcompound.getBoolean("Paper.CanTickOverride");
|
|
|
|
+ this.canTickSetByAPI = true;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompound("Pose");
|
|
|
|
|
|
|
|
this.g(nbttagcompound1);
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -602,7 +617,29 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void tick() {
|
|
|
|
+ // Paper start
|
|
|
|
+ if (!this.canTick) {
|
|
|
|
+ if (this.noTickPoseDirty) {
|
|
|
|
+ this.noTickPoseDirty = false;
|
|
|
|
+ this.updatePose();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (this.noTickEquipmentDirty) {
|
|
|
|
+ this.noTickEquipmentDirty = false;
|
|
|
|
+ this.updateEntityEquipment();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
super.tick();
|
|
|
|
+ // Paper start - Split into separate method
|
|
|
|
+ updatePose();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void updatePose() {
|
|
|
|
+ // Paper end
|
|
|
|
Vector3f vector3f = (Vector3f) this.datawatcher.get(EntityArmorStand.c);
|
|
|
|
|
|
|
|
if (!this.headPose.equals(vector3f)) {
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -725,29 +762,36 @@ public class EntityArmorStand extends EntityLiving {
|
2020-06-26 14:04:38 +02:00
|
|
|
public void setHeadPose(Vector3f vector3f) {
|
|
|
|
this.headPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.c, vector3f);
|
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBodyPose(Vector3f vector3f) {
|
|
|
|
this.bodyPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.d, vector3f);
|
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLeftArmPose(Vector3f vector3f) {
|
|
|
|
this.leftArmPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.e, vector3f);
|
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRightArmPose(Vector3f vector3f) {
|
|
|
|
this.rightArmPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.f, vector3f);
|
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLeftLegPose(Vector3f vector3f) {
|
2020-08-25 04:22:08 +02:00
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
2020-06-26 14:04:38 +02:00
|
|
|
this.leftLegPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.g, vector3f);
|
2020-08-25 04:22:08 +02:00
|
|
|
+
|
2020-06-26 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setRightLegPose(Vector3f vector3f) {
|
|
|
|
+ this.noTickPoseDirty = true; // Paper - Allow updates when not ticking
|
2020-08-25 04:22:08 +02:00
|
|
|
this.rightLegPose = vector3f;
|
|
|
|
this.datawatcher.set(EntityArmorStand.bh, vector3f);
|
2020-06-26 14:04:38 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2020-09-11 01:47:58 +02:00
|
|
|
index db84ddd62b627764ff5debc56095d37e81c94605..3a6e5cb459fb9866cf2e377b803501152ab7ce69 100644
|
2020-06-26 14:04:38 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2020-09-11 01:47:58 +02:00
|
|
|
@@ -2514,6 +2514,7 @@ public abstract class EntityLiving extends Entity {
|
2020-06-26 14:04:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 04:22:08 +02:00
|
|
|
+ public final void updateEntityEquipment() { p(); }; // Paper - OBFHELPER
|
|
|
|
private void p() {
|
|
|
|
Map<EnumItemSlot, ItemStack> map = this.q();
|
2020-06-26 14:04:38 +02:00
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftArmorStand.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftArmorStand.java
|
2020-09-11 01:56:58 +02:00
|
|
|
index c19f0b0dd3fe988a30049297355445fd73cae630..cb22cbd68a4d310fecad3a87a97bf101216a5f64 100644
|
2020-06-26 14:04:38 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftArmorStand.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftArmorStand.java
|
2020-09-11 01:56:58 +02:00
|
|
|
@@ -311,5 +311,16 @@ public class CraftArmorStand extends CraftLivingEntity implements ArmorStand {
|
2020-06-26 14:04:38 +02:00
|
|
|
public boolean isSlotDisabled(org.bukkit.inventory.EquipmentSlot slot) {
|
|
|
|
return getHandle().isSlotDisabled(org.bukkit.craftbukkit.CraftEquipmentSlot.getNMS(slot));
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean canTick() {
|
|
|
|
+ return this.getHandle().canTick;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setCanTick(final boolean tick) {
|
|
|
|
+ this.getHandle().canTick = tick;
|
|
|
|
+ this.getHandle().canTickSetByAPI = true;
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|