| 
									
										
										
										
											2020-05-06 05:48:49 -04:00
										 |  |  | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07: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
 | 
					
						
							| 
									
										
										
										
											2020-06-30 01:20:29 -04:00
										 |  |  | index e85172eb69b04746eab08abf213dcd02cd4513ee..bfe36be070677d215eadd3ad38f93c6bddab0b75 100644
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | --- a/src/main/java/net/minecraft/server/Entity.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/net/minecraft/server/Entity.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 21:58:00 -04:00
										 |  |  | @@ -167,6 +167,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
 | 
					
						
							| 
									
										
										
										
											2017-11-08 16:13:57 +00:00
										 |  |  |      public org.bukkit.projectiles.ProjectileSource projectileSource; // For projectiles only | 
					
						
							|  |  |  |      public boolean forceExplosionKnockback; // SPIGOT-949 | 
					
						
							| 
									
										
										
										
											2016-04-29 21:23:40 -04:00
										 |  |  |      public Timing tickTimer = MinecraftTimings.getEntityTimings(this); // Paper | 
					
						
							| 
									
										
										
										
											2020-06-26 02:29:44 -04:00
										 |  |  | +    public org.bukkit.Location origin; // Paper
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |      // Spigot start | 
					
						
							| 
									
										
										
										
											2019-05-30 18:54:25 -05:00
										 |  |  |      public final org.spigotmc.ActivationRange.ActivationType activationType = org.spigotmc.ActivationRange.initializeEntityActivationType(this); | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |      public final boolean defaultActivationState; | 
					
						
							| 
									
										
										
										
											2020-06-25 21:58:00 -04:00
										 |  |  | @@ -1541,6 +1542,11 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
 | 
					
						
							| 
									
										
										
										
											2019-05-05 19:58:04 -07:00
										 |  |  |                  this.bukkitEntity.storeBukkitValues(nbttagcompound); | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |              } | 
					
						
							| 
									
										
										
										
											2019-05-05 19:58:04 -07:00
										 |  |  |              // CraftBukkit end | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | +            // Paper start - Save the entity's origin location
 | 
					
						
							| 
									
										
										
										
											2019-05-05 19:58:04 -07:00
										 |  |  | +            if (this.origin != null) {
 | 
					
						
							| 
									
										
										
										
											2016-05-11 22:07:46 -04:00
										 |  |  | +                nbttagcompound.set("Paper.Origin", this.createList(origin.getX(), origin.getY(), origin.getZ()));
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | +            }
 | 
					
						
							|  |  |  | +            // Paper end
 | 
					
						
							| 
									
										
										
										
											2016-05-11 22:07:46 -04:00
										 |  |  |              return nbttagcompound; | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |          } catch (Throwable throwable) { | 
					
						
							|  |  |  |              CrashReport crashreport = CrashReport.a(throwable, "Saving entity NBT"); | 
					
						
							| 
									
										
										
										
											2020-06-25 21:58:00 -04:00
										 |  |  | @@ -1657,6 +1663,13 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
 | 
					
						
							| 
									
										
										
										
											2019-05-26 02:56:30 +01:00
										 |  |  |              this.getBukkitEntity().readBukkitValues(nbttagcompound); | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |              // CraftBukkit end | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | +            // Paper start - Restore the entity's origin location
 | 
					
						
							| 
									
										
										
										
											2016-03-25 09:32:09 -07:00
										 |  |  | +            NBTTagList originTag = nbttagcompound.getList("Paper.Origin", 6);
 | 
					
						
							|  |  |  | +            if (!originTag.isEmpty()) {
 | 
					
						
							| 
									
										
										
										
											2020-06-26 02:29:44 -04:00
										 |  |  | +                origin = new org.bukkit.Location(world.getWorld(), originTag.getDoubleAt(0), originTag.getDoubleAt(1), originTag.getDoubleAt(2));
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | +            }
 | 
					
						
							|  |  |  | +            // Paper end
 | 
					
						
							|  |  |  | +
 | 
					
						
							|  |  |  |          } catch (Throwable throwable) { | 
					
						
							|  |  |  |              CrashReport crashreport = CrashReport.a(throwable, "Loading entity NBT"); | 
					
						
							|  |  |  |              CrashReportSystemDetails crashreportsystemdetails = crashreport.a("Entity being loaded"); | 
					
						
							| 
									
										
										
										
											2020-06-25 21:58:00 -04:00
										 |  |  | @@ -1718,6 +1731,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
 | 
					
						
							| 
									
										
										
										
											2016-05-11 22:07:46 -04:00
										 |  |  |   | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  |      protected abstract void saveData(NBTTagCompound nbttagcompound); | 
					
						
							| 
									
										
										
										
											2016-05-11 22:07:46 -04:00
										 |  |  |   | 
					
						
							| 
									
										
										
										
											2016-06-08 22:57:14 -05:00
										 |  |  | +    protected NBTTagList createList(double... adouble) { return a(adouble); } // Paper - OBFHELPER
 | 
					
						
							| 
									
										
										
										
											2016-05-11 22:07:46 -04:00
										 |  |  |      protected NBTTagList a(double... adouble) { | 
					
						
							|  |  |  |          NBTTagList nbttaglist = new NBTTagList(); | 
					
						
							|  |  |  |          double[] adouble1 = adouble; | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | diff --git a/src/main/java/net/minecraft/server/EntityFallingBlock.java b/src/main/java/net/minecraft/server/EntityFallingBlock.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | index 8c51b3060114a24249962c2d6142166ac8600a0a..7c308e0912fb60f8dcdfb36c8a8c8718231858bc 100644
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | --- a/src/main/java/net/minecraft/server/EntityFallingBlock.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/net/minecraft/server/EntityFallingBlock.java
 | 
					
						
							| 
									
										
										
										
											2020-04-08 03:49:15 -04:00
										 |  |  | @@ -254,6 +254,14 @@ public class EntityFallingBlock extends Entity {
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07: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
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | index b5900e1cad8137954d5fa4fde10b4afb64fb6412..0f4923bce392c8e46f6b256f47d23e15b08e6d62 100644
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | --- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java
 | 
					
						
							| 
									
										
										
										
											2020-04-08 03:49:15 -04:00
										 |  |  | @@ -104,6 +104,14 @@ public class EntityTNTPrimed extends Entity {
 | 
					
						
							| 
									
										
										
										
											2019-04-24 03:34:11 +01:00
										 |  |  |      @Override | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  |      protected void loadData(NBTTagCompound nbttagcompound) { | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |          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-16 20:23:38 -06:00
										 |  |  |      @Nullable | 
					
						
							| 
									
										
										
										
											2017-05-14 13:05:01 -05:00
										 |  |  | diff --git a/src/main/java/net/minecraft/server/NBTTagList.java b/src/main/java/net/minecraft/server/NBTTagList.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | index ad8a506bb430b26fe147a657a2f826daf9bf4d45..ad4807e0bdd6409bd798f995da8f43cec1d0b385 100644
 | 
					
						
							| 
									
										
										
										
											2017-05-14 13:05:01 -05:00
										 |  |  | --- a/src/main/java/net/minecraft/server/NBTTagList.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/net/minecraft/server/NBTTagList.java
 | 
					
						
							| 
									
										
										
										
											2019-12-11 00:56:03 +00:00
										 |  |  | @@ -188,6 +188,7 @@ public class NBTTagList extends NBTList<NBTBase> {
 | 
					
						
							| 
									
										
										
										
											2017-05-14 13:05:01 -05:00
										 |  |  |          return new int[0]; | 
					
						
							|  |  |  |      } | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2019-04-24 03:34:11 +01:00
										 |  |  | +    public final double getDoubleAt(int i) { return this.h(i); } // Paper - OBFHELPER
 | 
					
						
							|  |  |  |      public double h(int i) { | 
					
						
							| 
									
										
										
										
											2017-05-14 13:05:01 -05:00
										 |  |  |          if (i >= 0 && i < this.list.size()) { | 
					
						
							| 
									
										
										
										
											2019-01-01 03:15:55 +00:00
										 |  |  |              NBTBase nbtbase = (NBTBase) this.list.get(i); | 
					
						
							| 
									
										
										
										
											2019-05-05 14:39:51 -07:00
										 |  |  | diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
 | 
					
						
							| 
									
										
										
										
											2020-06-30 01:20:29 -04:00
										 |  |  | index 9df9ce88e23b31f0303a3c84136a10ea14a6d33d..f764eaf58d225d3c875dda66c1a2ac43ef3c1eae 100644
 | 
					
						
							| 
									
										
										
										
											2019-05-05 14:39:51 -07:00
										 |  |  | --- a/src/main/java/net/minecraft/server/WorldServer.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/net/minecraft/server/WorldServer.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | @@ -1088,6 +1088,11 @@ public class WorldServer extends World implements GeneratorAccessSeed {
 | 
					
						
							| 
									
										
										
										
											2019-12-11 00:56:03 +00:00
										 |  |  |                  this.navigators.add(((EntityInsentient) entity).getNavigation()); | 
					
						
							| 
									
										
										
										
											2019-05-05 14:39:51 -07:00
										 |  |  |              } | 
					
						
							|  |  |  |              entity.valid = true; // CraftBukkit | 
					
						
							|  |  |  | +            // 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
 | 
					
						
							|  |  |  |          } | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  |      } | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | index e867168be3c17548490f30944ca56a635cc3b054..19669d7354d8cfa723e614ac3b471e703ee7feee 100644
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | --- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
 | 
					
						
							|  |  |  | +++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
 | 
					
						
							| 
									
										
										
										
											2020-06-25 05:27:25 -04:00
										 |  |  | @@ -1016,4 +1016,12 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  |          return spigot; | 
					
						
							|  |  |  |      } | 
					
						
							|  |  |  |      // Spigot end | 
					
						
							|  |  |  | +
 | 
					
						
							|  |  |  | +    // Paper start
 | 
					
						
							|  |  |  | +    @Override
 | 
					
						
							|  |  |  | +    public Location getOrigin() {
 | 
					
						
							| 
									
										
										
										
											2016-03-25 09:39:37 -07:00
										 |  |  | +        Location origin = getHandle().origin;
 | 
					
						
							|  |  |  | +        return origin == null ? null : origin.clone();
 | 
					
						
							| 
									
										
										
										
											2016-03-25 02:02:35 -07:00
										 |  |  | +    }
 | 
					
						
							|  |  |  | +    // Paper end
 | 
					
						
							|  |  |  |  } |