2019-07-28 16:32:14 +02:00
|
|
|
From f907156715854ece053295bfc0ec77b0b0ee8ea6 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-07-28 16:32:14 +02:00
|
|
|
index 09112a8b0..d00e99cdb 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-06-25 03:47:58 +02:00
|
|
|
@@ -1247,6 +1247,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-07-28 16:32:14 +02:00
|
|
|
index 832375f27..cdaa7f636 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-07-28 16:32:14 +02:00
|
|
|
@@ -33,6 +33,7 @@ public class EntityZombie extends EntityMonster {
|
2019-05-05 13:12:32 +02:00
|
|
|
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-07-28 16:32:14 +02:00
|
|
|
@@ -80,6 +81,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-07-28 16:32:14 +02:00
|
|
|
@@ -212,6 +214,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-07-20 06:01:24 +02:00
|
|
|
protected void ea() {
|
2019-05-05 13:12:32 +02:00
|
|
|
this.b(EntityTypes.DROWNED);
|
2019-05-14 04:20:58 +02:00
|
|
|
this.world.a((EntityHuman) null, 1040, new BlockPosition(this), 0);
|
2019-07-28 16:32:14 +02:00
|
|
|
@@ -258,10 +267,17 @@ public class EntityZombie extends EntityMonster {
|
2018-11-25 18:51:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 03:47:58 +02:00
|
|
|
+ public boolean shouldBurnInDay() { return I_(); } // Paper - OBFHELPER
|
|
|
|
protected boolean I_() {
|
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-07-28 16:32:14 +02:00
|
|
|
@@ -379,6 +395,7 @@ public class EntityZombie extends EntityMonster {
|
2019-07-20 06:01:24 +02:00
|
|
|
nbttagcompound.setBoolean("CanBreakDoors", this.ed());
|
2019-05-05 13:12:32 +02:00
|
|
|
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
|
2019-07-28 16:32:14 +02:00
|
|
|
@@ -393,7 +410,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-07-28 16:32:14 +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-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2018-11-25 18:51:11 +01:00
|
|
|
|