Registration
This page is under construction.
This page is incomplete, and needs more work. Feel free to edit and improve this page!
Registration is the process of making an object (such as an item or block) known to the game during runtime. If some objects are not registered, this could cause crashes even before the game is fully loaded or arbitrary behaviors such as bottlenecking mod compatibility for world generation.
Most objects that are known within the game are handled by a Registry
. Each registry uniquely defines each object through a "registry name" via a ResourceLocation. This "registry name" can be accessed with its respective getter and setter: #getRegistryName
and #setRegistryName
. You can only set the "registry name" of a given object once; otherwise, an exception will be thrown.
RegistryKey
: a concatenation of its registry's id and the object's registry name.Due to the inconsistent ordering and registration process vanilla uses, Forge wraps most vanilla registries using IForgeRegistry
. This guarantees that the loading order for these wrapped registries will be Block
, Item
, and then the rest of the wrapped registries in alphabetical order. All registries supported by Forge can be found within the ForgeRegistries
class. Since all registry names are unique to a specific registry, different registry objects within different registries can have the same name (e.g. a Block
and an Item
each hold a registry object named examplemod:object
.
Warning
IllegalArgumentException
is the DataSerializerEntry
registry.Methods for Registering
There are two proper ways to register objects within an associated wrapped Forge registry: the DeferredRegister
class, and the RegistryEvent$Register
lifecycle event.
For objects with no associated Forge registry, you can register the associated entry during the FMLCommonSetupEvent
lifecycle event. In some cases, although not recommended, you may also statically initialize and register these entries.
DeferredRegister
DeferredRegister
is an abstraction layer over the registry event used to register objects. It maintains a map of "registry name" to their associated suppliers and resolves those suppliers during the proper RegistryEvent$Register
event. This method is the currently recommended, and documented, way to handle these objects as it provides convenience and safety for those who want to statically initialize objects while avoiding some issues associated with it.
An example of a mod registering a custom block:
private static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID); public static final RegistryObject<Block> EXAMPLE_BLOCK = BLOCKS.register("example_block", () -> new Block(AbstractBlock.Properties.create(Material.ROCK))); public ExampleMod() { BLOCKS.register(FMLJavaModLoadingContext.get().getModEventBus()); }
private val BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID) val EXAMPLE_BLOCK: RegistryObject<Block> = BLOCKS.register("example_block") { Block(AbstractBlock.Properties.create(Material.ROCK)) } internal class ExampleMod { init { BLOCKS.register(FMLJavaModLoadingContext.get().modEventBus) } }
object ExampleMod { private final val BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID) final val EXAMPLE_BLOCK = registerBlock("example_block", () => new Block(AbstractBlock.Properties.create(Material.ROCK))) } class ExampleMod { BLOCKS.register(FMLJavaModLoadingContext.get.getModEventBus) }
DeferredRegister
to register any object, the name inputted will be automatically prefixed with the mod id passed in, giving the above object a "registry name" of examplemod:example_block
.RegistryEvent$Register
The RegistryEvent
s are another, more slightly flexible way to register objects. These events are fired synchronously after FMLConstructModEvent
and before the configs are loaded.
The event used to register objects is RegistryEvent$Register<T>
, where the type parameter T
is the object type being registered. You can grab the associated registry using #getRegistry
and register the objects within using either #register
(pass in a single object) or #registerAll
(pass in varargs or an array of objects). The latter is useful for minimizing calls to #register
, although it provides no benefit time-complexity wise.
Important
Here is an example: (the event handler is registered on the mod event bus)
@SubscribeEvent public void registerBlocks(RegistryEvent.Register<Block> event) { event.getRegistry().registerAll(new Block(...).setRegistryName(new ResourceLocation(MODID, "example_block1")), new Block(...).setRegistryName(new ResourceLocation(MODID, "example_block2")), ...); }
@JvmStatic @SubscribeEvent private fun registerBlocks(event: RegistryEvent.Register<Block>) = event.registry.registerAll(Block(...).setRegistryName(new ResourceLocation(MODID, "example_block1")), Block(...).setRegistryName(new ResourceLocation(MODID, "example_block2")), ...)
@SubscribeEvent def registerBlocks(event: RegistryEvent.Register[Block]): Unit = event.getRegistry.registerAll(new Block(...).setRegistryName(new ResourceLocation(MODID, "example_block1")), new Block(...).setRegistryName(new ResourceLocation(MODID, "example_block2")), ...)
Important
Since all objects registered must be singleton, some classes cannot by themselves be registered. Instead, *Type
classes are registered and used in the formers' constructors to wrap the flyweight objects. For example, a TileEntity
is wrapped via TileEntityType
, and Entity
is wrapped via EntityType
. These *Type
classes hold factories that simply create the containing type on demand.
These factory holders are created through the use of their *Type$Builder
classes. An example: (REGISTER
here refers to a DeferredRegister<TileEntityType<?>>
)
public static final RegistryObject<TileEntityType<ExampleTile>> EXAMPLE_TILE = REGISTER.register( "example_tile", () -> TileEntityType.Builder.create(ExampleTile::new, EXAMPLE_BLOCK.get()).build(null) );
val EXAMPLE_TILE: RegistryObject<TileEntityType<ExampleTile>> = REGISTER.register("example_tile") { TileEntityType.Builder.create(::ExampleTile, EXAMPLE_BLOCK.get()).build(null)) }
final val EXAMPLE_TILE = REGISTER.register("example_tile", () => TileEntityType.Builder.create(() => new ExampleTile(), GeneralRegistrar.EXAMPLE_BLOCK.get).build(null))
Non-Forge Registries
Not all vanilla registries are wrapped as a Forge registry. This is because the registry is fully independent from any other registry, completely data driven, or just has not been wrapped yet.
These registries include:
- Custom Stats (a
ResourceLocation
registry) IRuleTestType
IPosRuleTests
IRecipeType
VillagerType
LootPoolEntryType
LootFunctionType
LootConditionType
IStructurePieceType
TrunkPlacerType
FeatureSizeType
BiomeProvider
(ACodec
registry)ChunkGenerator
(ACodec
registry)IStructureProcessorType
IJigsawDeserializer
- All registries within
WorldGenRegistries
excludingBiome
To register objects to any one of these registries, you will need to call Registry::register(Registry, ResourceLocation, T)
where the type parameter T
is the object instance being registered. The method can then be called and registered during the highest priority of FMLCommonSetupEvent
. We can also utilize a Lazy
above to store the result on first access and use within our code.
Here is an example: (the event handler is registered on the mod event bus)
public static final Lazy<ConfiguredFeature<?, ?>> EXAMPLE_CONFIGURED_FEATURE = Lazy.of(() -> register("example_configured_feature", Feature.NO_OP.withConfiguration(NoFeatureConfig.field_236559_b_) .withPlacement(Placement.NOPE.configure(NoPlacementConfig.INSTANCE)) ) ); @SubscribeEvent(priority = EventPriority.HIGHEST) public void register(FMLCommonSetupEvent event) { event.enqueueWork(EXAMPLE_CONFIGURED_FEATURE::get); } private static <T extends ConfiguredFeature<?, ?>> T register(String name, T value) { return Registry.register(WorldGenRegistries.CONFIGURED_FEATURE, new ResourceLocation(MODID, name), value); }
val EXAMPLE_CONFIGURED_FEATURE: ConfiguredFeature<*, *> by lazy { register("example_configured_feature", Feature.NO_OP.withConfiguration(NoFeatureConfig.field_236559_b_) .withPlacement(Placement.NOPE.configure(NoPlacementConfig.INSTANCE))) } object Events { @SubscribeEvent(priority = EventPriority.HIGHEST) fun register(event: FMLCommonSetupEvent) { event.enqueueWork(EXAMPLE_CONFIGURED_FEATURE::getConfig) } } private fun <T: ConfiguredFeature<*, *>> register(name: String, value: T): T = Registry.register(WorldGenRegistries.CONFIGURED_FEATURE, ResourceLocation(MODID, name), value)
class Events { @SubscribeEvent(priority = EventPriority.HIGHEST) def register(event: FMLCommonSetupEvent): Unit = { event.enqueueWork(Events.EXAMPLE_CONFIGURED_FEATURE.getConfig _) } } object Events { final lazy val EXAMPLE_CONFIGURED_FEATURE = register("example_configured_feature", Feature.NO_OP.withConfiguration(NoFeatureConfig.field_236559_b_) .withPlacement(Placement.NOPE.configure(NoPlacementConfig.INSTANCE))) private def register[T <: ConfiguredFeature[_, _]](name: String, value: T): T = Registry.register(WorldGenRegistries.CONFIGURED_FEATURE, new ResourceLocation(MODID, name), value) }
Warning
#enqueueWork
.Besides the registries within WorldGenRegistries
, all other non-forge wrapped registries can be statically initialized like so:
public static final IRecipeType<ExampleRecipe> EXAMPLE_RECIPE = IRecipeType.register(MODID + ":example_recipe");
val EXAMPLE_RECIPE: IRecipeType<ExampleRecipe> = IRecipeType.register("${MODID}:example_recipe")
final val EXAMPLE_RECIPE = IRecipeType.register(s"${MODID}:example_recipe")
If you attempt to make one of these instances require an instance of another registry object, you must use the lazy initialization method mentioned above to register the object in the correct order.
Data Driven Entries
Registries are considered to be data driven if they are located within DynamicRegistries
with the exception of Dimension
.
The following registries are data driven:
ConfiguredSurfaceBuilder
ConfiguredCarver
ConfiguredFeature
StructureFeature
StructureProcessorList
JigsawPattern
Biome
DimensionSettings
DimensionType
Dimension
These registry objects only need to be registered within code if they are to be used within a pre-existing registry object (e.g. a ConfiguredFeature
for ore generation within an overworld Biome
). Otherwise, their instance can be purely registered using a JSON file.
If a data driven registry object has to be registered within code, a dummy object should be supplied to hold a "registry name" and then constructed within a JSON file.
Referencing Registered Objects
Each forge registered object should not be statically initialized nor reference another instance being registered. They must always be a new, singleton instance that is resolved during their respective RegistryEvent$Register
event. This is to maintain a sane loading order for registries and their objects along with dynamic loading/unloading of mods.
Forge registered objects must always be referenced through a RegistryObject
or a field with @ObjectHolder
.
Using RegistryObjects
RegistryObject
s can be used to retrieve references to registered objects once they become available. Their references are updated along with all @ObjectHolder
annotations after the associated RegistryEvent$Register
has been dispatched and frozen.
A RegistryObject
can be retrieved as a result of using DeferredRegister
or calling the static constructor RegistryObject::of
. Each static constructor takes in the "registry name" of the object being referenced and either a IForgeRegistry
or, if custom registries are used, a supplier of the object class implementing IForgeRegistryEntry
. The RegistryObject
can be stored within some field and retreive the registered object using #get
.
An example using RegistryObject
:
public static final RegistryObject<Item> EXAMPLE_ITEM = RegistryObject.of(new ResourceLocation("examplemod:example_item"), ForgeRegistries.ITEMS); // Assume that 'ExampleRegistry' is a valid registry, and 'examplemod:example_object' is a valid object within that registry public static final RegistryObject<ExampleRegistry> EXAMPLE_OBJECT = RegistryObject.of(new ResourceLocation("examplemod", "example_object"), () -> ExampleRegistry.class);
val EXAMPLE_ITEM: RegistryObject<Item> = RegistryObject.of(ResourceLocation("examplemod:example_item"), ForgeRegistries.ITEMS) // Assume that 'ExampleRegistry' is a valid registry, and 'examplemod:example_object' is a valid object within that registry val EXAMPLE_OBJECT: RegistryObject<ExampleRegistry> = RegistryObject.of(ResourceLocation("examplemod", "example_object")) { ExampleRegistry.class }
final val EXAMPLE_ITEM = RegistryObject.of(new ResourceLocation("examplemod:example_item"), ForgeRegistries.ITEMS) // Assume that 'ExampleRegistry' is a valid registry, and 'examplemod:example_object' is a valid object within that registry final val EXAMPLE_OBJECT = RegistryObject.of(new ResourceLocation("examplemod", "example_object"), () => classOf[ExampleRegistry]);
Important
Using @ObjectHolder
Forge registry objects can also be injected into public static
fields with either their class or that field annotated with @ObjectHolder
. There must be enough information to construct a ResourceLocation
to identify a single object within a specific registry.
The rules for @ObjectHolder
are as follows:
- If the class is annotated with
@ObjectHolder
, its value will be the default namespace for all fields within if not explicitly defined - If the class is annotated with
@Mod
, the modid will be the default namespace for all annotated fields within if not explicitly defined - A field is considered for injection if:
- it has at least the modifiers
public static
; and - one of the following conditions are true:
- the enclosing class has an
@ObjectHolder
annotation, and the field isfinal
, and:- the name value is the field's name; and
- the namespace value is the enclosing class's namespace
- An exception is thrown if the namespace value cannot be found and inherited
- the field is annotated with
@ObjectHolder
, and:- the name value is explicitly defined; and
- the namespace value is either explicitly defined or the enclosing class's namespace
- the enclosing class has an
- the field type or one of its supertypes corresponds to a valid registry (e.g.
Item
orArrowItem
for theItem
registry) - An exception is thrown if a field does not have a corresponding registry.
- it has at least the modifiers
- An exception is thrown if the resulting
ResourceLocation
is incomplete or invalid (non-valid characters in path) - If no other errors or exceptions occur, the field will be injected
- If all of the above rules do not apply, no action will be taken (and a message may be logged)
@ObjectHolder
annotated fields are injected with their associated object values after their corresponding registry's RegistryEvent$Register
event is fired, along with RegistryObject
s.
Warning
As these rules are rather complicated, here are some examples:
@ObjectHolder
@ObjectHolder("minecraft") // Inheritable resource namespace: "minecraft" class AnnotatedHolder { public static final Block diamond_block = null; // No annotation. [public static final] is required. // Block has a corresponding registry: [Block] // Name path is the name of the field: "diamond_block" // Namespace is not explicitly defined. // So, namespace is inherited from class annotation: "minecraft" // To inject: "minecraft:diamond_block" from the [Block] registry @ObjectHolder("ambient.cave") public static SoundEvent ambient_sound = null; // Annotation present. [public static] is required. // SoundEvent has a corresponding registry: [SoundEvent] // Name path is the value of the annotation: "ambient.cave" // Namespace is not explicitly defined. // So, namespace is inherited from class annotation: "minecraft" // To inject: "minecraft:ambient.cave" from the [SoundEvent] registry // Assume for the next entry that [ManaType] is a valid registry. @ObjectHolder("neomagicae:coffeinum") public static final ManaType coffeinum = null; // Annotation present. [public static] is required. [final] is optional. // ManaType has a corresponding registry: [ManaType] (custom registry) // Resource location is explicitly defined: "neomagicae:coffeinum" // To inject: "neomagicae:coffeinum" from the [ManaType] registry public static final Item ENDER_PEARL = null; // No annotation. [public static final] is required. // Item has a corresponding registry: [Item]. // Name path is the name of the field: "ENDER_PEARL" -> "ender_pearl" // !! ^ Field name is valid, because they are // converted to lowercase automatically. // Namespace is not explicitly defined. // So, namespace is inherited from class annotation: "minecraft" // To inject: "minecraft:ender_pearl" from the [Item] registry @ObjectHolder("minecraft:arrow") public static final ArrowItem arrow = null; // Annotation present. [public static] is required. [final] is optional. // ArrowItem does not have a corresponding registry. // ArrowItem's supertype of Item has a corresponding registry: [Item] // Resource location is explicitly defined: "minecraft:arrow" // To inject: "minecraft:arrow" from the [Item] registry public static Block bedrock = null; // No annotation, so [public static final] is required. // Therefore, the field is ignored. public static final ItemGroup group = null; // No annotation. [public static final] is required. // ItemGroup does not have a corresponding registry. // No supertypes of ItemGroup has a corresponding registry. // Therefore, THIS WILL PRODUCE AN EXCEPTION. } class UnannotatedHolder { // Note the lack of an @ObjectHolder annotation on this class. @ObjectHolder("minecraft:flame") public static final Enchantment flame = null; // Annotation present. [public static] is required. [final] is optional. // Enchantment has corresponding registry: [Enchantment]. // Resource location is explicitly defined: "minecraft:flame" // To inject: "minecraft:flame" from the [Enchantment] registry public static final Biome ice_flat = null; // No annotation on the enclosing class. // Therefore, the field is ignored. @ObjectHolder("minecraft:creeper") public static Entity creeper = null; // Annotation present. [public static] is required. // Entity does not have a corresponding registry. // No supertypes of Entity has a corresponding registry. // Therefore, THIS WILL PRODUCE AN EXCEPTION. @ObjectHolder("levitation") public static final Potion levitation = null; // Annotation present. [public static] is required. [final] is optional. // Potion has a corresponding registry: [Potion]. // Name path is the value of the annotation: "levitation" // Namespace is not explicitly defined. // No annotation in enclosing class. // Therefore, THIS WILL PRODUCE AN EXCEPTION. }
Creating Custom Registries
Creating custom registries for your mod might be useful if you want other mods to add new things to your system. For example, you might have magic spells and want to allow other mods to add new spells. For this you will want to make a registry (eg. "mymagicmod:spells"). This way, other mods will be able to register things to that list, and you won't have to do anything else.
Just like with registering a new item or block you have two ways of making a new registry. Each method takes in a RegistryBuilder
which is used to build an IForgeRegistry
for an object class that implements IForgeRegistryEntry
. Each builder should have its name and type set via #setName
and #setType
respectively before being created.
For the class that implements IForgeRegistryEntry
, it is recommended in most cases to extend the default implementation of ForgeRegistryEntry
. For interfaces, it should extend IForgeRegistryEntry
with its implementations extending ForgeRegistryEntry
.
With DeferredRegister
The first method involves the second static constructor: DeferredRegister::create(Class, String)
. The class supplied must extend IForgeRegistryEntry
. From there, we can construct the registry using #makeRegistry
. This will already populate #setName
and #setType
for us. This method also returns a supplier of the registry which we can use after the RegistryEvent$NewRegistry
event.
Here is an example:
public static final DeferredRegister<ExampleRegistry> EXAMPLE = DeferredRegister.create(ExampleRegistry.class, MODID); public static final Lazy<IForgeRegistry<ExampleRegistry>> REGISTRY = Lazy.of(EXAMPLE.makeRegistry("example_registry", RegistryBuilder::new));
Using RegistryEvent$NewRegistry
The second method can be done during the RegistryEvent$NewRegistry
event. This will call a new instance of the builder directly. From there, the registry can be built and stored via RegistryBuilder#create
. This will cause the registry to be registered to the RegistryManager
and returned to the caller for additional processing.
Here is an example: (the event handler is registered on the mod event bus)
public static IForgeRegistry<ExampleRegistry> registry = null; @SubscribeEvent public void onNewRegistry(RegistryEvent.NewRegistry event){ RegistryBuilder<ExampleRegistry> registryBuilder = new RegistryBuilder<>(); registryBuilder.setName(new ResourceLocation(MODID, "example_registry"); registryBuilder.setType(ExampleRegistry.class); registry = registryBuilder.create(); }
Handling Missing Entries
When loading a pre-existing world after removing mods or updating versions, there are cases where certain registry objects will cease to exist. In these cases, it is possible to specify actions to remove a mapping, prevent the world from loading, or remap the name as needed. This can be done through the third of the registry events: RegistryEvent$MissingMappings<T>
, where the type parameter T
is the object type being registered. Within the event, you can grab an immutable list of missing mappings associated with a mod id via #getMappings
or a list of all mappings via #getAllMappings
.
For each Mapping
, you can either execute one of the following methods:
#ignore
which abandons the entry when loading#warn
which warns the user about the missing entry but continues loading#fail
which prevents the world from loading#remap
which remaps the entry to the specified non-null object in the same registry
If none of the above are specified, then the default action of notifying the user about the missing mappings occur.
Here is an example: (the event handler is registered on the mod event bus)
// This will ignore any missing test items from the specified world @SubscribeEvent public void onMissingItems(RegistryEvent.MissingMappings<Item> event){ event.getMappings(MODID).stream() .filter(mapping -> mapping.key.getPath().contains("test")) .forEach(Mapping::ignore); }