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
|
/*
* Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
* Copyright (C) 2021 cyoung06
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package kr.syeyoung.dungeonsguide.features;
import com.google.common.base.Supplier;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import kr.syeyoung.dungeonsguide.config.guiconfig.ConfigPanelCreator;
import kr.syeyoung.dungeonsguide.config.guiconfig.GuiConfig;
import kr.syeyoung.dungeonsguide.config.guiconfig.PanelDefaultParameterConfig;
import kr.syeyoung.dungeonsguide.config.types.TypeConverter;
import kr.syeyoung.dungeonsguide.config.types.TypeConverterRegistry;
import kr.syeyoung.dungeonsguide.gui.MPanel;
import lombok.Getter;
import lombok.Setter;
import net.minecraft.client.Minecraft;
import java.util.*;
public abstract class AbstractFeature {
@Getter
private final String category;
@Getter
private final String name;
@Getter
private final String description;
@Getter
private final String key;
protected Map<String, FeatureParameter> parameters = new HashMap<String, FeatureParameter>();
protected AbstractFeature(String category, String name, String description, String key) {
this.category = category;
this.name = name;
this.description = description;
this.key = key;
}
@Getter
@Setter
private boolean enabled = true;
public List<FeatureParameter> getParameters() { return new ArrayList<FeatureParameter>(parameters.values()); }
public <T> FeatureParameter<T> getParameter(String key) {
return parameters.get(key);
}
public void loadConfig(JsonObject jsonObject) { // gets key, calls it
enabled = jsonObject.get("$enabled").getAsBoolean();
for (Map.Entry<String, FeatureParameter> parameterEntry : parameters.entrySet()) {
JsonElement element = jsonObject.get(parameterEntry.getKey());
if (element == null) continue;
TypeConverter typeConverter = TypeConverterRegistry.getTypeConverter(parameterEntry.getValue().getValue_type());
parameterEntry.getValue().setValue(typeConverter.deserialize(element));
}
}
public JsonObject saveConfig() {
JsonObject object = new JsonObject();
for (Map.Entry<String, FeatureParameter> parameterEntry : parameters.entrySet()) {
TypeConverter typeConverter = TypeConverterRegistry.getTypeConverter(parameterEntry.getValue().getValue_type());
JsonElement obj = typeConverter.serialize(parameterEntry.getValue().getValue());
object.add(parameterEntry.getKey(), obj);
}
object.addProperty("$enabled", isEnabled());
return object;
}
public String getEditRoute(final GuiConfig config) {
ConfigPanelCreator.map.put("base." + key , new Supplier<MPanel>() {
@Override
public MPanel get() {
return new PanelDefaultParameterConfig(config, AbstractFeature.this, Collections.emptyList(), Collections.emptySet());
}
});
return "base." + key ;
}
public boolean isDisyllable() {
return true;
}
}
|