aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0562-Expand-world-key-API.patch
diff options
context:
space:
mode:
authorSpottedleaf <[email protected]>2023-09-22 15:33:14 -0700
committerSpottedleaf <[email protected]>2023-09-22 15:33:14 -0700
commitea01aa335a46dd38e8f240f56ed7f5a6a3f7f625 (patch)
tree7d41c2c843579dcf75db5faf28b602cc9a313cb9 /patches/server/0562-Expand-world-key-API.patch
parente88856dd75de742fa10099af4fe06a07500b34fd (diff)
downloadPaper-ea01aa335a46dd38e8f240f56ed7f5a6a3f7f625.tar.gz
Paper-ea01aa335a46dd38e8f240f56ed7f5a6a3f7f625.zip
Add some patches, fix compile
Diffstat (limited to 'patches/server/0562-Expand-world-key-API.patch')
-rw-r--r--patches/server/0562-Expand-world-key-API.patch84
1 files changed, 84 insertions, 0 deletions
diff --git a/patches/server/0562-Expand-world-key-API.patch b/patches/server/0562-Expand-world-key-API.patch
new file mode 100644
index 0000000000..cb8ec89bcb
--- /dev/null
+++ b/patches/server/0562-Expand-world-key-API.patch
@@ -0,0 +1,84 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Wed, 6 Jan 2021 00:34:04 -0800
+Subject: [PATCH] Expand world key API
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/CraftRegionAccessor.java b/src/main/java/org/bukkit/craftbukkit/CraftRegionAccessor.java
+index b5981001d8ad4d6c79b965be9a446352971b0d29..0624ba7f1f5b352a5730b6b4736b24998af0ad2a 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftRegionAccessor.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftRegionAccessor.java
+@@ -986,5 +986,10 @@ public abstract class CraftRegionAccessor implements RegionAccessor {
+ public io.papermc.paper.world.MoonPhase getMoonPhase() {
+ return io.papermc.paper.world.MoonPhase.getPhase(this.getHandle().dayTime() / 24000L);
+ }
++
++ @Override
++ public org.bukkit.NamespacedKey getKey() {
++ return org.bukkit.craftbukkit.util.CraftNamespacedKey.fromMinecraft(this.getHandle().getLevel().dimension().location());
++ }
+ // Paper end
+ }
+diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+index aa16f21e6f47c3730294f1bec2c86ee8e3c028ba..cca320f018e0a59c55af09f7707f9121ad99a0ac 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+@@ -1140,9 +1140,15 @@ public final class CraftServer implements Server {
+ File folder = new File(this.getWorldContainer(), name);
+ World world = this.getWorld(name);
+
+- if (world != null) {
+- return world;
++ // Paper start
++ World worldByKey = this.getWorld(creator.key());
++ if (world != null || worldByKey != null) {
++ if (world == worldByKey) {
++ return world;
++ }
++ throw new IllegalArgumentException("Cannot create a world with key " + creator.key() + " and name " + name + " one (or both) already match a world that exists");
+ }
++ // Paper end
+
+ if (folder.exists()) {
+ Preconditions.checkArgument(folder.isDirectory(), "File (%s) exists and isn't a folder", name);
+@@ -1229,7 +1235,7 @@ public final class CraftServer implements Server {
+ } else if (name.equals(levelName + "_the_end")) {
+ worldKey = net.minecraft.world.level.Level.END;
+ } else {
+- worldKey = ResourceKey.create(Registries.DIMENSION, new ResourceLocation(name.toLowerCase(java.util.Locale.ENGLISH)));
++ worldKey = ResourceKey.create(Registries.DIMENSION, new net.minecraft.resources.ResourceLocation(creator.key().getNamespace().toLowerCase(java.util.Locale.ENGLISH), creator.key().getKey().toLowerCase(java.util.Locale.ENGLISH))); // Paper
+ }
+
+ ServerLevel internal = (ServerLevel) new ServerLevel(this.console, console.executor, worldSession, worlddata, worldKey, worlddimension, this.getServer().progressListenerFactory.create(11),
+@@ -1321,6 +1327,15 @@ public final class CraftServer implements Server {
+ return null;
+ }
+
++ // Paper start
++ @Override
++ public World getWorld(NamespacedKey worldKey) {
++ ServerLevel worldServer = console.getLevel(ResourceKey.create(net.minecraft.core.registries.Registries.DIMENSION, CraftNamespacedKey.toMinecraft(worldKey)));
++ if (worldServer == null) return null;
++ return worldServer.getWorld();
++ }
++ // Paper end
++
+ public void addWorld(World world) {
+ // Check if a World already exists with the UID.
+ if (this.getWorld(world.getUID()) != null) {
+diff --git a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
+index 0fb0c8238be1e199220ef62576547ea6c9484a9c..1f21a5c60c5472b1694d379326d391c0866456cc 100644
+--- a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
++++ b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
+@@ -524,6 +524,11 @@ public final class CraftMagicNumbers implements UnsafeValues {
+ public int nextEntityId() {
+ return net.minecraft.world.entity.Entity.nextEntityId();
+ }
++
++ @Override
++ public String getMainLevelName() {
++ return ((net.minecraft.server.dedicated.DedicatedServer) net.minecraft.server.MinecraftServer.getServer()).getProperties().levelName;
++ }
+ // Paper end
+
+ /**