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
|
package io.github.moulberry.notenoughupdates.util;
import com.google.gson.*;
import io.github.moulberry.notenoughupdates.collectionlog.CollectionConstant;
import java.lang.reflect.Type;
import java.util.concurrent.locks.ReentrantLock;
import java.util.regex.Pattern;
public class Constants {
private static class PatternSerializer implements JsonDeserializer<Pattern>, JsonSerializer<Pattern> {
@Override
public Pattern deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
return Pattern.compile(json.getAsString());
}
@Override
public JsonElement serialize(Pattern src, Type typeOfSrc, JsonSerializationContext context) {
return new JsonPrimitive(src.pattern());
}
}
private static final Gson gson = new GsonBuilder().setPrettyPrinting()
.registerTypeAdapter(Pattern.class, new PatternSerializer()).create();
public static JsonObject BONUSES;
public static JsonObject DISABLE;
public static JsonObject ENCHANTS;
public static JsonObject LEVELING;
public static JsonObject MISC;
public static JsonObject PETNUMS;
public static JsonObject PETS;
public static JsonObject PARENTS;
public static JsonObject ESSENCECOSTS;
public static JsonObject FAIRYSOULS;
public static JsonObject REFORGESTONES;
public static CollectionConstant COLLECTIONLOG;
private static final ReentrantLock lock = new ReentrantLock();
public static void reload() {
try {
lock.lock();
BONUSES = Utils.getConstant("bonuses", gson);
DISABLE = Utils.getConstant("disable", gson);
ENCHANTS = Utils.getConstant("enchants", gson);
LEVELING = Utils.getConstant("leveling", gson);
MISC = Utils.getConstant("misc", gson);
PETNUMS = Utils.getConstant("petnums", gson);
PETS = Utils.getConstant("pets", gson);
PARENTS = Utils.getConstant("parents", gson);
ESSENCECOSTS = Utils.getConstant("essencecosts", gson);
FAIRYSOULS = Utils.getConstant("fairy_souls", gson);
REFORGESTONES = Utils.getConstant("reforgestones", gson);
//COLLECTIONLOG = Utils.getConstant("collectionlog", gson, CollectionConstant.class);
} finally {
lock.unlock();
}
}
}
|