blob: 6baa6c115af5cc77685dcce7b896082ffb8a7e1d (
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
|
package miscutil.core.lib;
import miscutil.core.util.Utils;
import miscutil.gregtech.common.GregtechRecipeAdder;
import cpw.mods.fml.common.Loader;
public class LoadedMods {
//Initialize Variables
public static boolean Gregtech = false;
public static boolean EnderIO = false;
public static boolean Big_Reactors = false;
public static boolean IndustrialCraft2 = false;
public static boolean Simply_Jetpacks = false;
public static boolean RFTools = false;
public static boolean Thaumcraft = false;
public static boolean Extra_Utils = false;
public static boolean PneumaticCraft = false;
public static boolean MorePlanets = false;
public static boolean ForbiddenMagic = false;
public static boolean CompactWindmills = false;
public static boolean Railcraft = false;
public static boolean Growthcraft = false;
public static boolean CoFHCore = false;
public static boolean MiscUtils = true; //Dummy For MetaData Lookups in MT Wrapper
private static int totalMods;
@SuppressWarnings("deprecation")
public static void checkLoaded(){
Utils.LOG_INFO("Looking for optional mod prereqs.");
if (Loader.isModLoaded("gregtech") == true ){
Gregtech = true;
Utils.LOG_INFO("Components enabled for: Gregtech");
if (Gregtech){
try {
CORE.sRecipeAdder = CORE.RA = new GregtechRecipeAdder();
Utils.LOG_INFO("Created a Gregtech recipe handler.");
} catch (NullPointerException e){
Utils.LOG_INFO("Could NOT create a Gregtech recipe handler.");
}
}
totalMods++;
}
if (Loader.isModLoaded("EnderIO") == true){
EnderIO = true;
Utils.LOG_INFO("Components enabled for: EnderIO");
totalMods++;
}
if (Loader.isModLoaded("BigReactors") == true){
Big_Reactors = true;
Utils.LOG_INFO("Components enabled for: Big Reactors");
totalMods++;
}
if (Loader.isModLoaded("IC2") == true){
IndustrialCraft2 = true;
Utils.LOG_INFO("Components enabled for: IndustrialCraft2");
totalMods++;
}
if (Loader.isModLoaded("simplyjetpacks") == true){
Simply_Jetpacks = true;
Utils.LOG_INFO("Components enabled for: Simply Jetpacks");
totalMods++;
}
if (Loader.isModLoaded("rftools") == true){
RFTools = true;
Utils.LOG_INFO("Components enabled for: RFTools");
totalMods++;
}
if (Loader.isModLoaded("Thaumcraft") == true){
Thaumcraft = true;
Utils.LOG_INFO("Components enabled for: Thaumcraft");
totalMods++;
}
if (Loader.isModLoaded("ExtraUtilities") == true){
Extra_Utils = true;
Utils.LOG_INFO("Components enabled for: Extra_Utils");
totalMods++;
}
if (Loader.isModLoaded("PneumaticCraft") == true){
PneumaticCraft = true;
Utils.LOG_INFO("Components enabled for: PneumaticCraft");
totalMods++;
}
if (Loader.isModLoaded("MorePlanet") == true){
MorePlanets = true;
Utils.LOG_INFO("Components enabled for: MorePlanets");
totalMods++;
}
if (Loader.isModLoaded("ForbiddenMagic") == true){
ForbiddenMagic = true;
Utils.LOG_INFO("Components enabled for: ForbiddenMagic");
totalMods++;
}
if (Loader.isModLoaded("CompactWindmills") == true){
CompactWindmills = true;
Utils.LOG_INFO("Components enabled for: CompactWindmills");
totalMods++;
}
if (Loader.isModLoaded("Railcraft") == true){
Railcraft = true;
Utils.LOG_INFO("Components enabled for: Railcraft");
totalMods++;
}
if (Loader.isModLoaded("Growthcraft") == true){
Growthcraft = true;
Utils.LOG_INFO("Components enabled for: Growthcraft");
totalMods++;
}
if (Loader.isModLoaded("CoFHCore") == true){
CoFHCore = true;
Utils.LOG_INFO("Components enabled for: CoFHCore");
totalMods++;
}
Utils.LOG_INFO("Content found for "+totalMods+" mods");
}
}
|