blob: 0ce06701de9c0c0bf3549cd2a90b6580f09f5577 (
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
90
91
92
93
94
95
96
97
98
99
100
|
package com.anthonyhilyard.iceberg.config;
import java.util.Set;
import javax.annotation.Nonnull;
import com.anthonyhilyard.iceberg.Loader;
import com.electronwill.nightconfig.core.Config;
import com.google.common.collect.Sets;
import org.apache.commons.lang3.tuple.Pair;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.ModLoadingContext;
import net.minecraftforge.fml.config.ModConfig;
import net.minecraftforge.fml.event.config.ModConfigEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
public abstract class IcebergConfig<T extends IcebergConfig<?>>
{
private static IcebergConfigSpec SPEC = null;
private static IcebergConfig<?> INSTANCE = null;
private static String modId = null;
private static Set<Class<?>> registeredClasses = Sets.newHashSet();
protected abstract <I extends IcebergConfig<?>> void setInstance(I instance);
protected void onLoad() {}
protected void onReload() {}
static
{
Config.setInsertionOrderPreserved(true);
}
@SubscribeEvent
protected final static void onLoadEvent(ModConfigEvent.Loading event)
{
if (modId != null && INSTANCE != null && event.getConfig().getModId().contentEquals(modId))
{
INSTANCE.onLoad();
}
}
@SubscribeEvent
protected final 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 (registeredClasses.contains(superClass))
{
Loader.LOGGER.warn("Failed to register configuration: {} is already registered!", superClass.getName());
return false;
}
IcebergConfig.modId = modId;
FMLJavaModLoadingContext.get().getModEventBus().register(superClass);
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)
{
Loader.LOGGER.warn("Failed to register configuration: Generated spec was null!");
return false;
}
if (specPair.getLeft() == null)
{
Loader.LOGGER.warn("Failed to register configuration: Generated configuration instance was null!");
return false;
}
SPEC = specPair.getRight();
INSTANCE = specPair.getLeft();
INSTANCE.setInstance(specPair.getLeft());
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, SPEC);
registeredClasses.add(superClass);
return true;
}
}
|