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
|
package me.Danker;
import java.io.File;
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 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 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;
}
}
|