2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Wed, 6 Jan 2021 00:34:10 -0800
|
|
|
|
Subject: [PATCH] Implement Keyed on World
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
2022-02-12 14:20:33 +01:00
|
|
|
index 9549cfeadac8a45d27917ecdf05644cfff23eb0a..2f6ebed7ae9305f1cb4502b9727b8eac97f4209c 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
2022-02-12 14:20:33 +01:00
|
|
|
@@ -791,6 +791,18 @@ public final class Bukkit {
|
2021-06-11 14:02:28 +02:00
|
|
|
public static World getWorld(@NotNull UUID uid) {
|
|
|
|
return server.getWorld(uid);
|
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Gets the world from the given NamespacedKey
|
|
|
|
+ *
|
|
|
|
+ * @param worldKey the NamespacedKey of the world to retrieve
|
|
|
|
+ * @return a world with the given NamespacedKey, or null if none exists
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public static World getWorld(@NotNull NamespacedKey worldKey) {
|
|
|
|
+ return server.getWorld(worldKey);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the map from the given item ID.
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2022-02-12 14:20:33 +01:00
|
|
|
index 50fbcb8867b0a7680ff491f7cf9af3069ba064c3..f19aa510dfc4c5716d80235acfa593eea03c2110 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
2022-02-12 14:20:33 +01:00
|
|
|
@@ -673,6 +673,17 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2021-06-11 14:02:28 +02:00
|
|
|
@Nullable
|
|
|
|
public World getWorld(@NotNull UUID uid);
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Gets the world from the given NamespacedKey
|
|
|
|
+ *
|
|
|
|
+ * @param worldKey the NamespacedKey of the world to retrieve
|
|
|
|
+ * @return a world with the given NamespacedKey, or null if none exists
|
|
|
|
+ */
|
|
|
|
+ @Nullable
|
|
|
|
+ public World getWorld(@NotNull NamespacedKey worldKey);
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Gets the map from the given item ID.
|
|
|
|
*
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
2022-02-12 14:20:33 +01:00
|
|
|
index 325c86a945b2ee365618f5c63cf4a48e47177bec..6ae40c6480e0db948504cd15d7047dd676478e30 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
|
|
+++ b/src/main/java/org/bukkit/World.java
|
2022-02-12 14:20:33 +01:00
|
|
|
@@ -42,7 +42,7 @@ import org.jetbrains.annotations.Nullable;
|
2021-06-11 14:02:28 +02:00
|
|
|
/**
|
|
|
|
* Represents a world, which may contain entities, chunks and blocks
|
|
|
|
*/
|
2021-08-25 09:59:26 +02:00
|
|
|
-public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient, Metadatable, net.kyori.adventure.audience.ForwardingAudience { // Paper
|
|
|
|
+public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient, Metadatable, net.kyori.adventure.audience.ForwardingAudience, Keyed { // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
// Paper start
|
|
|
|
/**
|
2022-02-12 14:20:33 +01:00
|
|
|
@@ -1526,6 +1526,15 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
@NotNull
|
|
|
|
java.util.concurrent.CompletableFuture<Chunk> getChunkAtAsync(int x, int z, boolean gen, boolean urgent);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the world's key
|
|
|
|
+ *
|
|
|
|
+ * @return the world's key
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ @Override
|
|
|
|
+ NamespacedKey getKey();
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
diff --git a/src/main/java/org/bukkit/WorldCreator.java b/src/main/java/org/bukkit/WorldCreator.java
|
2021-08-25 09:59:26 +02:00
|
|
|
index 60bed20c2845f9dc15ecbed81157a63d75a4c4f4..14986911b4d0099ea2c91ab2196a771b7dee4c50 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/WorldCreator.java
|
|
|
|
+++ b/src/main/java/org/bukkit/WorldCreator.java
|
2021-08-25 09:59:26 +02:00
|
|
|
@@ -12,6 +12,7 @@ import org.jetbrains.annotations.Nullable;
|
2021-06-11 14:02:28 +02:00
|
|
|
* Represents various types of options that may be used to create a world.
|
|
|
|
*/
|
|
|
|
public class WorldCreator {
|
|
|
|
+ private final NamespacedKey key; // Paper
|
|
|
|
private final String name;
|
|
|
|
private long seed;
|
|
|
|
private World.Environment environment = World.Environment.NORMAL;
|
2021-08-25 09:59:26 +02:00
|
|
|
@@ -28,13 +29,67 @@ public class WorldCreator {
|
2021-06-11 14:02:28 +02:00
|
|
|
* @param name Name of the world that will be created
|
|
|
|
*/
|
|
|
|
public WorldCreator(@NotNull String name) {
|
|
|
|
- if (name == null) {
|
|
|
|
- throw new IllegalArgumentException("World name cannot be null");
|
|
|
|
- }
|
|
|
|
+ // Paper start
|
|
|
|
+ this(name, NamespacedKey.minecraft(name.toLowerCase(java.util.Locale.ENGLISH).replace(" ", "_")));
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- this.name = name;
|
|
|
|
+ /**
|
|
|
|
+ * Creates an empty WorldCreator for the given world name and key
|
|
|
|
+ *
|
|
|
|
+ * @param levelName LevelName of the world that will be created
|
|
|
|
+ * @param worldKey NamespacedKey of the world that will be created
|
|
|
|
+ */
|
|
|
|
+ public WorldCreator(@NotNull String levelName, @NotNull NamespacedKey worldKey) {
|
|
|
|
+ if (levelName == null || worldKey == null) {
|
|
|
|
+ throw new IllegalArgumentException("World name and key cannot be null");
|
|
|
|
+ }
|
|
|
|
+ this.name = levelName;
|
|
|
|
this.seed = (new Random()).nextLong();
|
|
|
|
+ this.key = worldKey;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates an empty WorldCreator for the given key.
|
|
|
|
+ * LevelName will be the Key part of the NamespacedKey.
|
|
|
|
+ *
|
|
|
|
+ * @param worldKey NamespacedKey of the world that will be created
|
|
|
|
+ */
|
|
|
|
+ public WorldCreator(@NotNull NamespacedKey worldKey) {
|
|
|
|
+ this(worldKey.getKey(), worldKey);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the key for this WorldCreator
|
|
|
|
+ *
|
|
|
|
+ * @return the key
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public NamespacedKey key() {
|
|
|
|
+ return key;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates an empty WorldCreator for the given world name and key
|
|
|
|
+ *
|
|
|
|
+ * @param levelName LevelName of the world that will be created
|
|
|
|
+ * @param worldKey NamespacedKey of the world that will be created
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public static WorldCreator ofNameAndKey(@NotNull String levelName, @NotNull NamespacedKey worldKey) {
|
|
|
|
+ return new WorldCreator(levelName, worldKey);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates an empty WorldCreator for the given key.
|
|
|
|
+ * LevelName will be the Key part of the NamespacedKey.
|
|
|
|
+ *
|
|
|
|
+ * @param worldKey NamespacedKey of the world that will be created
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public static WorldCreator ofKey(@NotNull NamespacedKey worldKey) {
|
|
|
|
+ return new WorldCreator(worldKey);
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies the options from the specified world
|