blob: 479192d44c8012954875869dea4a11ee0eedb51b (
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
|
package cc.polyfrost.oneconfig.internal;
import cc.polyfrost.oneconfig.events.EventManager;
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.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.utils.commands.CommandManager;
import cc.polyfrost.oneconfig.utils.gui.GuiUtils;
import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.io.File;
/**
* The main class of OneConfig.
*/
@net.minecraftforge.fml.common.Mod(modid = "@ID@", name = "@NAME@", version = "@VER@")
public class OneConfig {
public static final File oneConfigDir = new File("./OneConfig");
public static final Logger LOGGER = LogManager.getLogger("@NAME@");
public static OneConfigConfig config;
public static Preferences preferences;
private static boolean preLaunched = false;
private static boolean initialized = false;
private static boolean isObfuscated = true;
/**
* Called before mods are loaded.
* <p><b>SHOULD NOT BE CALLED!</b></p>
*/
public static void preLaunch() {
if (preLaunched) return;
try {
Class.forName("net.minecraft.world.World");
LOGGER.warn("OneConfig is NOT obfuscated!");
isObfuscated = false;
} catch (Exception ignored) {
}
if (!net.minecraft.launchwrapper.Launch.blackboard.containsKey("oneconfig.initialized")) {
throw new RuntimeException("OneConfig has not been initialized! Please add the OneConfig tweaker or call OneConfigInit via an ITweaker or a FMLLoadingPlugin!");
}
oneConfigDir.mkdirs();
new File(oneConfigDir, "profiles").mkdirs();
config = new OneConfigConfig();
preferences = new Preferences();
preLaunched = true;
}
/**
* Called after mods are loaded.
* <p><b>SHOULD NOT BE CALLED!</b></p>
*/
@SuppressWarnings("ResultOfMethodCallIgnored")
public static void init() {
if (initialized) return;
GuiUtils.getDeltaTime(); // called to make sure static initializer is called
BlurHandler.INSTANCE.load();
CommandManager.INSTANCE.registerCommand(OneConfigCommand.class);
EventManager.INSTANCE.register(new HudCore());
EventManager.INSTANCE.register(HypixelUtils.INSTANCE);
EventManager.INSTANCE.register(KeyBindHandler.INSTANCE);
ConfigCore.sortMods();
initialized = true;
}
/** Returns weather this is an obfuscated environment, using a check for obfuscated name of net.minecraft.world.World.class.
* @return true if this is an obfuscated environment, which is normal for Minecraft or false if not. */
public static boolean isObfuscated() {
return isObfuscated;
}
}
|