2019-05-19 05:16:22 +02:00
|
|
|
From da0e83eea89b72a5a1ef53bdc263e7d9800a1cc4 Mon Sep 17 00:00:00 2001
|
2018-11-25 18:51:11 +01: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 21:30:27 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2019-05-19 05:16:22 +02:00
|
|
|
index 90923c753..5cc08ca7c 100644
|
2019-05-06 21:30:27 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2019-05-19 05:16:22 +02:00
|
|
|
@@ -1246,6 +1246,8 @@ public abstract class EntityInsentient extends EntityLiving {
|
2019-05-06 21:30:27 +02:00
|
|
|
this.datawatcher.set(EntityInsentient.b, flag ? (byte) (b0 | 2) : (byte) (b0 & -3));
|
|
|
|
}
|
|
|
|
|
2019-05-13 03:04:29 +02:00
|
|
|
+ public boolean isArmsRaisedZombie() { return (this.datawatcher.get(EntityInsentient.b) & 4) != 0; } // Paper - OBFHELPER
|
|
|
|
+ public void setArmsRaisedZombie(boolean flag) { this.q(flag); } // Paper - OBFHELPER
|
2019-05-06 21:30:27 +02:00
|
|
|
public void q(boolean flag) {
|
|
|
|
byte b0 = (Byte) this.datawatcher.get(EntityInsentient.b);
|
|
|
|
|
2018-11-25 18:51:11 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityZombie.java b/src/main/java/net/minecraft/server/EntityZombie.java
|
2019-05-19 05:16:22 +02:00
|
|
|
index 171c1ae4a..b20fe8e52 100644
|
2018-11-25 18:51:11 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityZombie.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityZombie.java
|
2019-05-05 13:12:32 +02:00
|
|
|
@@ -31,6 +31,7 @@ public class EntityZombie extends EntityMonster {
|
|
|
|
private int bF;
|
|
|
|
public int drownedConversionTime;
|
2018-11-25 18:51:11 +01:00
|
|
|
private int lastTick = MinecraftServer.currentTick; // CraftBukkit - add field
|
|
|
|
+ private boolean shouldBurnInDay = true; // Paper
|
|
|
|
|
2019-05-05 13:12:32 +02:00
|
|
|
public EntityZombie(EntityTypes<? extends EntityZombie> entitytypes, World world) {
|
2018-11-25 18:51:11 +01:00
|
|
|
super(entitytypes, world);
|
2019-05-05 13:12:32 +02:00
|
|
|
@@ -78,6 +79,7 @@ public class EntityZombie extends EntityMonster {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.getDataWatcher().register(EntityZombie.DROWN_CONVERTING, false);
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
|
2018-12-08 11:09:55 +01:00
|
|
|
+ public boolean isDrowning() { return isDrownConverting(); } // Paper - OBFHELPER
|
|
|
|
public boolean isDrownConverting() {
|
2019-01-01 04:15:55 +01:00
|
|
|
return (Boolean) this.getDataWatcher().get(EntityZombie.DROWN_CONVERTING);
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
2019-05-05 13:12:32 +02:00
|
|
|
@@ -209,6 +211,13 @@ public class EntityZombie extends EntityMonster {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, true);
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public void stopDrowning() {
|
2018-12-08 11:09:55 +01:00
|
|
|
+ this.drownedConversionTime = -1;
|
2019-05-05 13:12:32 +02:00
|
|
|
+ this.getDataWatcher().set(EntityZombie.DROWN_CONVERTING, false);
|
2018-11-25 18:51:11 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 13:12:32 +02:00
|
|
|
protected void eb() {
|
|
|
|
this.b(EntityTypes.DROWNED);
|
2019-05-14 04:20:58 +02:00
|
|
|
this.world.a((EntityHuman) null, 1040, new BlockPosition(this), 0);
|
2019-05-05 13:12:32 +02:00
|
|
|
@@ -253,10 +262,17 @@ public class EntityZombie extends EntityMonster {
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 13:12:32 +02:00
|
|
|
+ public boolean shouldBurnInDay() { return J_(); } // Paper - OBFHELPER
|
|
|
|
protected boolean J_() {
|
2018-11-25 18:51:11 +01:00
|
|
|
- return true;
|
2019-05-05 13:12:32 +02:00
|
|
|
+ return shouldBurnInDay;
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
|
|
|
|
+ this.shouldBurnInDay = shouldBurnInDay;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 13:12:32 +02:00
|
|
|
@Override
|
2018-11-25 18:51:11 +01:00
|
|
|
public boolean damageEntity(DamageSource damagesource, float f) {
|
|
|
|
if (super.damageEntity(damagesource, f)) {
|
2019-05-05 13:12:32 +02: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 11:09:55 +01:00
|
|
|
nbttagcompound.setInt("DrownedConversionTime", this.isDrownConverting() ? this.drownedConversionTime : -1);
|
2018-11-25 18:51:11 +01:00
|
|
|
+ nbttagcompound.setBoolean("Paper.ShouldBurnInDay", shouldBurnInDay); // Paper
|
|
|
|
}
|
|
|
|
|
2019-05-05 13:12:32 +02:00
|
|
|
@Override
|
|
|
|
@@ -388,7 +405,11 @@ public class EntityZombie extends EntityMonster {
|
2018-11-25 18:51:11 +01:00
|
|
|
if (nbttagcompound.hasKeyOfType("DrownedConversionTime", 99) && nbttagcompound.getInt("DrownedConversionTime") > -1) {
|
2019-01-01 04:15:55 +01:00
|
|
|
this.startDrownedConversion(nbttagcompound.getInt("DrownedConversionTime"));
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
-
|
|
|
|
+ // Paper start
|
|
|
|
+ if (nbttagcompound.hasKey("Paper.ShouldBurnInDay")) {
|
|
|
|
+ shouldBurnInDay = nbttagcompound.getBoolean("Paper.ShouldBurnInDay");
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2019-05-05 13:12:32 +02:00
|
|
|
@Override
|
2018-11-25 18:51:11 +01: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-19 05:16:22 +02:00
|
|
|
index 0429cf020..c4320dbb6 100644
|
2018-11-25 18:51:11 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftZombie.java
|
2019-05-06 21:30:27 +02:00
|
|
|
@@ -80,4 +80,41 @@ public class CraftZombie extends CraftMonster implements Zombie {
|
2019-01-01 04:15:55 +01:00
|
|
|
getHandle().startDrownedConversion(time);
|
2018-12-17 06:18:06 +01:00
|
|
|
}
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
2019-05-06 21:30:27 +02:00
|
|
|
+ @Override
|
2018-11-25 18:51:11 +01:00
|
|
|
+ public boolean isDrowning() {
|
|
|
|
+ return getHandle().isDrowning();
|
|
|
|
+ }
|
|
|
|
+
|
2019-05-06 21:30:27 +02:00
|
|
|
+ @Override
|
2018-11-25 18:51:11 +01:00
|
|
|
+ public void startDrowning(int drownedConversionTime) {
|
2019-01-01 04:15:55 +01:00
|
|
|
+ getHandle().startDrownedConversion(drownedConversionTime);
|
2018-11-25 18:51:11 +01:00
|
|
|
+ }
|
|
|
|
+
|
2019-05-06 21:30:27 +02:00
|
|
|
+ @Override
|
2018-11-25 18:51:11 +01:00
|
|
|
+ public void stopDrowning() {
|
|
|
|
+ getHandle().stopDrowning();
|
|
|
|
+ }
|
|
|
|
+
|
2019-05-06 21:30:27 +02:00
|
|
|
+ @Override
|
2018-11-25 18:51:11 +01:00
|
|
|
+ public boolean shouldBurnInDay() {
|
|
|
|
+ return getHandle().shouldBurnInDay();
|
|
|
|
+ }
|
|
|
|
+
|
2019-05-06 21:30:27 +02:00
|
|
|
+ @Override
|
|
|
|
+ public boolean isArmsRaised() {
|
2019-05-13 03:04:29 +02:00
|
|
|
+ return getHandle().isArmsRaisedZombie();
|
2019-05-06 21:30:27 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setArmsRaised(final boolean raised) {
|
2019-05-13 03:04:29 +02:00
|
|
|
+ getHandle().setArmsRaisedZombie(raised);
|
2019-05-06 21:30:27 +02:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2018-11-25 18:51:11 +01:00
|
|
|
+ public void setShouldBurnInDay(boolean shouldBurnInDay) {
|
|
|
|
+ getHandle().setShouldBurnInDay(shouldBurnInDay);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-05-05 13:32:20 +02:00
|
|
|
2.21.0
|
2018-11-25 18:51:11 +01:00
|
|
|
|