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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
package me.Danker.handlers;
import java.io.File;
import me.Danker.commands.DisplayCommand;
import me.Danker.commands.LootCommand;
import me.Danker.commands.MoveCommand;
import me.Danker.commands.ToggleCommand;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraftforge.common.config.Configuration;
public class ConfigHandler {
public static Configuration config;
private static String file = "config/Danker's Skyblock Mod.cfg";
public static void init() {
config = new Configuration(new File(file));
try {
config.load();
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
}
public static int getInt(String category, String key) {
config = new Configuration(new File(file));
try {
config.load();
if (config.getCategory(category).containsKey(key)) {
return config.get(category, key, 0).getInt();
}
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
return 0;
}
public static double getDouble(String category, String key) {
config = new Configuration(new File(file));
try {
config.load();
if (config.getCategory(category).containsKey(key)) {
return config.get(category, key, 0D).getDouble();
}
} catch (Exception ex) {
System.err.println(ex);
} finally {
config.save();
}
return 0D;
}
public static String getString(String category, String key) {
config = new Configuration(new File(file));
try {
config.load();
if (config.getCategory(category).containsKey(key)) {
return config.get(category, key, "").getString();
}
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
return "";
}
public static boolean getBoolean(String category, String key) {
config = new Configuration(new File(file));
try {
config.load();
if (config.getCategory(category).containsKey(key)) {
return config.get(category, key, false).getBoolean();
}
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
return true;
}
public static void writeIntConfig(String category, String key, int value) {
config = new Configuration(new File(file));
try {
config.load();
int set = config.get(category, key, value).getInt();
config.getCategory(category).get(key).set(value);
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
}
public static void writeDoubleConfig(String category, String key, double value) {
config = new Configuration(new File(file));
try {
config.load();
double set = config.get(category, key, value).getDouble();
config.getCategory(category).get(key).set(value);
} catch (Exception ex) {
System.err.println(ex);
} finally {
config.save();
}
}
public static void writeStringConfig(String category, String key, String value) {
config = new Configuration(new File(file));
try {
config.load();
String set = config.get(category, key, value).getString();
config.getCategory(category).get(key).set(value);
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
}
public static void writeBooleanConfig(String category, String key, boolean value) {
config = new Configuration(new File(file));
try {
config.load();
boolean set = config.get(category, key, value).getBoolean();
config.getCategory(category).get(key).set(value);
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
}
public static boolean hasKey(String category, String key) {
config = new Configuration(new File(file));
try {
config.load();
if (!config.hasCategory(category)) return false;
return config.getCategory(category).containsKey(key);
} catch (Exception ex) {
System.err.print(ex);
} finally {
config.save();
}
return false;
}
public static void reloadConfig() {
// Config init
if (!hasKey("toggles", "GParty")) writeBooleanConfig("toggles", "GParty", false);
if (!hasKey("toggles", "Coords")) writeBooleanConfig("toggles", "Coords", false);
if (!hasKey("toggles", "Golden")) writeBooleanConfig("toggles", "Golden", false);
if (!hasKey("api", "APIKey")) writeStringConfig("api", "APIKey", "");
// Wolf Loot
if (!hasKey("wolf", "svens")) writeIntConfig("wolf", "svens", 0);
if (!hasKey("wolf", "teeth")) writeIntConfig("wolf", "teeth", 0);
if (!hasKey("wolf", "wheel")) writeIntConfig("wolf", "wheel", 0);
if (!hasKey("wolf", "spirit")) writeIntConfig("wolf", "spirit", 0);
if (!hasKey("wolf", "book")) writeIntConfig("wolf", "book", 0);
if (!hasKey("wolf", "egg")) writeIntConfig("wolf", "egg", 0);
if (!hasKey("wolf", "couture")) writeIntConfig("wolf", "couture", 0);
if (!hasKey("wolf", "bait")) writeIntConfig("wolf", "bait", 0);
if (!hasKey("wolf", "flux")) writeIntConfig("wolf", "flux", 0);
if (!hasKey("wolf", "timeRNG")) writeDoubleConfig("wolf", "timeRNG", -1);
if (!hasKey("wolf", "bossRNG")) writeIntConfig("wolf", "bossRNG", -1);
// Spider Loot
if (!hasKey("spider", "tarantulas")) writeIntConfig("spider", "tarantulas", 0);
if (!hasKey("spider", "web")) writeIntConfig("spider", "web", 0);
if (!hasKey("spider", "tap")) writeIntConfig("spider", "tap", 0);
if (!hasKey("spider", "bite")) writeIntConfig("spider", "bite", 0);
if (!hasKey("spider", "catalyst")) writeIntConfig("spider", "catalyst", 0);
if (!hasKey("spider", "book")) writeIntConfig("spider", "book", 0);
if (!hasKey("spider", "swatter")) writeIntConfig("spider", "swatter", 0);
if (!hasKey("spider", "talisman")) writeIntConfig("spider", "talisman", 0);
if (!hasKey("spider", "mosquito")) writeIntConfig("spider", "mosquito", 0);
if (!hasKey("spider", "timeRNG")) writeDoubleConfig("spider", "timeRNG", -1);
if (!hasKey("spider", "bossRNG")) writeIntConfig("spider", "bossRNG", -1);
// Zombie Loot
if (!hasKey("zombie", "revs")) writeIntConfig("zombie", "revs", 0);
if (!hasKey("zombie", "revFlesh")) writeIntConfig("zombie", "revFlesh", 0);
if (!hasKey("zombie", "foulFlesh")) writeIntConfig("zombie", "foulFlesh", 0);
if (!hasKey("zombie", "pestilence")) writeIntConfig("zombie", "pestilence", 0);
if (!hasKey("zombie", "undeadCatalyst")) writeIntConfig("zombie", "undeadCatalyst", 0);
if (!hasKey("zombie", "book")) writeIntConfig("zombie", "book", 0);
if (!hasKey("zombie", "beheaded")) writeIntConfig("zombie", "beheaded", 0);
if (!hasKey("zombie", "revCatalyst")) writeIntConfig("zombie", "revCatalyst", 0);
if (!hasKey("zombie", "snake")) writeIntConfig("zombie", "snake", 0);
if (!hasKey("zombie", "scythe")) writeIntConfig("zombie", "scythe", 0);
if (!hasKey("zombie", "timeRNG")) writeDoubleConfig("zombie", "timeRNG", -1);
if (!hasKey("zombie", "bossRNG")) writeIntConfig("zombie", "bossRNG", -1);
if (!hasKey("misc", "display")) writeStringConfig("misc", "display", "off");
ScaledResolution scaled = new ScaledResolution(Minecraft.getMinecraft());
int height = scaled.getScaledHeight();
if (!hasKey("locations", "coordsX")) writeIntConfig("locations", "coordsX", 5);
if (!hasKey("locations", "coordsY")) writeIntConfig("locations", "coordsY", height - 25);
if (!hasKey("locations", "displayX")) writeIntConfig("locations", "displayX", 80);
if (!hasKey("locations", "displayY")) writeIntConfig("locations", "displayY", 5);
final ToggleCommand tf = new ToggleCommand();
tf.gpartyToggled = getBoolean("toggles", "GParty");
tf.coordsToggled = getBoolean("toggles", "Coords");
tf.goldenToggled = getBoolean("toggles", "Golden");
final LootCommand lc = new LootCommand();
// Wolf
lc.wolfSvens = getInt("wolf", "svens");
lc.wolfTeeth = getInt("wolf", "teeth");
lc.wolfWheels = getInt("wolf", "wheel");
lc.wolfSpirits = getInt("wolf", "spirit");
lc.wolfBooks = getInt("wolf", "book");
lc.wolfEggs = getInt("wolf", "egg");
lc.wolfCoutures = getInt("wolf", "couture");
lc.wolfBaits = getInt("wolf", "bait");
lc.wolfFluxes = getInt("wolf", "flux");
lc.wolfTime = getDouble("wolf", "timeRNG");
lc.wolfBosses = getInt("wolf", "bossRNG");
// Spider
lc.spiderTarantulas = getInt("spider", "tarantulas");
lc.spiderWebs = getInt("spider", "web");
lc.spiderTAP = getInt("spider", "tap");
lc.spiderBites = getInt("spider", "bite");
lc.spiderCatalysts = getInt("spider", "catalyst");
lc.spiderBooks = getInt("spider", "book");
lc.spiderSwatters = getInt("spider", "swatter");
lc.spiderTalismans = getInt("spider", "talisman");
lc.spiderMosquitos = getInt("spider", "mosquito");
lc.spiderTime = getDouble("spider", "timeRNG");
lc.spiderBosses = getInt("spider", "bossRNG");
// Zombie
lc.zombieRevs = getInt("zombie", "revs");
lc.zombieRevFlesh = getInt("zombie", "revFlesh");
lc.zombieFoulFlesh = getInt("zombie", "foulFlesh");
lc.zombiePestilences = getInt("zombie", "pestilence");
lc.zombieUndeadCatas = getInt("zombie", "undeadCatalyst");
lc.zombieBooks = getInt("zombie", "book");
lc.zombieBeheadeds = getInt("zombie", "beheaded");
lc.zombieRevCatas = getInt("zombie", "revCatalyst");
lc.zombieSnakes = getInt("zombie", "snake");
lc.zombieScythes = getInt("zombie", "scythe");
lc.zombieTime = getDouble("zombie", "timeRNG");
lc.zombieBosses = getInt("zombie", "bossRNG");
final DisplayCommand ds = new DisplayCommand();
ds.display = getString("misc", "display");
final MoveCommand moc = new MoveCommand();
moc.coordsXY[0] = getInt("locations", "coordsX");
moc.coordsXY[1] = getInt("locations", "coordsY");
moc.displayXY[0] = getInt("locations", "displayX");
moc.displayXY[1] = getInt("locations", "displayY");
}
}
|