blob: 398aceb7928138170c583213072fc85550475a69 (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
package cc.polyfrost.oneconfig.internal;
import cc.polyfrost.oneconfig.config.data.Mod;
import cc.polyfrost.oneconfig.config.data.ModType;
import cc.polyfrost.oneconfig.events.EventManager;
import cc.polyfrost.oneconfig.events.event.ShutdownEvent;
import cc.polyfrost.oneconfig.internal.command.OneConfigCommand;
import cc.polyfrost.oneconfig.internal.config.OneConfigConfig;
import cc.polyfrost.oneconfig.internal.config.Preferences;
import cc.polyfrost.oneconfig.internal.config.compatibility.forge.ForgeCompat;
import cc.polyfrost.oneconfig.internal.config.core.ConfigCore;
import cc.polyfrost.oneconfig.internal.config.core.KeyBindHandler;
import cc.polyfrost.oneconfig.internal.gui.BlurHandler;
import cc.polyfrost.oneconfig.internal.hud.HudCore;
import cc.polyfrost.oneconfig.libs.eventbus.Subscribe;
import cc.polyfrost.oneconfig.utils.commands.CommandManager;
import cc.polyfrost.oneconfig.utils.gui.GuiUtils;
import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiScreen;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
//#if FORGE==1
import net.minecraftforge.fml.common.ModContainer;
//#endif
//#if MC<=11202
import net.minecraftforge.fml.client.FMLClientHandler;
import net.minecraftforge.fml.client.IModGuiFactory;
import net.minecraftforge.fml.common.Loader;
//#endif
import java.util.Map;
/**
* The main class of OneConfig.
*/
//#if MC<=11202
@net.minecraftforge.fml.common.Mod(modid = "@ID@", name = "@NAME@", version = "@VER@")
//#else
//#if FORGE==1
//$$ @net.minecraftforge.fml.common.Mod("@ID@")
//#endif
//#endif
public class OneConfig {
public OneConfig() {
EventManager.INSTANCE.register(this);
}
public static final Logger LOGGER = LogManager.getLogger("@NAME@");
private static boolean initialized = false;
/**
* Called after mods are loaded.
* <p><b>SHOULD NOT BE CALLED!</b></p>
*/
@SuppressWarnings("ResultOfMethodCallIgnored")
public static void init() {
if (initialized) return;
if (OneConfigConfig.getInstance() == null) {
OneConfigConfig.getInstance();
}
if (Preferences.getInstance() == null) {
Preferences.getInstance();
}
//#if FORGE==1
//#if MC<=11202
for (ModContainer mod : Loader.instance().getActiveModList()) {
IModGuiFactory factory = FMLClientHandler.instance().getGuiFactoryFor(mod);
//#if MC<=10809
if (factory == null || factory.mainConfigGuiClass() == null) continue;
//#else
//$$ if (factory == null || !factory.hasConfigGui()) continue;
//#endif
ForgeCompat.compatMods.put(new ForgeCompat.ForgeCompatMod(mod.getName(), ModType.THIRD_PARTY), () -> {
try {
GuiUtils.displayScreen(
//#if MC<=10809
factory.mainConfigGuiClass().getConstructor(GuiScreen.class).newInstance(Minecraft.getMinecraft().currentScreen)
//#else
//$$ factory.createConfigGui(Minecraft.getMinecraft().currentScreen)
//#endif
);
} catch (Exception e) {
e.printStackTrace();
}
});
}
//#else
//$$ try {
//$$ java.lang.reflect.Field mods = net.minecraftforge.fml.ModList.class.getDeclaredField("mods");
//$$ mods.setAccessible(true);
//$$ for (ModContainer container : ((java.util.List<ModContainer>) mods.get(net.minecraftforge.fml.ModList.get()))) {
//$$ try {
//$$ java.util.Optional<java.util.function.BiFunction<Minecraft, net.minecraft.client.gui.screen.Screen, net.minecraft.client.gui.screen.Screen>> gui = container.getCustomExtension(net.minecraftforge.fml.ExtensionPoint.CONFIGGUIFACTORY);
//$$ gui.ifPresent(minecraftScreenScreenBiFunction -> ForgeCompat.compatMods.put(new ForgeCompat.ForgeCompatMod(container.getModId(), ModType.THIRD_PARTY), () -> {
//$$ net.minecraft.client.gui.screen.Screen screen = minecraftScreenScreenBiFunction.apply(Minecraft.getInstance(), Minecraft.getInstance().currentScreen);
//$$ if (screen != null) {
//$$ GuiUtils.displayScreen(screen);
//$$ }
//$$ }));
//$$ } catch (Exception e) {
//$$ e.printStackTrace();
//$$ }
//$$ }
//$$ } catch (Exception e) {
//$$ e.printStackTrace();
//$$ }
//#endif
for (Map.Entry<Mod, Runnable> entry : ForgeCompat.compatMods.entrySet()) {
ConfigCore.mods.add(entry.getKey());
}
//#endif
GuiUtils.getDeltaTime(); // called to make sure static initializer is called
try {
EventManager.INSTANCE.register(BlurHandler.INSTANCE);
} catch (Exception e) {
e.printStackTrace();
}
CommandManager.INSTANCE.registerCommand(OneConfigCommand.class);
EventManager.INSTANCE.register(new HudCore());
HypixelUtils.INSTANCE.initialize();
EventManager.INSTANCE.register(KeyBindHandler.INSTANCE);
ConfigCore.sortMods();
initialized = true;
}
@Subscribe
private void onShutdown(ShutdownEvent event) {
ConfigCore.saveAll();
}
}
|