blob: e27e08dd74eb9e37c293c73cda4033c96f005f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
package com.anthonyhilyard.iceberg.config;
import javax.annotation.Nonnull;
import com.anthonyhilyard.iceberg.Loader;
import com.electronwill.nightconfig.core.Config;
import org.apache.commons.lang3.tuple.Pair;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.ModLoadingContext;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus;
import net.minecraftforge.fml.config.ModConfig;
import net.minecraftforge.fml.event.config.ModConfigEvent;
@EventBusSubscriber(modid = Loader.MODID, bus = Bus.MOD)
public abstract class IcebergConfig<T extends IcebergConfig<?>>
{
private static IcebergConfigSpec SPEC = null;
private static IcebergConfig<?> INSTANCE = null;
private static String modId = null;
private static boolean registered = false;
protected abstract <I extends IcebergConfig<?>> void setInstance(I instance);
protected void onLoad() {}
protected void onReload() {}
static
{
Config.setInsertionOrderPreserved(true);
}
@SubscribeEvent
private static void onLoadEvent(ModConfigEvent.Loading event)
{
if (modId != null && INSTANCE != null && event.getConfig().getModId().contentEquals(modId))
{
INSTANCE.onLoad();
}
}
@SubscribeEvent
private static void onReloadEvent(ModConfigEvent.Reloading event)
{
if (modId != null && INSTANCE != null && event.getConfig().getModId().contentEquals(modId))
{
INSTANCE.onReload();
}
}
public static final boolean register(Class<? extends IcebergConfig<?>> superClass, @Nonnull String modId)
{
if (registered)
{
return false;
}
IcebergConfig.modId = modId;
Pair<IcebergConfig<?>, IcebergConfigSpec> specPair = new IcebergConfigSpec.Builder().finish((builder) ->
{
IcebergConfig<?> result = null;
try
{
result = (IcebergConfig<?>)superClass.getConstructor(IcebergConfigSpec.Builder.class).newInstance(builder);
}
catch (Exception e)
{
Loader.LOGGER.warn("Failed to register configuration: {}", e);
}
return result;
});
if (specPair.getRight() == null || specPair.getLeft() == null)
{
return false;
}
SPEC = specPair.getRight();
INSTANCE = specPair.getLeft();
INSTANCE.setInstance(specPair.getLeft());
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, SPEC);
registered = true;
return true;
}
}
|