2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/TileEntity.java
|
|
|
|
+++ b/net/minecraft/server/TileEntity.java
|
2019-05-14 02:00:00 +02:00
|
|
|
@@ -4,9 +4,18 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
2019-05-14 02:00:00 +02:00
|
|
|
import org.apache.logging.log4j.util.Supplier;
|
2019-04-25 06:36:46 +02:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.persistence.CraftPersistentDataContainer;
|
|
|
|
+import org.bukkit.craftbukkit.persistence.CraftPersistentDataTypeRegistry;
|
|
|
|
+import org.bukkit.inventory.InventoryHolder;
|
|
|
|
+// CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
public abstract class TileEntity {
|
|
|
|
|
2019-04-25 06:36:46 +02:00
|
|
|
+ // CraftBukkit start - data containers
|
|
|
|
+ private static final CraftPersistentDataTypeRegistry DATA_TYPE_REGISTRY = new CraftPersistentDataTypeRegistry();
|
2019-07-03 02:17:50 +02:00
|
|
|
+ public CraftPersistentDataContainer persistentDataContainer;
|
2019-04-25 06:36:46 +02:00
|
|
|
+ // CraftBukkit end
|
2019-04-25 04:00:00 +02:00
|
|
|
private static final Logger LOGGER = LogManager.getLogger();
|
2019-12-10 23:00:00 +01:00
|
|
|
private final TileEntityTypes<?> tileType;
|
2019-04-25 06:36:46 +02:00
|
|
|
@Nullable
|
2019-12-10 23:00:00 +01:00
|
|
|
@@ -38,6 +47,14 @@
|
2019-04-25 06:36:46 +02:00
|
|
|
|
|
|
|
public void load(NBTTagCompound nbttagcompound) {
|
|
|
|
this.position = new BlockPosition(nbttagcompound.getInt("x"), nbttagcompound.getInt("y"), nbttagcompound.getInt("z"));
|
|
|
|
+ // CraftBukkit start - read container
|
2019-07-03 02:17:50 +02:00
|
|
|
+ this.persistentDataContainer = new CraftPersistentDataContainer(DATA_TYPE_REGISTRY);
|
|
|
|
+
|
2019-04-25 06:36:46 +02:00
|
|
|
+ NBTTagCompound persistentDataTag = nbttagcompound.getCompound("PublicBukkitValues");
|
|
|
|
+ if (persistentDataTag != null) {
|
|
|
|
+ this.persistentDataContainer.putAll(persistentDataTag);
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
public NBTTagCompound save(NBTTagCompound nbttagcompound) {
|
2019-12-10 23:00:00 +01:00
|
|
|
@@ -54,6 +71,11 @@
|
2019-04-25 06:36:46 +02:00
|
|
|
nbttagcompound.setInt("x", this.position.getX());
|
|
|
|
nbttagcompound.setInt("y", this.position.getY());
|
|
|
|
nbttagcompound.setInt("z", this.position.getZ());
|
|
|
|
+ // CraftBukkit start - store container
|
2019-07-03 02:17:50 +02:00
|
|
|
+ if (this.persistentDataContainer != null && !this.persistentDataContainer.isEmpty()) {
|
2019-04-25 06:36:46 +02:00
|
|
|
+ nbttagcompound.set("PublicBukkitValues", this.persistentDataContainer.toTagCompound());
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
return nbttagcompound;
|
2018-07-15 02:00:00 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-10 23:00:00 +01:00
|
|
|
@@ -169,4 +191,13 @@
|
2019-05-14 02:00:00 +02:00
|
|
|
}, this::getPosition});
|
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // CraftBukkit start - add method
|
|
|
|
+ public InventoryHolder getOwner() {
|
2015-03-22 20:45:26 +01:00
|
|
|
+ if (world == null) return null;
|
2014-11-25 22:32:16 +01:00
|
|
|
+ org.bukkit.block.BlockState state = world.getWorld().getBlockAt(position.getX(), position.getY(), position.getZ()).getState();
|
|
|
|
+ if (state instanceof InventoryHolder) return (InventoryHolder) state;
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|