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
263
264
265
|
// package com.anthonyhilyard.iceberg.util;
// import java.lang.invoke.MethodHandle;
// import java.lang.invoke.MethodHandles;
// import java.lang.invoke.MethodType;
// import java.lang.reflect.Field;
// import java.util.List;
// import java.util.Map;
// import java.util.function.Supplier;
// import java.util.stream.Stream;
// import com.anthonyhilyard.iceberg.Loader;
// import com.electronwill.nightconfig.core.CommentedConfig;
// import com.electronwill.nightconfig.core.Config;
// import com.electronwill.nightconfig.core.UnmodifiableConfig;
// import com.google.common.collect.Maps;
// import com.google.common.base.Objects;
// import com.google.common.collect.Iterators;
// import org.apache.commons.lang3.exception.ExceptionUtils;
// import fuzs.configmenusforge.client.gui.data.EntryData;
// import fuzs.configmenusforge.client.gui.data.IEntryData;
// import net.minecraft.network.chat.Component;
// import net.minecraftforge.common.ForgeConfigSpec;
// import net.minecraftforge.fml.unsafe.UnsafeHacks;
// public class ConfigMenusForgeHelper
// {
// private final static Map<Class<?>, List<MethodHandle>> configSpecMethodHandles = Maps.newHashMap();
// private final static Map<Class<?>, Boolean> cachedConfigSpecClasses = Maps.newHashMap();
// private final static MethodType getValuesMethodType = MethodType.methodType(UnmodifiableConfig.class);
// private final static MethodType isLoadedMethodType = MethodType.methodType(boolean.class);
// private final static MethodType saveMethodType = MethodType.methodType(void.class);
// private static Object callMethod(UnmodifiableConfig spec, int methodIndex)
// {
// Class<?> specClass = spec.getClass();
// if (!cachedConfigSpecClasses.containsKey(specClass))
// {
// cacheClass(specClass);
// }
// if (configSpecMethodHandles.containsKey(specClass))
// {
// try
// {
// return configSpecMethodHandles.get(specClass).get(methodIndex).invoke(spec);
// }
// catch (Throwable e)
// {
// Loader.LOGGER.warn(ExceptionUtils.getStackTrace(e));
// }
// }
// return null;
// }
// public static UnmodifiableConfig getValues(UnmodifiableConfig spec)
// {
// return (UnmodifiableConfig) callMethod(spec, 0);
// }
// public static boolean isLoaded(UnmodifiableConfig spec)
// {
// return (Boolean) callMethod(spec, 1);
// }
// public static void save(UnmodifiableConfig spec)
// {
// callMethod(spec, 2);
// }
// public static Boolean cachedValidity(Class<?> specClass)
// {
// return cachedConfigSpecClasses.getOrDefault(specClass, null);
// }
// public static void cacheClass(Class<?> specClass)
// {
// MethodHandle getValuesMethod = null;
// MethodHandle isLoadedMethod = null;
// MethodHandle saveMethod = null;
// try
// {
// getValuesMethod = MethodHandles.lookup().findVirtual(specClass, "getValues", getValuesMethodType);
// isLoadedMethod = MethodHandles.lookup().findVirtual(specClass, "isLoaded", isLoadedMethodType);
// saveMethod = MethodHandles.lookup().findVirtual(specClass, "save", saveMethodType);
// }
// catch (Throwable e)
// {
// Loader.LOGGER.warn(ExceptionUtils.getStackTrace(e));
// }
// // If we found valid getValues, isLoaded and save methods, add them to the cache.
// if (getValuesMethod != null && isLoadedMethod != null && saveMethod != null)
// {
// cachedConfigSpecClasses.put(specClass, true);
// configSpecMethodHandles.put(specClass, List.of(getValuesMethod, isLoadedMethod, saveMethod));
// }
// else
// {
// cachedConfigSpecClasses.put(specClass, false);
// }
// }
// /**
// * Changed spec from a ForgeConfigSpec to an UnmodifiableConfig.
// */
// public static void makeValueToDataMap(UnmodifiableConfig spec, UnmodifiableConfig values, CommentedConfig comments, Map<Object, IEntryData> allData, String basePath)
// {
// for (String path : values.valueMap().keySet())
// {
// String currentPath = basePath.isEmpty() ? path : basePath + "." + path;
// Object value = values.valueMap().get(path);
// if (value instanceof UnmodifiableConfig category)
// {
// final EntryData.CategoryEntryData data = new EntryData.CategoryEntryData(path, category, comments.getComment(path));
// allData.put(category, data);
// makeValueToDataMap(spec, category, (CommentedConfig) comments.valueMap().get(path), allData, currentPath);
// }
// else if (value instanceof ForgeConfigSpec.ConfigValue<?> configValue && configValue.get() instanceof UnmodifiableConfig category)
// {
// final EntryData.CategoryEntryData data = new DynamicCategoryEntryData(path, category, comments.getComment(path));
// allData.put(category, data);
// makeValueToDataMap(spec, category, (CommentedConfig) comments.valueMap().get(path), allData, currentPath);
// }
// else if (value instanceof ForgeConfigSpec.ConfigValue<?> configValue)
// {
// final EntryData.ConfigEntryData<?> data = new EntryData.ConfigEntryData<>(path, configValue, spec.getRaw(configValue.getPath()));
// allData.put(configValue, data);
// }
// // Allow non-configvalue values if the parent is a dynamic subconfig.
// else if (!(value instanceof ForgeConfigSpec.ConfigValue<?>) && allData.containsKey(values) && allData.get(values) instanceof DynamicCategoryEntryData)
// {
// final EntryData.ConfigEntryData<?> data = new DynamicConfigEntryData<>(List.of(currentPath.split("\\.")), value, spec.getRaw(currentPath), spec);
// allData.put(value, data);
// }
// }
// }
// public static class DynamicCategoryEntryData extends EntryData.CategoryEntryData
// {
// public DynamicCategoryEntryData(String path, UnmodifiableConfig config, String comment) {
// super(path, config, comment);
// }
// }
// public static class DynamicConfigEntryData<T> extends EntryData.ConfigEntryData<T>
// {
// private final ForgeConfigSpec.ValueSpec valueSpec;
// private T currentValue;
// private T configValue;
// private final List<String> fullPath;
// private final UnmodifiableConfig spec;
// private final static ForgeConfigSpec.ConfigValue<?> dummyConfigValue;
// private Component title;
// static
// {
// dummyConfigValue = UnsafeHacks.newInstance(ForgeConfigSpec.ConfigValue.class);
// try
// {
// Field specField = ForgeConfigSpec.ConfigValue.class.getDeclaredField("spec");
// UnsafeHacks.setField(specField, dummyConfigValue, UnsafeHacks.newInstance(ForgeConfigSpec.class));
// Field defaultSupplierField = ForgeConfigSpec.ConfigValue.class.getDeclaredField("defaultSupplier");
// UnsafeHacks.setField(defaultSupplierField, dummyConfigValue, (Supplier<?>)(() -> null));
// }
// catch (Exception e) { }
// }
// @SuppressWarnings("unchecked")
// public DynamicConfigEntryData(List<String> fullPath, T configValue, ForgeConfigSpec.ValueSpec valueSpec, UnmodifiableConfig spec)
// {
// super(fullPath.get(fullPath.size() - 1), (ForgeConfigSpec.ConfigValue<T>) dummyConfigValue, valueSpec);
// this.configValue = configValue;
// this.currentValue = configValue;
// this.valueSpec = valueSpec;
// this.fullPath = fullPath;
// this.spec = spec;
// // We will override the normal title functionality since we want it to be unformatted.
// this.title = Component.literal(getPath());
// }
// @Override
// public Component getTitle()
// {
// return this.title;
// }
// @Override
// public boolean mayResetValue()
// {
// return !listSafeEquals(currentValue, getDefaultValue());
// }
// @Override
// public boolean mayDiscardChanges()
// {
// return listSafeEquals(configValue, currentValue);
// }
// private static <T> boolean listSafeEquals(T o1, T o2)
// {
// // Attempts to solve an issue where types of lists won't match when one is read from file
// // (due to enum being converted to string, long to int)
// if (o1 instanceof List<?> list1 && o2 instanceof List<?> list2)
// {
// final Stream<String> stream1 = list1.stream().map(o -> o instanceof Enum<?> e ? e.name() : o.toString());
// final Stream<String> stream2 = list2.stream().map(o -> o instanceof Enum<?> e ? e.name() : o.toString());
// return Iterators.elementsEqual(stream1.iterator(), stream2.iterator());
// }
// return Objects.equal(o1, o2);
// }
// @Override
// public void resetCurrentValue()
// {
// currentValue = getDefaultValue();
// }
// @Override
// public void discardCurrentValue()
// {
// currentValue = configValue;
// }
// @Override
// public void saveConfigValue()
// {
// try
// {
// Field childConfigField = spec.getClass().getDeclaredField("childConfig");
// Config childConfig = UnsafeHacks.getField(childConfigField, spec);
// childConfig.set(fullPath, currentValue);
// }
// catch (Exception e) { }
// configValue = currentValue;
// }
// @SuppressWarnings("unchecked")
// public T getDefaultValue()
// {
// return (T) valueSpec.getDefault();
// }
// public T getCurrentValue()
// {
// return currentValue;
// }
// public void setCurrentValue(T newValue)
// {
// currentValue = newValue;
// }
// @Override
// public List<String> getFullPath()
// {
// return fullPath;
// }
// }
// }
|