SuperMartijn642's Config Lib

Config Lib makes dealing with config files just a bit easier.

 SuperMartijn642's Config Lib

SuperMartijn642's Config Lib allows you to specify a config once and it then handles reloading values between world loads, syncing values with clients, and generating values for client- or server-only on its own.

 

Seperator

 

Creating a config:

 

A config is created using a ModConfigBuilder.

Simply create a new instance using #ModConfigBuilder().

 

   ModConfigBuilder builder = new ModConfigBuilder();

 

A value can be added to the config with ModConfigBuilder#define which takes a name and a default value.

For integer and double values a minimum and maximum value are also required.

Test code block;

 

ModConfigBuilder#define returns a Supplier which should be stored to retrieve the value from the config.

 

   Supplier<Boolean> booleanValue = builder.define( "booleanValue", true );

   Supplier<Integer> integerValue = builder.define( "integerValue", 5, 0, 10 );

   Supplier<Double> doubleValue = builder.define( "doubleValue", 0.5, 0, 1);

   Supplier<ExampleEnum> enumValue = builder.define( "enumValue", ExampleEnum.VALUE_1 );

 

A comment can be added to a value by calling ModConfigBuilder#comment(String) before defining the value.

 

   Supplier<Boolean> valueWithComment = builder.comment( "this is a comment for 'valueWithComment'" ).define( "valueWithComment ", true );

 

By default values are reloaded when world is loaded.

This can be changed to only reload a value when Minecraft launches by calling ModConfigBuilder#gameRestart() before defining the value.

 

   Supplier<Boolean> notReloadedValue = builder.comment( "this is value will not be reloaded" ).define( "notReloadedValue", true );

 

Values in COMMON or SERVER configs are synchronized with clients by default, to prevent this use ModConfigBuilder#dontSync().

 

   Supplier<Boolean> notSynchronizedValue = builder.comment( "this is value will not be synchronized" ).define( "notSynchronizedValue", true );

 

Values can also be put into categories.

ModConfigBuilder#push(String) pushes a category and ModConfigBuilder#pop() pops a category.

 

   builder.push( "special" );

   Supplier<Boolean> specialValuebuilder.comment( "this value is in the 'special' category" ).define( "specialValue", true );

   builder.pop();

 

A comment can be added to the active category using ModConfigBuilder#categoryComment(String).

 

   builder.push( "client" ).categoryComment( "this, is a comment for the 'client' category" );

 

After defining all values ModConfigBuilder#build() must be called to finish the config.

 

   builder.build();

 

Now the values in your config will reloaded and synced automatically and the values can be retrieved using the stored Supplier instances.

This will work for all available versions, that includes Minecraft 1.12, 1.14, 1.15, and 1.16

 

Seperator

 

Example Mod:

 

For a concrete example of how to use Config Lib checkout the example mod.

 

Seperator

 

Discord

For future content, upcoming mods, and discussion, feel free to join the SuperMartijn642 discord server!

 

Seperator

The SuperMartijn642's Config Lib Team

profile avatar
  • 702
    Followers
  • 34
    Projects
  • 1.0B
    Downloads

¯\(o_o)/¯

Donate

More from SuperMartijn642View all

  • Fusion (Connected Textures) project image

    Fusion (Connected Textures)

    • 89.4M
    • Mods

    Fusion allows resource packs to use additional texture and model types such as connected textures!

    • 89.4M
    • February 2, 2026
    • Mods
    • +1
  • SuperMartijn642's Core Lib project image

    SuperMartijn642's Core Lib

    • 165.2M
    • Mods

    SuperMartijn642's Core Lib adds lots of basic implementations that allow for similar code between different Minecraft versions!

    • 165.2M
    • March 20, 2026
    • Mods
  • Entangled project image

    Entangled

    • 54.9M
    • Mods

    Entangled allows you to 'entangle' two blocks together!

    • 54.9M
    • March 20, 2026
    • Mods
    • +2
  • Rechiseled project image

    Rechiseled

    • 60.5M
    • Mods

    Rechiseled allows you to chisel blocks into various decorative blocks with connected textures!

    • 60.5M
    • February 27, 2026
    • Mods
  • Fusion (Connected Textures) project image

    Fusion (Connected Textures)

    • 89.4M
    • Mods

    Fusion allows resource packs to use additional texture and model types such as connected textures!

    • 89.4M
    • February 2, 2026
    • Mods
    • +1
  • SuperMartijn642's Core Lib project image

    SuperMartijn642's Core Lib

    • 165.2M
    • Mods

    SuperMartijn642's Core Lib adds lots of basic implementations that allow for similar code between different Minecraft versions!

    • 165.2M
    • March 20, 2026
    • Mods
  • Entangled project image

    Entangled

    • 54.9M
    • Mods

    Entangled allows you to 'entangle' two blocks together!

    • 54.9M
    • March 20, 2026
    • Mods
    • +2
  • Rechiseled project image

    Rechiseled

    • 60.5M
    • Mods

    Rechiseled allows you to chisel blocks into various decorative blocks with connected textures!

    • 60.5M
    • February 27, 2026
    • Mods