mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-25 02:17:35 +01:00
RegistryValue API
This commit is contained in:
parent
c17ef64339
commit
2cc6afaf36
222
patches/api/0502-RegistryValue-API.patch
Normal file
222
patches/api/0502-RegistryValue-API.patch
Normal file
@ -0,0 +1,222 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
Date: Sun, 24 Nov 2024 02:38:39 -0800
|
||||
Subject: [PATCH] RegistryValue API
|
||||
|
||||
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/DirectRegistryValue.java b/src/main/java/io/papermc/paper/registry/DirectRegistryValue.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0ec719e90043167af5156f4c8ec2e7d823a87939
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/DirectRegistryValue.java
|
||||
@@ -0,0 +1,10 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+record DirectRegistryValue<T>(T value) implements RegistryValue.Direct<T> {
|
||||
+
|
||||
+ DirectRegistryValue {
|
||||
+ if (!RegistryUtilProvider.INSTANCE.orElseThrow().isValidForDirectHolder(value)) {
|
||||
+ throw new IllegalArgumentException("Value is not valid for direct holder");
|
||||
+ }
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/RegistryCreationLookup.java b/src/main/java/io/papermc/paper/registry/RegistryCreationLookup.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..332bc17c016d248f3ae3134e59a3c2b5338c6fb0
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/RegistryCreationLookup.java
|
||||
@@ -0,0 +1,38 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+import io.papermc.paper.registry.tag.Tag;
|
||||
+import io.papermc.paper.registry.tag.TagKey;
|
||||
+import org.bukkit.Keyed;
|
||||
+import org.jetbrains.annotations.ApiStatus;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+/**
|
||||
+ * A lookup for {@link io.papermc.paper.registry.event.RegistryEvent}s to get
|
||||
+ * or create tags and registry values.
|
||||
+ */
|
||||
+@ApiStatus.Experimental
|
||||
+@NullMarked
|
||||
+@ApiStatus.NonExtendable
|
||||
+public interface RegistryCreationLookup {
|
||||
+
|
||||
+ /**
|
||||
+ * Gets or creates a tag for the given tag key. This tag
|
||||
+ * is then required to be filled either from the built-in or
|
||||
+ * custom datapack.
|
||||
+ *
|
||||
+ * @param tagKey the tag key
|
||||
+ * @param <V> the tag value type
|
||||
+ * @return the tag
|
||||
+ */
|
||||
+ <V extends Keyed> Tag<V> getOrCreateTag(TagKey<V> tagKey);
|
||||
+
|
||||
+ /**
|
||||
+ * Gets or creates a registry value for the given typed key. If
|
||||
+ * it's created, it's required to be filled during some later event.
|
||||
+ *
|
||||
+ * @param typedKey the typed key
|
||||
+ * @param <V> the value type
|
||||
+ * @return the registry value
|
||||
+ */
|
||||
+ <V> RegistryValue.Reference<V> getOrCreateValue(TypedKey<V> typedKey);
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/RegistryUtilProvider.java b/src/main/java/io/papermc/paper/registry/RegistryUtilProvider.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..5adf17f309b4a58a9ae77284ef3f3e3e190b7dc3
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/RegistryUtilProvider.java
|
||||
@@ -0,0 +1,14 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+import java.util.Optional;
|
||||
+import java.util.ServiceLoader;
|
||||
+import org.jetbrains.annotations.ApiStatus;
|
||||
+
|
||||
+@ApiStatus.Internal
|
||||
+interface RegistryUtilProvider {
|
||||
+
|
||||
+ Optional<RegistryUtilProvider> INSTANCE = ServiceLoader.load(RegistryUtilProvider.class).findFirst();
|
||||
+
|
||||
+
|
||||
+ <V> boolean isValidForDirectHolder(V value);
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/RegistryValue.java b/src/main/java/io/papermc/paper/registry/RegistryValue.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..6b7fb0a9b051589ee35859ca323faf3d765e32fb
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/RegistryValue.java
|
||||
@@ -0,0 +1,49 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+import org.jetbrains.annotations.ApiStatus;
|
||||
+import org.jetbrains.annotations.Contract;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+/**
|
||||
+ * A value associated with a registry. This wrapper
|
||||
+ * exists to represents values that might not be inside
|
||||
+ * a registry yet, but are needed to construct some other
|
||||
+ * objects in other registries.
|
||||
+ *
|
||||
+ * @param <T> the value type
|
||||
+ */
|
||||
+@ApiStatus.Experimental
|
||||
+@NullMarked
|
||||
+@ApiStatus.NonExtendable
|
||||
+public sealed interface RegistryValue<T> {
|
||||
+
|
||||
+ // TODO uncomment when direct holders are supported
|
||||
+ // /**
|
||||
+ // * Create a direct registry value. A direct registry value
|
||||
+ // * is a value that is anonymous (not registered in a registry).
|
||||
+ // *
|
||||
+ // * @param value the value
|
||||
+ // * @param <T> the value type
|
||||
+ // * @return the direct registry value
|
||||
+ // */
|
||||
+ // @Contract(value = "_ -> new", pure = true)
|
||||
+ // static <T> RegistryValue.Direct<T> direct(final T value) {
|
||||
+ // return new DirectRegistryValue<>(value);
|
||||
+ // }
|
||||
+
|
||||
+ @ApiStatus.Experimental
|
||||
+ @ApiStatus.NonExtendable
|
||||
+ non-sealed interface Reference<T> extends RegistryValue<T> {
|
||||
+
|
||||
+ @Contract(pure = true)
|
||||
+ TypedKey<T> key();
|
||||
+ }
|
||||
+
|
||||
+ @ApiStatus.Experimental
|
||||
+ @ApiStatus.NonExtendable
|
||||
+ sealed interface Direct<T> extends RegistryValue<T> permits DirectRegistryValue {
|
||||
+
|
||||
+ @Contract(pure = true)
|
||||
+ T value();
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEvent.java b/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEvent.java
|
||||
index 56468b311e40a6d1aa03c6d31328952b92e95027..0d18e09bd9d06dc83b53fa78e2c45710114dfdf8 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEvent.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEvent.java
|
||||
@@ -1,10 +1,8 @@
|
||||
package io.papermc.paper.registry.event;
|
||||
|
||||
import io.papermc.paper.registry.RegistryBuilder;
|
||||
+import io.papermc.paper.registry.RegistryCreationLookup;
|
||||
import io.papermc.paper.registry.TypedKey;
|
||||
-import io.papermc.paper.registry.tag.Tag;
|
||||
-import io.papermc.paper.registry.tag.TagKey;
|
||||
-import org.bukkit.Keyed;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jspecify.annotations.NullMarked;
|
||||
|
||||
@@ -19,7 +17,7 @@ import org.jspecify.annotations.NullMarked;
|
||||
@ApiStatus.Experimental
|
||||
@NullMarked
|
||||
@ApiStatus.NonExtendable
|
||||
-public interface RegistryEntryAddEvent<T, B extends RegistryBuilder<T>> extends RegistryEvent<T> {
|
||||
+public interface RegistryEntryAddEvent<T, B extends RegistryBuilder<T>> extends RegistryEvent<T>, RegistryCreationLookup {
|
||||
|
||||
/**
|
||||
* Gets the builder for the entry being added to the registry.
|
||||
@@ -34,15 +32,4 @@ public interface RegistryEntryAddEvent<T, B extends RegistryBuilder<T>> extends
|
||||
* @return the key
|
||||
*/
|
||||
TypedKey<T> key();
|
||||
-
|
||||
- /**
|
||||
- * Gets or creates a tag for the given tag key. This tag
|
||||
- * is then required to be filled either from the built-in or
|
||||
- * custom datapack.
|
||||
- *
|
||||
- * @param tagKey the tag key
|
||||
- * @return the tag
|
||||
- * @param <V> the tag value type
|
||||
- */
|
||||
- <V extends Keyed> Tag<V> getOrCreateTag(TagKey<V> tagKey);
|
||||
}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEvent.java b/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEvent.java
|
||||
index 59e8ca6c5b7fa0424ad9b2c74545ec53444b5fcb..e09eb10aafc312fedf7fdec39860b31468037b00 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEvent.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEvent.java
|
||||
@@ -1,9 +1,7 @@
|
||||
package io.papermc.paper.registry.event;
|
||||
|
||||
import io.papermc.paper.registry.RegistryBuilder;
|
||||
-import io.papermc.paper.registry.tag.Tag;
|
||||
-import io.papermc.paper.registry.tag.TagKey;
|
||||
-import org.bukkit.Keyed;
|
||||
+import io.papermc.paper.registry.RegistryCreationLookup;
|
||||
import org.jetbrains.annotations.ApiStatus;
|
||||
import org.jspecify.annotations.NullMarked;
|
||||
|
||||
@@ -18,7 +16,7 @@ import org.jspecify.annotations.NullMarked;
|
||||
@ApiStatus.Experimental
|
||||
@NullMarked
|
||||
@ApiStatus.NonExtendable
|
||||
-public interface RegistryFreezeEvent<T, B extends RegistryBuilder<T>> extends RegistryEvent<T> {
|
||||
+public interface RegistryFreezeEvent<T, B extends RegistryBuilder<T>> extends RegistryEvent<T>, RegistryCreationLookup {
|
||||
|
||||
/**
|
||||
* Get the writable registry.
|
||||
@@ -26,15 +24,4 @@ public interface RegistryFreezeEvent<T, B extends RegistryBuilder<T>> extends Re
|
||||
* @return a writable registry
|
||||
*/
|
||||
WritableRegistry<T, B> registry();
|
||||
-
|
||||
- /**
|
||||
- * Gets or creates a tag for the given tag key. This tag
|
||||
- * is then required to be filled either from the built-in or
|
||||
- * custom datapack.
|
||||
- *
|
||||
- * @param tagKey the tag key
|
||||
- * @return the tag
|
||||
- * @param <V> the tag value type
|
||||
- */
|
||||
- <V extends Keyed> Tag<V> getOrCreateTag(TagKey<V> tagKey);
|
||||
}
|
231
patches/server/1076-RegistryValue-API.patch
Normal file
231
patches/server/1076-RegistryValue-API.patch
Normal file
@ -0,0 +1,231 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
Date: Sun, 24 Nov 2024 02:38:50 -0800
|
||||
Subject: [PATCH] RegistryValue API
|
||||
|
||||
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/PaperRegistries.java b/src/main/java/io/papermc/paper/registry/PaperRegistries.java
|
||||
index 3ebc3dbc86f3f448f0c555366b55a77876ef5d6f..2242288e2c9c1382828eeec5d772cba6986c1338 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/PaperRegistries.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/PaperRegistries.java
|
||||
@@ -7,13 +7,16 @@ import io.papermc.paper.datacomponent.PaperDataComponentType;
|
||||
import io.papermc.paper.registry.data.PaperEnchantmentRegistryEntry;
|
||||
import io.papermc.paper.registry.data.PaperGameEventRegistryEntry;
|
||||
import io.papermc.paper.registry.data.PaperPaintingVariantRegistryEntry;
|
||||
+import io.papermc.paper.registry.entry.CraftRegistryEntry;
|
||||
import io.papermc.paper.registry.entry.RegistryEntry;
|
||||
import io.papermc.paper.registry.tag.TagKey;
|
||||
+import io.papermc.paper.util.Holderable;
|
||||
import java.util.Collections;
|
||||
import java.util.IdentityHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
+import net.minecraft.core.Holder;
|
||||
import net.minecraft.core.Registry;
|
||||
import net.minecraft.core.registries.Registries;
|
||||
import net.minecraft.resources.ResourceKey;
|
||||
@@ -164,6 +167,30 @@ public final class PaperRegistries {
|
||||
return net.minecraft.tags.TagKey.create((ResourceKey<? extends Registry<M>>) registryToNms(tagKey.registryKey()), PaperAdventure.asVanilla(tagKey.key()));
|
||||
}
|
||||
|
||||
+ @SuppressWarnings("unchecked")
|
||||
+ public static <A, M> Holder<M> toNms(final RegistryValue<A> registryValue) {
|
||||
+ if (registryValue instanceof ReferenceRegistryValue<A, ?>) {
|
||||
+ return ((ReferenceRegistryValue<A, M>) registryValue).holder();
|
||||
+ } else {
|
||||
+ final A apiValue = ((RegistryValue.Direct<A>) registryValue).value();
|
||||
+ // only Holderable is supported inside RegistryValue.Direct
|
||||
+ return ((Holderable<M>) apiValue).getHolder();
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ public static <A extends Keyed, M> RegistryValue<A> fromNms(final RegistryKey<A> registryKey, final Holder<M> holder) { // TODO remove Keyed
|
||||
+ if (holder instanceof final Holder.Reference<M> reference) {
|
||||
+ return new ReferenceRegistryValue<>(reference);
|
||||
+ } else {
|
||||
+ final RegistryEntry<M, A> entry = getEntry(registryKey);
|
||||
+ if (!(entry instanceof final CraftRegistryEntry<M, A> craftRegistryEntry)) {
|
||||
+ throw new UnsupportedOperationException("Cannot create a direct value for " + registryKey);
|
||||
+ }
|
||||
+ return new DirectRegistryValue<>(craftRegistryEntry.minecraftToBukkit.convertDirectHolder(holder));
|
||||
+ }
|
||||
+
|
||||
+ }
|
||||
+
|
||||
private PaperRegistries() {
|
||||
}
|
||||
}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/PaperRegistryUtilProvider.java b/src/main/java/io/papermc/paper/registry/PaperRegistryUtilProvider.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..3ee9e5bf92baa643252bdf3ea6a52d058e7e2acc
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/PaperRegistryUtilProvider.java
|
||||
@@ -0,0 +1,19 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+import net.minecraft.core.Holder;
|
||||
+import org.bukkit.craftbukkit.util.Handleable;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+@NullMarked
|
||||
+public class PaperRegistryUtilProvider implements RegistryUtilProvider {
|
||||
+
|
||||
+ @Override
|
||||
+ public <V> boolean isValidForDirectHolder(final V value) {
|
||||
+ if (!(value instanceof final Handleable<?> handleable)) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ final Holder<?> holder = handleable.getHandleHolder();
|
||||
+ if (holder == null) return false;
|
||||
+ return holder.kind() == Holder.Kind.DIRECT;
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/ReferenceRegistryValue.java b/src/main/java/io/papermc/paper/registry/ReferenceRegistryValue.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..8784004e5698866ca8ef78ba9b856797fbd00682
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/ReferenceRegistryValue.java
|
||||
@@ -0,0 +1,13 @@
|
||||
+package io.papermc.paper.registry;
|
||||
+
|
||||
+import net.minecraft.core.Holder;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+@NullMarked
|
||||
+public record ReferenceRegistryValue<A, M>(Holder.Reference<M> holder) implements RegistryValue.Reference<A> {
|
||||
+
|
||||
+ @Override
|
||||
+ public TypedKey<A> key() {
|
||||
+ return PaperRegistries.fromNms(this.holder.key());
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/entry/CraftRegistryEntry.java b/src/main/java/io/papermc/paper/registry/entry/CraftRegistryEntry.java
|
||||
index d8b28e823adb98061dd126a79df2fdf75c3f374d..dc1ea23f2fd6e77f483863ad49cc5a6cb78fa402 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/entry/CraftRegistryEntry.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/entry/CraftRegistryEntry.java
|
||||
@@ -19,7 +19,7 @@ public class CraftRegistryEntry<M, B extends Keyed> extends BaseRegistryEntry<M,
|
||||
private static final BiFunction<NamespacedKey, ApiVersion, NamespacedKey> EMPTY = (namespacedKey, apiVersion) -> namespacedKey;
|
||||
|
||||
protected final Class<?> classToPreload;
|
||||
- protected final RegistryTypeMapper<M, B> minecraftToBukkit;
|
||||
+ public final RegistryTypeMapper<M, B> minecraftToBukkit; // TODO not public, add a method to some interface
|
||||
protected BiFunction<NamespacedKey, ApiVersion, NamespacedKey> updater = EMPTY;
|
||||
|
||||
protected CraftRegistryEntry(
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/event/RegistryCreationLookupEventHolder.java b/src/main/java/io/papermc/paper/registry/event/RegistryCreationLookupEventHolder.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..7cd783431adf7e6e3c1eda7e3fb5d99b23c2d9aa
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/registry/event/RegistryCreationLookupEventHolder.java
|
||||
@@ -0,0 +1,35 @@
|
||||
+package io.papermc.paper.registry.event;
|
||||
+
|
||||
+import io.papermc.paper.registry.PaperRegistries;
|
||||
+import io.papermc.paper.registry.ReferenceRegistryValue;
|
||||
+import io.papermc.paper.registry.RegistryCreationLookup;
|
||||
+import io.papermc.paper.registry.RegistryValue;
|
||||
+import io.papermc.paper.registry.TypedKey;
|
||||
+import io.papermc.paper.registry.data.util.Conversions;
|
||||
+import io.papermc.paper.registry.set.NamedRegistryKeySetImpl;
|
||||
+import io.papermc.paper.registry.tag.Tag;
|
||||
+import io.papermc.paper.registry.tag.TagKey;
|
||||
+import net.minecraft.core.HolderGetter;
|
||||
+import net.minecraft.core.HolderSet;
|
||||
+import net.minecraft.resources.RegistryOps;
|
||||
+import org.bukkit.Keyed;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+
|
||||
+@NullMarked
|
||||
+public interface RegistryCreationLookupEventHolder extends RegistryCreationLookup {
|
||||
+
|
||||
+ Conversions conversions();
|
||||
+
|
||||
+ @Override
|
||||
+ default <V extends Keyed> Tag<V> getOrCreateTag(final TagKey<V> tagKey) {
|
||||
+ final RegistryOps.RegistryInfo<Object> registryInfo = this.conversions().lookup().lookup(PaperRegistries.registryToNms(tagKey.registryKey())).orElseThrow();
|
||||
+ final HolderSet.Named<?> tagSet = registryInfo.getter().getOrThrow(PaperRegistries.toNms(tagKey));
|
||||
+ return new NamedRegistryKeySetImpl<>(tagKey, tagSet);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ default <V> RegistryValue.Reference<V> getOrCreateValue(final TypedKey<V> typedKey) {
|
||||
+ final HolderGetter<?> holderGetter = this.conversions().lookup().lookup(PaperRegistries.registryToNms(typedKey.registryKey())).orElseThrow().getter();
|
||||
+ return new ReferenceRegistryValue<>(holderGetter.getOrThrow(PaperRegistries.toNms(typedKey)));
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEventImpl.java b/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEventImpl.java
|
||||
index 332829c65ef45966dffcf5f1c59422a801179759..cfd63e721e15a982f449f42ff06954982255aa49 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEventImpl.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/event/RegistryEntryAddEventImpl.java
|
||||
@@ -1,29 +1,15 @@
|
||||
package io.papermc.paper.registry.event;
|
||||
|
||||
import io.papermc.paper.plugin.lifecycle.event.PaperLifecycleEvent;
|
||||
-import io.papermc.paper.registry.PaperRegistries;
|
||||
import io.papermc.paper.registry.RegistryBuilder;
|
||||
import io.papermc.paper.registry.RegistryKey;
|
||||
import io.papermc.paper.registry.TypedKey;
|
||||
import io.papermc.paper.registry.data.util.Conversions;
|
||||
-import io.papermc.paper.registry.set.NamedRegistryKeySetImpl;
|
||||
-import io.papermc.paper.registry.tag.Tag;
|
||||
-import io.papermc.paper.registry.tag.TagKey;
|
||||
-import net.minecraft.core.HolderSet;
|
||||
-import net.minecraft.resources.RegistryOps;
|
||||
-import org.bukkit.Keyed;
|
||||
|
||||
public record RegistryEntryAddEventImpl<T, B extends RegistryBuilder<T>>(
|
||||
TypedKey<T> key,
|
||||
B builder,
|
||||
RegistryKey<T> registryKey,
|
||||
Conversions conversions
|
||||
-) implements RegistryEntryAddEvent<T, B>, PaperLifecycleEvent {
|
||||
-
|
||||
- @Override
|
||||
- public <V extends Keyed> Tag<V> getOrCreateTag(final TagKey<V> tagKey) {
|
||||
- final RegistryOps.RegistryInfo<Object> registryInfo = this.conversions.lookup().lookup(PaperRegistries.registryToNms(tagKey.registryKey())).orElseThrow();
|
||||
- final HolderSet.Named<?> tagSet = registryInfo.getter().getOrThrow(PaperRegistries.toNms(tagKey));
|
||||
- return new NamedRegistryKeySetImpl<>(tagKey, tagSet);
|
||||
- }
|
||||
+) implements RegistryEntryAddEvent<T, B>, PaperLifecycleEvent, RegistryCreationLookupEventHolder {
|
||||
}
|
||||
diff --git a/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEventImpl.java b/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEventImpl.java
|
||||
index 1b45802f9afc97fd59c6dc77964dedea1016cd6c..94d0dd305b055910f90fa88438a9089fc7715a7e 100644
|
||||
--- a/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEventImpl.java
|
||||
+++ b/src/main/java/io/papermc/paper/registry/event/RegistryFreezeEventImpl.java
|
||||
@@ -1,27 +1,13 @@
|
||||
package io.papermc.paper.registry.event;
|
||||
|
||||
import io.papermc.paper.plugin.lifecycle.event.PaperLifecycleEvent;
|
||||
-import io.papermc.paper.registry.PaperRegistries;
|
||||
import io.papermc.paper.registry.RegistryBuilder;
|
||||
import io.papermc.paper.registry.RegistryKey;
|
||||
import io.papermc.paper.registry.data.util.Conversions;
|
||||
-import io.papermc.paper.registry.set.NamedRegistryKeySetImpl;
|
||||
-import io.papermc.paper.registry.tag.Tag;
|
||||
-import io.papermc.paper.registry.tag.TagKey;
|
||||
-import net.minecraft.core.HolderSet;
|
||||
-import net.minecraft.resources.RegistryOps;
|
||||
-import org.bukkit.Keyed;
|
||||
|
||||
public record RegistryFreezeEventImpl<T, B extends RegistryBuilder<T>>(
|
||||
RegistryKey<T> registryKey,
|
||||
WritableRegistry<T, B> registry,
|
||||
Conversions conversions
|
||||
-) implements RegistryFreezeEvent<T, B>, PaperLifecycleEvent {
|
||||
-
|
||||
- @Override
|
||||
- public <V extends Keyed> Tag<V> getOrCreateTag(final TagKey<V> tagKey) {
|
||||
- final RegistryOps.RegistryInfo<Object> registryInfo = this.conversions.lookup().lookup(PaperRegistries.registryToNms(tagKey.registryKey())).orElseThrow();
|
||||
- final HolderSet.Named<?> tagSet = registryInfo.getter().getOrThrow(PaperRegistries.toNms(tagKey));
|
||||
- return new NamedRegistryKeySetImpl<>(tagKey, tagSet);
|
||||
- }
|
||||
+) implements RegistryFreezeEvent<T, B>, PaperLifecycleEvent, RegistryCreationLookupEventHolder {
|
||||
}
|
||||
diff --git a/src/main/resources/META-INF/services/io.papermc.paper.registry.RegistryUtilProvider b/src/main/resources/META-INF/services/io.papermc.paper.registry.RegistryUtilProvider
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..a7170f37c03830b8f1432575c127fe2d943b8cf3
|
||||
--- /dev/null
|
||||
+++ b/src/main/resources/META-INF/services/io.papermc.paper.registry.RegistryUtilProvider
|
||||
@@ -0,0 +1 @@
|
||||
+io.papermc.paper.registry.PaperRegistryUtilProvider
|
Loading…
Reference in New Issue
Block a user