Skip to content

Commit 7f6f64f

Browse files
committed
cat and frog variants registries are now data-driven
1 parent bf417ba commit 7f6f64f

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

paper-api-generator/src/main/java/io/papermc/generator/Generators.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ public interface Generators {
4343
simpleKey("MobEffectKeys", PotionEffectType.class, Registries.MOB_EFFECT, RegistryKey.MOB_EFFECT, false),
4444
simpleKey("BlockTypeKeys", BlockType.class, Registries.BLOCK, RegistryKey.BLOCK, false),
4545
simpleKey("ItemTypeKeys", ItemType.class, Registries.ITEM, RegistryKey.ITEM, false),
46-
simpleKey("CatVariantKeys", Cat.Type.class, Registries.CAT_VARIANT, RegistryKey.CAT_VARIANT, false),
47-
simpleKey("FrogVariantKeys", Frog.Variant.class, Registries.FROG_VARIANT, RegistryKey.FROG_VARIANT, false),
4846
simpleKey("VillagerProfessionKeys", Villager.Profession.class, Registries.VILLAGER_PROFESSION, RegistryKey.VILLAGER_PROFESSION, false),
4947
simpleKey("VillagerTypeKeys", Villager.Type.class, Registries.VILLAGER_TYPE, RegistryKey.VILLAGER_TYPE, false),
5048
simpleKey("MapDecorationTypeKeys", MapCursor.Type.class, Registries.MAP_DECORATION_TYPE, RegistryKey.MAP_DECORATION_TYPE, false),
@@ -65,6 +63,8 @@ public interface Generators {
6563
simpleKey("BannerPatternKeys", PatternType.class, Registries.BANNER_PATTERN, RegistryKey.BANNER_PATTERN, true),
6664
simpleKey("PaintingVariantKeys", Art.class, Registries.PAINTING_VARIANT, RegistryKey.PAINTING_VARIANT, true),
6765
simpleKey("InstrumentKeys", MusicInstrument.class, Registries.INSTRUMENT, RegistryKey.INSTRUMENT, true),
66+
simpleKey("CatVariantKeys", Cat.Type.class, Registries.CAT_VARIANT, RegistryKey.CAT_VARIANT, true),
67+
simpleKey("FrogVariantKeys", Frog.Variant.class, Registries.FROG_VARIANT, RegistryKey.FROG_VARIANT, true),
6868

6969
// tags
7070
simpleTagKey("GameEventTagKeys", GameEvent.class, Registries.GAME_EVENT, RegistryKey.GAME_EVENT),

paper-api/src/main/java/io/papermc/paper/registry/RegistryKey.java

+12-10
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,10 @@ public sealed interface RegistryKey<T> extends Keyed permits RegistryKeyImpl {
8383
/**
8484
* @apiNote use preferably only in the context of registry entries.
8585
* @see io.papermc.paper.registry.data
86+
* @see io.papermc.paper.registry.keys.ItemTypeKeys
8687
*/
8788
@ApiStatus.Experimental // Paper - already required for registry builders
8889
RegistryKey<ItemType> ITEM = create("item");
89-
/**
90-
* Built-in registry for cat variants.
91-
* @see io.papermc.paper.registry.keys.CatVariantKeys
92-
*/
93-
RegistryKey<Cat.Type> CAT_VARIANT = create("cat_variant");
94-
/**
95-
* Built-in registry for frog variants.
96-
* @see io.papermc.paper.registry.keys.FrogVariantKeys
97-
*/
98-
RegistryKey<Frog.Variant> FROG_VARIANT = create("frog_variant");
9990
/**
10091
* Built-in registry for villager professions.
10192
* @see io.papermc.paper.registry.keys.VillagerProfessionKeys
@@ -197,6 +188,16 @@ public sealed interface RegistryKey<T> extends Keyed permits RegistryKeyImpl {
197188
* @see io.papermc.paper.registry.keys.InstrumentKeys
198189
*/
199190
RegistryKey<MusicInstrument> INSTRUMENT = create("instrument");
191+
/**
192+
* Data-driven registry for cat variants.
193+
* @see io.papermc.paper.registry.keys.CatVariantKeys
194+
*/
195+
RegistryKey<Cat.Type> CAT_VARIANT = create("cat_variant");
196+
/**
197+
* Data-driven registry for frog variants.
198+
* @see io.papermc.paper.registry.keys.FrogVariantKeys
199+
*/
200+
RegistryKey<Frog.Variant> FROG_VARIANT = create("frog_variant");
200201
/**
201202
* Data-driven registry for chicken variants.
202203
* <!-- @see io.papermc.paper.registry.keys.ChickenVariantKeys -->
@@ -214,6 +215,7 @@ public sealed interface RegistryKey<T> extends Keyed permits RegistryKeyImpl {
214215
RegistryKey<Pig.Variant> PIG_VARIANT = create("pig_variant");
215216

216217

218+
217219
/* ******************* *
218220
* API-only Registries *
219221
* ******************* */

paper-api/src/main/java/org/bukkit/Registry.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,10 @@ public Iterator<KeyedBossBar> iterator() {
148148
* Server cat types.
149149
*
150150
* @see Cat.Type
151+
* @deprecated use {@link RegistryAccess#getRegistry(RegistryKey)} with {@link RegistryKey#CAT_VARIANT}
151152
*/
152-
Registry<Cat.Type> CAT_VARIANT = registryFor(RegistryKey.CAT_VARIANT);
153+
@Deprecated(since = "1.21.5")
154+
Registry<Cat.Type> CAT_VARIANT = legacyRegistryFor(Cat.Type.class);
153155
/**
154156
* Server enchantments.
155157
*
@@ -318,8 +320,10 @@ public int size() {
318320
* Frog variants.
319321
*
320322
* @see Frog.Variant
323+
* @deprecated use {@link RegistryAccess#getRegistry(RegistryKey)} with {@link RegistryKey#FROG_VARIANT}
321324
*/
322-
Registry<Frog.Variant> FROG_VARIANT = registryFor(RegistryKey.FROG_VARIANT);
325+
@Deprecated(since = "1.21.5")
326+
Registry<Frog.Variant> FROG_VARIANT = legacyRegistryFor(Frog.Variant.class);
323327
/**
324328
* Wolf variants.
325329
*

paper-server/src/main/java/io/papermc/paper/registry/PaperRegistries.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ public final class PaperRegistries {
9595
start(Registries.MOB_EFFECT, RegistryKey.MOB_EFFECT).craft(PotionEffectType.class, CraftPotionEffectType::new).build(),
9696
start(Registries.BLOCK, RegistryKey.BLOCK).craft(BlockType.class, CraftBlockType::new).build(),
9797
start(Registries.ITEM, RegistryKey.ITEM).craft(ItemType.class, CraftItemType::new).build(),
98-
start(Registries.CAT_VARIANT, RegistryKey.CAT_VARIANT).craft(Cat.Type.class, CraftCat.CraftType::new).build(),
99-
start(Registries.FROG_VARIANT, RegistryKey.FROG_VARIANT).craft(Frog.Variant.class, CraftFrog.CraftVariant::new).build(),
10098
start(Registries.VILLAGER_PROFESSION, RegistryKey.VILLAGER_PROFESSION).craft(Villager.Profession.class, CraftVillager.CraftProfession::new).build(),
10199
start(Registries.VILLAGER_TYPE, RegistryKey.VILLAGER_TYPE).craft(Villager.Type.class, CraftVillager.CraftType::new).build(),
102100
start(Registries.MAP_DECORATION_TYPE, RegistryKey.MAP_DECORATION_TYPE).craft(MapCursor.Type.class, CraftMapCursor.CraftType::new).build(),
@@ -118,6 +116,8 @@ public final class PaperRegistries {
118116
start(Registries.BANNER_PATTERN, RegistryKey.BANNER_PATTERN).craft(PatternType.class, CraftPatternType::new, true).writable(PaperBannerPatternRegistryEntry.PaperBuilder::new).delayed(),
119117
start(Registries.PAINTING_VARIANT, RegistryKey.PAINTING_VARIANT).craft(Art.class, CraftArt::new, true).writable(PaperPaintingVariantRegistryEntry.PaperBuilder::new).delayed(),
120118
start(Registries.INSTRUMENT, RegistryKey.INSTRUMENT).craft(MusicInstrument.class, CraftMusicInstrument::new, true).build().delayed(),
119+
start(Registries.CAT_VARIANT, RegistryKey.CAT_VARIANT).craft(Cat.Type.class, CraftCat.CraftType::new).build().delayed(),
120+
start(Registries.FROG_VARIANT, RegistryKey.FROG_VARIANT).craft(Frog.Variant.class, CraftFrog.CraftVariant::new).build().delayed(),
121121
start(Registries.CHICKEN_VARIANT, RegistryKey.CHICKEN_VARIANT).craft(Chicken.Variant.class, CraftChicken.CraftVariant::new).build(),
122122
start(Registries.COW_VARIANT, RegistryKey.COW_VARIANT).craft(Cow.Variant.class, CraftCow.CraftVariant::new).build(),
123123
start(Registries.PIG_VARIANT, RegistryKey.PIG_VARIANT).craft(Pig.Variant.class, CraftPig.CraftVariant::new).build(),

0 commit comments

Comments
 (0)