2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Connor Linfoot <connorlinfoot@me.com>
|
|
|
|
Date: Sun, 16 May 2021 15:07:34 +0100
|
|
|
|
Subject: [PATCH] Add basic Datapack API
|
|
|
|
|
2024-09-22 23:28:45 +02:00
|
|
|
Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/datapack/Datapack.java b/src/main/java/io/papermc/paper/datapack/Datapack.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..95039ec90f81993cb2e36f82b7d13e9e7a30220e
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/datapack/Datapack.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,99 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package io.papermc.paper.datapack;
|
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+import java.util.Set;
|
|
|
|
+import net.kyori.adventure.text.Component;
|
|
|
|
+import org.bukkit.FeatureFlag;
|
|
|
|
+import org.jetbrains.annotations.Contract;
|
|
|
|
+import org.jetbrains.annotations.Unmodifiable;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+/**
|
|
|
|
+ * This is a snapshot of a datapack on the server. It
|
|
|
|
+ * won't be updated as datapacks are updated.
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2021-06-11 14:02:28 +02:00
|
|
|
+public interface Datapack {
|
|
|
|
+
|
|
|
|
+ /**
|
2024-09-22 23:28:45 +02:00
|
|
|
+ * Gets the name/id of this datapack.
|
|
|
|
+ *
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @return the name of the pack
|
|
|
|
+ */
|
2024-09-22 23:28:45 +02:00
|
|
|
+ @Contract(pure = true)
|
2024-09-30 20:44:36 +02:00
|
|
|
+ String getName();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
2024-09-22 23:28:45 +02:00
|
|
|
+ * Gets the title component of this datapack.
|
|
|
|
+ *
|
|
|
|
+ * @return the title
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ Component getTitle();
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the description component of this datapack.
|
|
|
|
+ *
|
|
|
|
+ * @return the description
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ Component getDescription();
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if this datapack is required to be enabled.
|
|
|
|
+ *
|
|
|
|
+ * @return true if the pack is required
|
|
|
|
+ */
|
|
|
|
+ boolean isRequired();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the compatibility status of this pack.
|
|
|
|
+ *
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @return the compatibility of the pack
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ Compatibility getCompatibility();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
2024-09-22 23:28:45 +02:00
|
|
|
+ * Gets the set of required features for this datapack.
|
|
|
|
+ *
|
|
|
|
+ * @return the set of required features
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ @Unmodifiable Set<FeatureFlag> getRequiredFeatures();
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the enabled state of this pack.
|
|
|
|
+ *
|
|
|
|
+ * @return whether the pack is currently enabled
|
2021-06-11 14:02:28 +02:00
|
|
|
+ */
|
|
|
|
+ boolean isEnabled();
|
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+ /**
|
|
|
|
+ * Changes the enabled state of this pack. Will
|
|
|
|
+ * cause a reload of resources ({@code /minecraft:reload}) if
|
|
|
|
+ * any change happens.
|
|
|
|
+ *
|
|
|
|
+ * @param enabled true to enable, false to disable
|
|
|
|
+ * @apiNote This method may be deprecated in the future as setters on a "snapshot" type are undesirable.
|
|
|
|
+ */
|
2021-06-11 14:02:28 +02:00
|
|
|
+ void setEnabled(boolean enabled);
|
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+ /**
|
|
|
|
+ * Gets the source for this datapack.
|
|
|
|
+ *
|
|
|
|
+ * @return the pack source
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ DatapackSource getSource();
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Computes the component vanilla Minecraft uses
|
|
|
|
+ * to display this datapack. Includes the {@link #getSource()},
|
|
|
|
+ * {@link #getDescription()}, {@link #getName()}, and the enabled state.
|
|
|
|
+ *
|
|
|
|
+ * @return a new component
|
|
|
|
+ */
|
|
|
|
+ @Contract(pure = true, value = "-> new")
|
2024-09-30 20:44:36 +02:00
|
|
|
+ Component computeDisplayName();
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
2021-06-11 14:02:28 +02:00
|
|
|
+ enum Compatibility {
|
|
|
|
+ TOO_OLD,
|
|
|
|
+ TOO_NEW,
|
|
|
|
+ COMPATIBLE,
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/datapack/DatapackManager.java b/src/main/java/io/papermc/paper/datapack/DatapackManager.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..4f758a781612bb14c8f2ee41b2b6f40a074e6359
|
2021-06-11 14:02:28 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/datapack/DatapackManager.java
|
2024-09-22 23:28:45 +02:00
|
|
|
@@ -0,0 +1,43 @@
|
2021-06-11 14:02:28 +02:00
|
|
|
+package io.papermc.paper.datapack;
|
|
|
|
+
|
|
|
|
+import java.util.Collection;
|
2024-09-22 23:28:45 +02:00
|
|
|
+import org.jetbrains.annotations.Unmodifiable;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
|
|
|
+import org.jspecify.annotations.Nullable;
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2021-06-11 14:02:28 +02:00
|
|
|
+public interface DatapackManager {
|
|
|
|
+
|
|
|
|
+ /**
|
2024-09-22 23:28:45 +02:00
|
|
|
+ * Triggers a refresh of the available and selected datapacks. This
|
|
|
|
+ * can find new datapacks, remove old ones, and update the metadata for
|
|
|
|
+ * existing datapacks. Some of these changes will only take effect
|
|
|
|
+ * after the next {@link org.bukkit.Server#reloadData()} or {@code /minecraft:reload}.
|
|
|
|
+ */
|
|
|
|
+ void refreshPacks();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets a datapack by name. May require calling {@link #refreshPacks()} before
|
|
|
|
+ * to get the latest pack information.
|
|
|
|
+ *
|
|
|
|
+ * @param name the name/id of the datapack
|
|
|
|
+ * @return the datapack, or null if not found
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ @Nullable Datapack getPack(String name);
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the available datapacks. May require calling {@link #refreshPacks()} before
|
|
|
|
+ * to get the latest pack information.
|
|
|
|
+ *
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @return all the packs known to the server
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ @Unmodifiable Collection<Datapack> getPacks();
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
|
|
|
+ /**
|
2024-09-22 23:28:45 +02:00
|
|
|
+ * Gets the enabled datapacks. May require calling {@link #refreshPacks()} before
|
|
|
|
+ * to get the latest pack information.
|
|
|
|
+ *
|
2021-06-11 14:02:28 +02:00
|
|
|
+ * @return all the packs which are currently enabled
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ @Unmodifiable Collection<Datapack> getEnabledPacks();
|
2024-09-22 23:28:45 +02:00
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/datapack/DatapackSource.java b/src/main/java/io/papermc/paper/datapack/DatapackSource.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..b9b81cd974c2df501fef55bd8d9b78406c073038
|
2024-09-22 23:28:45 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/datapack/DatapackSource.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,20 @@
|
2024-09-22 23:28:45 +02:00
|
|
|
+package io.papermc.paper.datapack;
|
|
|
|
+
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+/**
|
|
|
|
+ * Source of a datapack.
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2024-09-22 23:28:45 +02:00
|
|
|
+public sealed interface DatapackSource permits DatapackSourceImpl {
|
2021-06-11 14:02:28 +02:00
|
|
|
+
|
2024-09-22 23:28:45 +02:00
|
|
|
+ DatapackSource DEFAULT = create("default");
|
|
|
|
+ DatapackSource BUILT_IN = create("built_in");
|
|
|
|
+ DatapackSource FEATURE = create("feature");
|
|
|
|
+ DatapackSource WORLD = create("world");
|
|
|
|
+ DatapackSource SERVER = create("server");
|
|
|
|
+
|
|
|
|
+ private static DatapackSource create(final String name) {
|
|
|
|
+ return new DatapackSourceImpl(name);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/datapack/DatapackSourceImpl.java b/src/main/java/io/papermc/paper/datapack/DatapackSourceImpl.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..0dfd101f01d16cc38f21831ca873633453dc6c9e
|
2024-09-22 23:28:45 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/datapack/DatapackSourceImpl.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,14 @@
|
2024-09-22 23:28:45 +02:00
|
|
|
+package io.papermc.paper.datapack;
|
|
|
|
+
|
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2024-09-22 23:28:45 +02:00
|
|
|
+
|
|
|
|
+@ApiStatus.Internal
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2024-09-22 23:28:45 +02:00
|
|
|
+record DatapackSourceImpl(String name) implements DatapackSource {
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return this.name;
|
|
|
|
+ }
|
2021-06-11 14:02:28 +02:00
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
2024-11-09 17:01:35 +01:00
|
|
|
index 885c83ba1d94460cb72b177c2cff1afdaa8696bc..f81250ff8fd0fe8caa780719624b8d9c731fe188 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
|
2024-06-13 17:45:43 +02:00
|
|
|
@@ -328,9 +328,11 @@ public final class Bukkit {
|
2023-06-06 11:09:19 +02:00
|
|
|
/**
|
|
|
|
* Get the DataPack Manager.
|
|
|
|
*
|
|
|
|
+ * @deprecated use {@link #getDatapackManager()}
|
|
|
|
* @return the manager
|
|
|
|
*/
|
|
|
|
@NotNull
|
2024-09-07 22:35:11 +02:00
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20")
|
2023-06-06 11:09:19 +02:00
|
|
|
public static DataPackManager getDataPackManager() {
|
|
|
|
return server.getDataPackManager();
|
|
|
|
}
|
2024-11-09 17:01:35 +01:00
|
|
|
@@ -2641,6 +2643,14 @@ public final class Bukkit {
|
2021-06-11 14:02:28 +02:00
|
|
|
public static com.destroystokyo.paper.entity.ai.MobGoals getMobGoals() {
|
|
|
|
return server.getMobGoals();
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @return the datapack manager
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public static io.papermc.paper.datapack.DatapackManager getDatapackManager() {
|
|
|
|
+ return server.getDatapackManager();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
@NotNull
|
2024-09-07 22:35:11 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/Material.java b/src/main/java/org/bukkit/Material.java
|
2024-10-22 18:23:19 +02:00
|
|
|
index 39277b3113a3bd0736330773e3c5c1f747773b55..c18fb0c9a6635a67041ba7499e8b2f97ce9a76d4 100644
|
2024-09-07 22:35:11 +02:00
|
|
|
--- a/src/main/java/org/bukkit/Material.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Material.java
|
2024-10-22 18:23:19 +02:00
|
|
|
@@ -5683,6 +5683,7 @@ public enum Material implements Keyed, Translatable, net.kyori.adventure.transla
|
2024-09-07 22:35:11 +02:00
|
|
|
* @param world the world to check
|
|
|
|
* @return true if this material can be used in this World.
|
|
|
|
*/
|
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20") // Paper
|
|
|
|
public boolean isEnabledByFeature(@NotNull World world) {
|
|
|
|
if (isItem()) {
|
|
|
|
return Bukkit.getDataPackManager().isEnabledByFeature(asItemType(), world);
|
2021-06-11 14:02:28 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2024-11-09 17:01:35 +01:00
|
|
|
index a85281b4099fe26b8e27b76d3dac6ee917c48c75..5b0aee3b7956d07a45eefa24e57dac674882f8ff 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
|
2024-06-13 17:45:43 +02:00
|
|
|
@@ -267,9 +267,11 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2023-06-06 11:09:19 +02:00
|
|
|
/**
|
|
|
|
* Get the DataPack Manager.
|
|
|
|
*
|
|
|
|
+ * @deprecated use {@link #getDatapackManager()}
|
|
|
|
* @return the manager
|
|
|
|
*/
|
|
|
|
@NotNull
|
2024-09-07 22:35:11 +02:00
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20") // Paper
|
2023-06-06 11:09:19 +02:00
|
|
|
public DataPackManager getDataPackManager();
|
|
|
|
|
|
|
|
/**
|
2024-11-09 17:01:35 +01:00
|
|
|
@@ -2302,5 +2304,11 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2021-06-11 14:02:28 +02:00
|
|
|
*/
|
|
|
|
@NotNull
|
|
|
|
com.destroystokyo.paper.entity.ai.MobGoals getMobGoals();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @return the datapack manager
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ io.papermc.paper.datapack.DatapackManager getDatapackManager();
|
|
|
|
// Paper end
|
|
|
|
}
|
2024-09-07 22:35:11 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/entity/EntityType.java b/src/main/java/org/bukkit/entity/EntityType.java
|
2024-10-31 23:44:34 +01:00
|
|
|
index a5e5c252405a7b940afbb6715abcda7ec9007dd3..1f241e74c256eb3e824a029798f623ad9d38efe2 100644
|
2024-09-07 22:35:11 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/EntityType.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/EntityType.java
|
2024-10-31 23:44:34 +01:00
|
|
|
@@ -496,6 +496,7 @@ public enum EntityType implements Keyed, Translatable, net.kyori.adventure.trans
|
2024-09-07 22:35:11 +02:00
|
|
|
* @param world the world to check
|
|
|
|
* @return true if this EntityType can be used to spawn an Entity for this World.
|
|
|
|
*/
|
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20") // Paper
|
|
|
|
public boolean isEnabledByFeature(@NotNull World world) {
|
|
|
|
return Bukkit.getDataPackManager().isEnabledByFeature(this, world);
|
|
|
|
}
|
2023-06-06 11:09:19 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/packs/DataPack.java b/src/main/java/org/bukkit/packs/DataPack.java
|
2024-09-07 22:35:11 +02:00
|
|
|
index ea03c51d51e015e69d3aaa795547033ceabff9e0..f51d59e6369c76e333fd9e58e711c2b6f245882d 100644
|
2023-06-06 11:09:19 +02:00
|
|
|
--- a/src/main/java/org/bukkit/packs/DataPack.java
|
|
|
|
+++ b/src/main/java/org/bukkit/packs/DataPack.java
|
2024-06-13 17:45:43 +02:00
|
|
|
@@ -9,7 +9,9 @@ import org.jetbrains.annotations.NotNull;
|
2023-06-06 11:09:19 +02:00
|
|
|
* Represents a data pack.
|
2023-09-29 02:28:26 +02:00
|
|
|
*
|
|
|
|
* @see <a href="https://minecraft.wiki/w/Data_pack">Minecraft wiki</a>
|
2023-06-06 11:09:19 +02:00
|
|
|
+ * @deprecated use {@link io.papermc.paper.datapack.Datapack}
|
|
|
|
*/
|
2024-09-07 22:35:11 +02:00
|
|
|
+@Deprecated(forRemoval = true, since = "1.20") // Paper
|
2023-06-06 11:09:19 +02:00
|
|
|
public interface DataPack extends Keyed {
|
|
|
|
|
|
|
|
/**
|
|
|
|
diff --git a/src/main/java/org/bukkit/packs/DataPackManager.java b/src/main/java/org/bukkit/packs/DataPackManager.java
|
2024-09-07 22:35:11 +02:00
|
|
|
index aee6e828c6fac9b010356af1239a58b4579c1773..1b850e76a885f0da653d4b48db72e5f85ae72805 100644
|
2023-06-06 11:09:19 +02:00
|
|
|
--- a/src/main/java/org/bukkit/packs/DataPackManager.java
|
|
|
|
+++ b/src/main/java/org/bukkit/packs/DataPackManager.java
|
2024-06-13 17:45:43 +02:00
|
|
|
@@ -13,7 +13,9 @@ import org.jetbrains.annotations.Nullable;
|
2023-06-06 11:09:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Manager of data packs.
|
|
|
|
+ * @deprecated use {@link io.papermc.paper.datapack.DatapackManager}
|
|
|
|
*/
|
2024-09-07 22:35:11 +02:00
|
|
|
+@Deprecated(forRemoval = true, since = "1.20") // Paper
|
2023-06-06 11:09:19 +02:00
|
|
|
public interface DataPackManager {
|
|
|
|
|
|
|
|
/**
|