Configuration
Configurations define settings and consumer preferences that can be applied to a mod instance. NeoForge uses a configuration system using TOML files and read with NightConfig.
Creating a Configuration
A configuration can be created using a subtype of IConfigSpec. NeoForge implements the type via ModConfigSpec and enables its construction through ModConfigSpec.Builder. The builder can separate the config values into sections via Builder#push to create a section and Builder#pop to leave a section. Afterwards, the configuration can be built using one of two methods:
| Method | Description |
|---|---|
build | Creates the ModConfigSpec. |
configure | Creates a pair of the class holding the config values and the ModConfigSpec. |
ModConfigSpec.Builder#configure is typically used with a static block and a class that takes in ModConfigSpec.Builder as part of its constructor to attach and hold the values:
// In some config class
ExampleConfig(ModConfigSpec.Builder builder) {
// Define values here in final fields
}
// Somewhere the constructor is accessible
static {
Pair<ExampleConfig, ModConfigSpec> pair = new ModConfigSpec.Builder()
.configure(ExampleConfig::new);
// Store pair values in some constant field
}
Each config value can be supplied with additional context to provide additional behavior. Contexts must be defined before the config value is fully built:
| Method | Description |
|---|---|
comment | Provides a description of what the config value does. Can provide multiple strings for a multiline comment. |
translation | Provides a translation key for the name of the config value. |
worldRestart | The world must be restarted before the config value can be changed. |
ConfigValue
Config values can be built with the provided contexts (if defined) using any of the #define methods.
All config value methods take in at least two components:
- A path representing the name of the variable: a
.separated string representing the sections the config value is in - The default value when no valid configuration is present
The ConfigValue specific methods take in two additional components:
- A validator to make sure the deserialized object is valid
- A class representing the data type of the config value
// For some ModConfigSpec.Builder builder
ConfigValue<T> value = builder.comment("Comment")
.define("config_value_name", defaultValue);
The values themselves can be obtained using ConfigValue#get. The values are additionally cached to prevent multiple readings from files.
Additional Config Value Types
- Range Values
- Description: Value must be between the defined bounds
- Class Type:
Comparable<T> - Method Name:
#defineInRange - Additional Components:
- The minimum and maximum the config value may be
- A class representing the data type of the config value
DoubleValues, IntValues, and LongValues are range values which specify the class as Double, Integer, and Long respectively.
-
Whitelisted Values
- Description: Value must be in supplied collection
- Class Type:
T - Method Name:
#defineInList - Additional Components:
- A collection of the allowed values the configuration can be
-
List Values
- Description: Value is a list of entries
- Class Type:
List<T> - Method Name:
#defineList,#defineListAllowEmptyif list can be empty - Additional Components:
- A validator to make sure a deserialized element from the list is valid
-
Enum Values
- Description: An enum value in the supplied collection
- Class Type:
Enum<T> - Method Name:
#defineEnum - Additional Components:
- A getter to convert a string or integer into an enum
- A collection of the allowed values the configuration can be
-
Boolean Values
- Description: A
booleanvalue - Class Type:
Boolean - Method Name:
#define
- Description: A
Registering a Configuration
Once a ModConfigSpec has been built, it must be registered to allow NeoForge to load, track, and sync the configuration settings as required. Configurations should be registered in the mod constructor via ModConatiner#registerConfig. A configuration can be registered with a given type representing the side the config belongs to, the ModConfigSpec, and optionally a specific file name for the configuration.
// In the main mod file with a ModConfigSpec CONFIG
public ExampleMod(ModContainer container) {
container.registerConfig(ModConfig.Type.COMMON, CONFIG);
// Do other things
}
Configuration Types
Configuration types determine where the configuration file is located, what time it is loaded, and whether the file is synced across the network. All configurations are, by default, either loaded from .minecraft/config on the physical client or <server_folder>/config on the physical server. Some nuances between each configuration type can be found in the following subsections.
NeoForge documents the config types within their codebase.
STARTUP- Loaded on both the physical client and physical server from the config folder
- Read immediately on registration
- NOT synced across the network
- Suffixed with
-startupby default
Configurations registered under the STARTUP type can cause desyncs between the client and server, such as if the configuration is used to disable the registration of content. Therefore, it is highly recommended that any configurations within STARTUP are not used to enable or disable features that may change the content of the mod.
CLIENT- Loaded ONLY on the physical client from the config folder
- There is no server location for this configuration type
- Read immedately before
FMLCommonSetupEventis fired - NOT synced across the network
- Suffixed with
-clientby default
- Loaded ONLY on the physical client from the config folder
COMMON- Loaded on both the physical client and physical server from the config folder
- Read immedately before
FMLCommonSetupEventis fired - NOT synced across the network
- Suffixed with
-commonby default
SERVER- Loaded on both the physical client and physical server from the config folder
- Can be overridden for each world by adding a config to:
- Client:
.minecraft/saves/<world_name>/serverconfig - Server:
<server_folder>/world/serverconfig
- Client:
- Can be overridden for each world by adding a config to:
- Read immedately before
ServerAboutToStartEventis fired - Synced across the network to the client
- Suffixed with
-serverby default
- Loaded on both the physical client and physical server from the config folder
Configuration Events
Operations that occur whenever a config is loaded or reloaded can be done using the ModConfigEvent.Loading and ModConfigEvent.Reloading events. The events must be registered to the mod event bus.
These events are called for all configurations for the mod; the ModConfig object provided should be used to denote which configuration is being loaded or reloaded.