2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 4 Jul 2018 01:40:13 -0400
|
|
|
|
Subject: [PATCH] Add MinecraftKey Information to Objects
|
|
|
|
|
|
|
|
Stores the reference to the objects respective MinecraftKey
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperCommand.java b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2021-06-11 20:33:36 +02:00
|
|
|
index bee2fa2bfbb61209381f24ed6508d3d1c73a344a..1fa190e098079522e0fe3593fa261c1b7ad4e24b 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperCommand.java
|
2021-06-11 20:33:36 +02:00
|
|
|
@@ -207,7 +207,7 @@ public class PaperCommand extends Command {
|
|
|
|
ServerChunkCache chunkProviderServer = world.getChunkSource();
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-11 20:33:36 +02:00
|
|
|
world.getAllEntities().forEach(e -> {
|
2021-06-11 14:02:28 +02:00
|
|
|
- ResourceLocation key = new ResourceLocation(""); // TODO: update in next patch
|
|
|
|
+ ResourceLocation key = e.getMinecraftKey();
|
|
|
|
|
|
|
|
MutablePair<Integer, Map<ChunkPos, Integer>> info = list.computeIfAbsent(key, k -> MutablePair.of(0, Maps.newHashMap()));
|
2021-06-11 20:33:36 +02:00
|
|
|
ChunkPos chunk = e.chunkPosition();
|
2021-11-23 11:51:25 +01:00
|
|
|
diff --git a/src/main/java/io/papermc/paper/util/KeyedObject.java b/src/main/java/io/papermc/paper/util/KeyedObject.java
|
2021-06-11 14:02:28 +02:00
|
|
|
new file mode 100644
|
2021-11-23 11:51:25 +01:00
|
|
|
index 0000000000000000000000000000000000000000..9f0c7fd903f085e70db1785fb8bcdb5456e6ca51
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
2021-11-23 11:51:25 +01:00
|
|
|
+++ b/src/main/java/io/papermc/paper/util/KeyedObject.java
|
|
|
|
@@ -0,0 +1,11 @@
|
|
|
|
+package io.papermc.paper.util;
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+import net.minecraft.resources.ResourceLocation;
|
|
|
|
+
|
|
|
|
+public interface KeyedObject {
|
|
|
|
+ ResourceLocation getMinecraftKey();
|
|
|
|
+ default String getMinecraftKeyString() {
|
|
|
|
+ ResourceLocation key = getMinecraftKey();
|
|
|
|
+ return key != null ? key.toString() : null;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
2022-03-01 06:43:03 +01:00
|
|
|
index e778f4da8b3e33b6fc9bbe21a7cbc1f185130e69..e191f080e781473481712e27763ab80c04fe60ab 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -148,7 +148,7 @@ import org.bukkit.event.player.PlayerTeleportEvent;
|
2021-06-11 14:02:28 +02:00
|
|
|
import org.bukkit.plugin.PluginManager;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2021-06-11 17:52:05 +02:00
|
|
|
-public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
2021-11-23 11:51:25 +01:00
|
|
|
+public abstract class Entity implements Nameable, EntityAccess, CommandSource, io.papermc.paper.util.KeyedObject { // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
private static final int CURRENT_LEVEL = 2;
|
2022-03-01 06:43:03 +01:00
|
|
|
@@ -1968,12 +1968,32 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
2021-06-11 14:02:28 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ private ResourceLocation entityKey;
|
|
|
|
+ private String entityKeyString;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ResourceLocation getMinecraftKey() {
|
|
|
|
+ if (entityKey == null) {
|
|
|
|
+ this.entityKey = EntityType.getKey(this.getType());
|
|
|
|
+ this.entityKeyString = this.entityKey != null ? this.entityKey.toString() : null;
|
|
|
|
+ }
|
|
|
|
+ return entityKey;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String getMinecraftKeyString() {
|
|
|
|
+ getMinecraftKey(); // Try to load if it doesn't exists. see: https://github.com/PaperMC/Paper/issues/1280
|
|
|
|
+ return entityKeyString;
|
|
|
|
+ }
|
2021-11-23 11:51:25 +01:00
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
@Nullable
|
|
|
|
public final String getEncodeId() {
|
|
|
|
EntityType<?> entitytypes = this.getType();
|
|
|
|
ResourceLocation minecraftkey = EntityType.getKey(entitytypes);
|
|
|
|
|
|
|
|
- return entitytypes.canSerialize() && minecraftkey != null ? minecraftkey.toString() : null;
|
2021-06-16 19:48:25 +02:00
|
|
|
+ return entitytypes != null && entitytypes.canSerialize() ? getMinecraftKeyString() : null;
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2021-06-11 17:52:05 +02:00
|
|
|
protected abstract void readAdditionalSaveData(CompoundTag nbt);
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/entity/BlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/BlockEntity.java
|
2022-03-01 06:43:03 +01:00
|
|
|
index dec38e58e30c84887e9d29436c0f76c70c0a627d..53a8e9a63b2ea5f698acbd80b2eca9e3e3cfedb8 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/entity/BlockEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/entity/BlockEntity.java
|
2021-11-23 11:51:25 +01:00
|
|
|
@@ -23,7 +23,7 @@ import org.bukkit.inventory.InventoryHolder;
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
import org.spigotmc.CustomTimingsHandler; // Spigot
|
|
|
|
|
|
|
|
-public abstract class BlockEntity {
|
2021-11-23 11:51:25 +01:00
|
|
|
+public abstract class BlockEntity implements io.papermc.paper.util.KeyedObject { // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
public CustomTimingsHandler tickTimer = org.bukkit.craftbukkit.SpigotTimings.getTileEntityTimings(this); // Spigot
|
|
|
|
// CraftBukkit start - data containers
|
2021-11-23 11:51:25 +01:00
|
|
|
@@ -48,6 +48,26 @@ public abstract class BlockEntity {
|
|
|
|
return new BlockPos(nbt.getInt("x"), nbt.getInt("y"), nbt.getInt("z"));
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ private String tileEntityKeyString = null;
|
|
|
|
+ private ResourceLocation tileEntityKey = null;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ResourceLocation getMinecraftKey() {
|
|
|
|
+ if (tileEntityKey == null) {
|
2021-06-12 18:56:13 +02:00
|
|
|
+ tileEntityKey = BlockEntityType.getKey(this.type);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ tileEntityKeyString = tileEntityKey != null ? tileEntityKey.toString() : null;
|
|
|
|
+ }
|
|
|
|
+ return tileEntityKey;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String getMinecraftKeyString() {
|
|
|
|
+ getMinecraftKey(); // Try to load if it doesn't exists.
|
|
|
|
+ return tileEntityKeyString;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Nullable
|
|
|
|
public Level getLevel() {
|
|
|
|
return this.level;
|