2019-05-06 19:30:27 +00:00
From 18daafb7221a2c0102a2c150b39057d9982393d4 Mon Sep 17 00:00:00 2001
2018-11-25 17:51:11 +00:00
From: BillyGalbreath <Blake.Galbreath@GMail.com>
Date: Sun, 7 Oct 2018 04:29:59 -0500
Subject: [PATCH] Add more Zombie API
2019-05-06 19:30:27 +00:00
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
index a8318c88af..a0c089477a 100644
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
@@ -1250,6 +1250,8 @@ public abstract class EntityInsentient extends EntityLiving {
this.datawatcher.set(EntityInsentient.b, flag ? (byte) (b0 | 2) : (byte) (b0 & -3));
}
+ public boolean isArmsRaised() { return (this.datawatcher.get(EntityInsentient.b) & 4) != 0; } // Paper - OBFHELPER // TODO verify + obfhelper the datawatcher field
+ public void setArmsRaised(boolean flag) { this.q(flag); } // Paper - OBFHELPER // TODO verify
public void q(boolean flag) {
byte b0 = (Byte) this.datawatcher.get(EntityInsentient.b);
2018-11-25 17:51:11 +00:00
diff --git a/src/main/java/net/minecraft/server/EntityZombie.java b/src/main/java/net/minecraft/server/EntityZombie.java
2019-05-06 02:58:04 +00:00
index 2f0fab469b..dea1d2d4d2 100644
2018-11-25 17:51:11 +00:00
--- a/src/main/java/net/minecraft/server/EntityZombie.java
+++ b/src/main/java/net/minecraft/server/EntityZombie.java
2019-05-05 11:12:32 +00:00
@@ -31,6 +31,7 @@ public class EntityZombie extends EntityMonster {
private int bF;
public int drownedConversionTime;
2018-11-25 17:51:11 +00:00
private int lastTick = MinecraftServer.currentTick; // CraftBukkit - add field
+ private boolean shouldBurnInDay = true; // Paper
2019-05-05 11:12:32 +00:00
public EntityZombie(EntityTypes<? extends EntityZombie> entitytypes, World world) {
2018-11-25 17:51:11 +00:00
super(entitytypes, world);
2019-05-05 11:12:32 +00:00
@@ -78,6 +79,7 @@ public class EntityZombie extends EntityMonster {
2019-01-01 03:15:55 +00:00
this.getDataWatcher().register(EntityZombie.DROWN_CONVERTING, false);
2018-11-25 17:51:11 +00:00
}
2018-12-08 10:09:55 +00:00
+ public boolean isDrowning() { return isDrownConverting(); } // Paper - OBFHELPER
public boolean isDrownConverting() {
2019-01-01 03:15:55 +00:00
return (Boolean) this.getDataWatcher().get(EntityZombie.DROWN_CONVERTING);
2018-11-25 17:51:11 +00:00
}
2019-05-05 11:12:32 +00:00
@@ -209,6 +211,13 @@ public class EntityZombie extends EntityMonster {
2019-01-01 03:15:55 +00:00
this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, true);
2018-11-25 17:51:11 +00:00
}
+ // Paper start
+ public void stopDrowning() {
2018-12-08 10:09:55 +00:00
+ this.drownedConversionTime = -1;
2019-05-05 11:12:32 +00:00
+ this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, false);
2018-11-25 17:51:11 +00:00
+ }
+ // Paper end
+
2019-05-05 11:12:32 +00:00
protected void eb() {
this.b(EntityTypes.DROWNED);
2018-11-25 17:51:11 +00:00
this.world.a((EntityHuman) null, 1040, new BlockPosition((int) this.locX, (int) this.locY, (int) this.locZ), 0);
2019-05-05 11:12:32 +00:00
@@ -253,10 +262,17 @@ public class EntityZombie extends EntityMonster {
2018-11-25 17:51:11 +00:00
}
}
2019-05-05 11:12:32 +00:00
+ public boolean shouldBurnInDay() { return J_(); } // Paper - OBFHELPER
protected boolean J_() {
2018-11-25 17:51:11 +00:00
- return true;
2019-05-05 11:12:32 +00:00
+ return shouldBurnInDay;
2018-11-25 17:51:11 +00:00
}
+ // Paper start
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
+ this.shouldBurnInDay = shouldBurnInDay;
+ }
+ // Paper end
+
2019-05-05 11:12:32 +00:00
@Override
2018-11-25 17:51:11 +00:00
public boolean damageEntity(DamageSource damagesource, float f) {
if (super.damageEntity(damagesource, f)) {
2019-05-05 11:12:32 +00:00
@@ -374,6 +390,7 @@ public class EntityZombie extends EntityMonster {
nbttagcompound.setBoolean("CanBreakDoors", this.ef());
nbttagcompound.setInt("InWaterTime", this.isInWater() ? this.bF : -1);
2018-12-08 10:09:55 +00:00
nbttagcompound.setInt("DrownedConversionTime", this.isDrownConverting() ? this.drownedConversionTime : -1);
2018-11-25 17:51:11 +00:00
+ nbttagcompound.setBoolean("Paper.ShouldBurnInDay", shouldBurnInDay); // Paper
}
2019-05-05 11:12:32 +00:00
@Override
@@ -388,7 +405,11 @@ public class EntityZombie extends EntityMonster {
2018-11-25 17:51:11 +00:00
if (nbttagcompound.hasKeyOfType("DrownedConversionTime", 99) && nbttagcompound.getInt("DrownedConversionTime") > -1) {
2019-01-01 03:15:55 +00:00
this.startDrownedConversion(nbttagcompound.getInt("DrownedConversionTime"));
2018-11-25 17:51:11 +00:00
}
-
+ // Paper start
+ if (nbttagcompound.hasKey("Paper.ShouldBurnInDay")) {
+ shouldBurnInDay = nbttagcompound.getBoolean("Paper.ShouldBurnInDay");
+ }
+ // Paper end
}
2019-05-05 11:12:32 +00:00
@Override
2018-11-25 17:51:11 +00:00
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
2019-05-06 19:30:27 +00:00
index 0429cf020e..060a6aa027 100644
2018-11-25 17:51:11 +00:00
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
2019-05-06 19:30:27 +00:00
@@ -80,4 +80,41 @@ public class CraftZombie extends CraftMonster implements Zombie {
2019-01-01 03:15:55 +00:00
getHandle().startDrownedConversion(time);
2018-12-17 05:18:06 +00:00
}
2018-11-25 17:51:11 +00:00
}
+
+ // Paper start
2019-05-06 19:30:27 +00:00
+ @Override
2018-11-25 17:51:11 +00:00
+ public boolean isDrowning() {
+ return getHandle().isDrowning();
+ }
+
2019-05-06 19:30:27 +00:00
+ @Override
2018-11-25 17:51:11 +00:00
+ public void startDrowning(int drownedConversionTime) {
2019-01-01 03:15:55 +00:00
+ getHandle().startDrownedConversion(drownedConversionTime);
2018-11-25 17:51:11 +00:00
+ }
+
2019-05-06 19:30:27 +00:00
+ @Override
2018-11-25 17:51:11 +00:00
+ public void stopDrowning() {
+ getHandle().stopDrowning();
+ }
+
2019-05-06 19:30:27 +00:00
+ @Override
2018-11-25 17:51:11 +00:00
+ public boolean shouldBurnInDay() {
+ return getHandle().shouldBurnInDay();
+ }
+
2019-05-06 19:30:27 +00:00
+ @Override
+ public boolean isArmsRaised() {
+ return getHandle().isArmsRaised();
+ }
+
+ @Override
+ public void setArmsRaised(final boolean raised) {
+ getHandle().q(raised); // TODO add obfhelper and verify
+ }
+
+ @Override
2018-11-25 17:51:11 +00:00
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
+ getHandle().setShouldBurnInDay(shouldBurnInDay);
+ }
+ // Paper end
}
--
2019-05-05 11:32:20 +00:00
2.21.0
2018-11-25 17:51:11 +00:00