2017-04-22 08:16:45 +02:00
|
|
|
From 1f83e96b7750ff012aa3510df4eba6f2f25efde8 Mon Sep 17 00:00:00 2001
|
2016-03-25 10:02:35 +01:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Tue, 1 Mar 2016 23:45:08 -0600
|
|
|
|
Subject: [PATCH] Entity Origin API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2017-03-25 04:18:58 +01:00
|
|
|
index 14d23556f..313100aed 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2016-12-20 23:34:27 +01:00
|
|
|
@@ -147,6 +147,7 @@ public abstract class Entity implements ICommandListener {
|
2016-03-25 10:02:35 +01:00
|
|
|
public org.bukkit.projectiles.ProjectileSource projectileSource; // CraftBukkit - For projectiles only
|
|
|
|
public boolean forceExplosionKnockback; // CraftBukkit - SPIGOT-949
|
2016-04-30 03:23:40 +02:00
|
|
|
public Timing tickTimer = MinecraftTimings.getEntityTimings(this); // Paper
|
2016-03-25 10:02:35 +01:00
|
|
|
+ public Location origin; // Paper
|
|
|
|
// Spigot start
|
|
|
|
public final byte activationType = org.spigotmc.ActivationRange.initializeEntityActivationType(this);
|
|
|
|
public final boolean defaultActivationState;
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -1513,6 +1514,11 @@ public abstract class Entity implements ICommandListener {
|
2016-03-25 10:02:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Save the entity's origin location
|
|
|
|
+ if (origin != null) {
|
2016-05-12 04:07:46 +02:00
|
|
|
+ nbttagcompound.set("Paper.Origin", this.createList(origin.getX(), origin.getY(), origin.getZ()));
|
2016-03-25 10:02:35 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2016-05-12 04:07:46 +02:00
|
|
|
return nbttagcompound;
|
2016-03-25 10:02:35 +01:00
|
|
|
} catch (Throwable throwable) {
|
|
|
|
CrashReport crashreport = CrashReport.a(throwable, "Saving entity NBT");
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -1657,6 +1663,13 @@ public abstract class Entity implements ICommandListener {
|
2016-03-25 10:02:35 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
+ // Paper start - Restore the entity's origin location
|
2016-03-25 17:32:09 +01:00
|
|
|
+ NBTTagList originTag = nbttagcompound.getList("Paper.Origin", 6);
|
|
|
|
+ if (!originTag.isEmpty()) {
|
|
|
|
+ origin = new Location(world.getWorld(), originTag.e(0), originTag.e(1), originTag.e(2));
|
2016-03-25 10:02:35 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
} catch (Throwable throwable) {
|
|
|
|
CrashReport crashreport = CrashReport.a(throwable, "Loading entity NBT");
|
|
|
|
CrashReportSystemDetails crashreportsystemdetails = crashreport.a("Entity being loaded");
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -1681,6 +1694,7 @@ public abstract class Entity implements ICommandListener {
|
2016-05-12 04:07:46 +02:00
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
protected abstract void b(NBTTagCompound nbttagcompound);
|
2016-05-12 04:07:46 +02:00
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
+ protected NBTTagList createList(double... adouble) { return a(adouble); } // Paper - OBFHELPER
|
2016-05-12 04:07:46 +02:00
|
|
|
protected NBTTagList a(double... adouble) {
|
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
double[] adouble1 = adouble;
|
2016-03-25 10:02:35 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFallingBlock.java b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2017-03-19 03:01:13 +01:00
|
|
|
index 4c168d333..307a44c85 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -247,6 +247,14 @@ public class EntityFallingBlock extends Entity {
|
2016-03-25 10:02:35 +01:00
|
|
|
this.block = Blocks.SAND.getBlockData();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - Try and load origin location from the old NBT tags for backwards compatibility
|
|
|
|
+ if (nbttagcompound.hasKey("SourceLoc_x")) {
|
|
|
|
+ int srcX = nbttagcompound.getInt("SourceLoc_x");
|
|
|
|
+ int srcY = nbttagcompound.getInt("SourceLoc_y");
|
|
|
|
+ int srcZ = nbttagcompound.getInt("SourceLoc_z");
|
|
|
|
+ origin = new org.bukkit.Location(world.getWorld(), srcX, srcY, srcZ);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(boolean flag) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
2017-03-19 03:01:13 +01:00
|
|
|
index fd0735611..25e471d37 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -108,6 +108,14 @@ public class EntityTNTPrimed extends Entity {
|
2016-03-25 10:02:35 +01:00
|
|
|
|
|
|
|
protected void a(NBTTagCompound nbttagcompound) {
|
|
|
|
this.setFuseTicks(nbttagcompound.getShort("Fuse"));
|
|
|
|
+ // Paper start - Try and load origin location from the old NBT tags for backwards compatibility
|
|
|
|
+ if (nbttagcompound.hasKey("SourceLoc_x")) {
|
|
|
|
+ int srcX = nbttagcompound.getInt("SourceLoc_x");
|
|
|
|
+ int srcY = nbttagcompound.getInt("SourceLoc_y");
|
|
|
|
+ int srcZ = nbttagcompound.getInt("SourceLoc_z");
|
|
|
|
+ origin = new org.bukkit.Location(world.getWorld(), srcX, srcY, srcZ);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2016-11-17 03:23:38 +01:00
|
|
|
@Nullable
|
2016-03-25 10:02:35 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2017-03-25 04:18:58 +01:00
|
|
|
index 751fc01d1..39919ab1c 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -1021,6 +1021,12 @@ public abstract class World implements IBlockAccess {
|
2016-03-25 10:02:35 +01:00
|
|
|
int j = MathHelper.floor(entity.locZ / 16.0D);
|
|
|
|
boolean flag = entity.attachedToPlayer;
|
|
|
|
|
|
|
|
+ // Paper start - Set origin location when the entity is being added to the world
|
|
|
|
+ if (entity.origin == null) {
|
|
|
|
+ entity.origin = entity.getBukkitEntity().getLocation();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
if (entity instanceof EntityHuman) {
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
2017-03-19 03:01:13 +01:00
|
|
|
index b3cd6ec17..6497905b9 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
|
2017-03-19 03:01:13 +01:00
|
|
|
@@ -711,4 +711,12 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
2016-03-25 10:02:35 +01:00
|
|
|
return spigot;
|
|
|
|
}
|
|
|
|
// Spigot end
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public Location getOrigin() {
|
2016-03-25 17:39:37 +01:00
|
|
|
+ Location origin = getHandle().origin;
|
|
|
|
+ return origin == null ? null : origin.clone();
|
2016-03-25 10:02:35 +01:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
2016-11-17 03:23:38 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftFallingBlock.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftFallingBlock.java
|
2017-03-19 03:01:13 +01:00
|
|
|
index b0a7f6392..56666f1f8 100644
|
2016-11-17 03:23:38 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftFallingBlock.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftFallingBlock.java
|
|
|
|
@@ -65,4 +65,11 @@ public class CraftFallingBlock extends CraftEntity implements FallingBlock {
|
2016-06-14 01:42:08 +02:00
|
|
|
// Second field for EntityFallingBlock
|
|
|
|
getHandle().ticksLived = value;
|
2016-03-25 10:02:35 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public org.bukkit.Location getSourceLoc() {
|
|
|
|
+ return getOrigin();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftTNTPrimed.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftTNTPrimed.java
|
2017-03-19 03:01:13 +01:00
|
|
|
index c493c9c0c..93843aa50 100644
|
2016-03-25 10:02:35 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftTNTPrimed.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftTNTPrimed.java
|
|
|
|
@@ -65,4 +65,11 @@ public class CraftTNTPrimed extends CraftEntity implements TNTPrimed {
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public org.bukkit.Location getSourceLoc() {
|
|
|
|
+ return getOrigin();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
--
|
2017-04-22 08:16:45 +02:00
|
|
|
2.12.2
|
2016-03-25 10:02:35 +01:00
|
|
|
|