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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
package dev.isxander.yacl.test;
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
import com.terraformersmc.modmenu.api.ModMenuApi;
import dev.isxander.yacl.api.*;
import dev.isxander.yacl.gui.controllers.ActionController;
import dev.isxander.yacl.gui.controllers.BooleanController;
import dev.isxander.yacl.gui.controllers.EnumController;
import dev.isxander.yacl.gui.controllers.TickBoxController;
import dev.isxander.yacl.gui.controllers.slider.DoubleSliderController;
import dev.isxander.yacl.gui.controllers.slider.FloatSliderController;
import dev.isxander.yacl.gui.controllers.slider.IntegerSliderController;
import dev.isxander.yacl.gui.controllers.slider.LongSliderController;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.toast.SystemToast;
import net.minecraft.text.Text;
public class ModMenuIntegration implements ModMenuApi {
@Override
public ConfigScreenFactory<?> getModConfigScreenFactory() {
return getWikiButton();
}
private ConfigScreenFactory<?> getFullTestSuite() {
return (parent) -> YetAnotherConfigLib.createBuilder()
.title(Text.of("Test GUI"))
.category(ConfigCategory.createBuilder()
.name(Text.of("Control Examples"))
.tooltip(Text.of("Example Category Description"))
.option(Option.createBuilder(boolean.class)
.name(Text.of("Boolean Toggle"))
.binding(
false,
() -> TestSettings.booleanToggle,
(value) -> TestSettings.booleanToggle = value
)
.controller(BooleanController::new)
.build())
.option(Option.createBuilder(boolean.class)
.name(Text.of("Tick Box"))
.tooltip(Text.of("Super long tooltip that is very descriptive to show off the text wrapping features of the thingy yes whwowwoow"))
.binding(
false,
() -> TestSettings.tickbox,
(value) -> TestSettings.tickbox = value
)
.controller(TickBoxController::new)
.build())
.option(Option.createBuilder(int.class)
.name(Text.of("Int Slider that is cut off because the slider"))
.binding(
0,
() -> TestSettings.intSlider,
(value) -> TestSettings.intSlider = value
)
.controller(opt -> new IntegerSliderController(opt, 0, 3, 1))
.build())
.option(Option.createBuilder(double.class)
.name(Text.of("Double Slider"))
.binding(
0.0,
() -> TestSettings.doubleSlider,
(value) -> TestSettings.doubleSlider = value
)
.controller(opt -> new DoubleSliderController(opt, 0, 3, 0.05))
.build())
.option(Option.createBuilder(float.class)
.name(Text.of("Float Slider"))
.binding(
0f,
() -> TestSettings.floatSlider,
(value) -> TestSettings.floatSlider = value
)
.controller(opt -> new FloatSliderController(opt, 0, 3, 0.1f))
.build())
.option(Option.createBuilder(long.class)
.name(Text.of("Long Slider"))
.binding(
0L,
() -> TestSettings.longSlider,
(value) -> TestSettings.longSlider = value
)
.controller(opt -> new LongSliderController(opt, 0, 1_000_000, 100))
.build())
.option(Option.createBuilder(TestSettings.Alphabet.class)
.name(Text.of("Enum Cycler"))
.binding(
TestSettings.Alphabet.A,
() -> TestSettings.enumOption,
(value) -> TestSettings.enumOption = value
)
.controller(opt -> new EnumController<>(opt, TestSettings.Alphabet.class))
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Button \"Option\""))
.action(() -> SystemToast.add(MinecraftClient.getInstance().getToastManager(), SystemToast.Type.TUTORIAL_HINT, Text.of("Button Pressed"), Text.of("Button option was invoked!")))
.controller(ActionController::new)
.build())
.build())
.category(ConfigCategory.createBuilder()
.name(Text.of("Group Test"))
.option(Option.createBuilder(boolean.class)
.name(Text.of("Root Test"))
.binding(
false,
() -> TestSettings.groupTestRoot,
value -> TestSettings.groupTestRoot = value
)
.controller(TickBoxController::new)
.build())
.group(OptionGroup.createBuilder()
.name(Text.of("First Group"))
.option(Option.createBuilder(boolean.class)
.name(Text.of("First Group Test 1"))
.binding(
false,
() -> TestSettings.groupTestFirstGroup,
value -> TestSettings.groupTestFirstGroup = value
)
.controller(TickBoxController::new)
.build())
.option(Option.createBuilder(boolean.class)
.name(Text.of("First Group Test 2"))
.binding(
false,
() -> TestSettings.groupTestFirstGroup2,
value -> TestSettings.groupTestFirstGroup2 = value
)
.controller(TickBoxController::new)
.build())
.build())
.group(OptionGroup.createBuilder()
.name(Text.empty())
.option(Option.createBuilder(boolean.class)
.name(Text.of("Second Group Test"))
.binding(
false,
() -> TestSettings.groupTestSecondGroup,
value -> TestSettings.groupTestSecondGroup = value
)
.controller(TickBoxController::new)
.build())
.build())
.build())
.category(ConfigCategory.createBuilder()
.name(Text.of("Scroll Test"))
.option(Option.createBuilder(int.class)
.name(Text.of("Int Slider that is cut off because the slider"))
.binding(
0,
() -> TestSettings.scrollingSlider,
(value) -> TestSettings.scrollingSlider = value
)
.controller(opt -> new IntegerSliderController(opt, 0, 10, 1))
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.option(ButtonOption.createBuilder()
.name(Text.of("Option"))
.action(() -> {})
.controller(ActionController::new)
.build())
.build())
.build().generateScreen(parent);
}
private ConfigScreenFactory<?> getWikiBasic() {
return (parent) -> YetAnotherConfigLib.createBuilder()
.title(Text.of("Mod Name"))
.category(ConfigCategory.createBuilder()
.name(Text.of("My Category"))
.tooltip(Text.of("This displays when you hover over a category button")) // optional
.option(Option.createBuilder(boolean.class)
.name(Text.of("My Boolean Option"))
.tooltip(Text.of("This option displays the basic capabilities of YetAnotherConfigLib")) // optional
.binding(
true, // default
() -> TestSettings.booleanToggle, // getter
newValue -> TestSettings.booleanToggle = newValue // setter
)
.controller(BooleanController::new)
.build())
.build())
.save(TestSettings::save)
.build()
.generateScreen(parent);
}
private ConfigScreenFactory<?> getWikiGroups() {
return (parent) -> YetAnotherConfigLib.createBuilder()
.title(Text.of("Mod Name"))
.category(ConfigCategory.createBuilder()
.name(Text.of("My Category"))
.tooltip(Text.of("This displays when you hover over a category button")) // optional
.group(OptionGroup.createBuilder()
.name(Text.of("Option Group"))
.option(Option.createBuilder(boolean.class)
.name(Text.of("My Boolean Option"))
.tooltip(Text.of("This option displays the basic capabilities of YetAnotherConfigLib")) // optional
.binding(
true, // default
() -> TestSettings.booleanToggle, // getter
newValue -> TestSettings.booleanToggle = newValue // setter
)
.controller(BooleanController::new)
.build())
.build())
.build())
.save(TestSettings::save)
.build()
.generateScreen(parent);
}
private ConfigScreenFactory<?> getWikiButton() {
return (parent) -> YetAnotherConfigLib.createBuilder()
.title(Text.of("Mod Name"))
.category(ConfigCategory.createBuilder()
.name(Text.of("My Category"))
.tooltip(Text.of("This displays when you hover over a category button")) // optional
.option(ButtonOption.createBuilder()
.name(Text.of("Pressable Button"))
.tooltip(Text.of("This is so easy!")) // optional
.action(() -> {})
.controller(ActionController::new)
.build())
.build())
.save(TestSettings::save)
.build()
.generateScreen(parent);
}
private static class TestSettings {
private static boolean booleanToggle = false;
private static boolean tickbox = false;
private static int intSlider = 0;
private static double doubleSlider = 0;
private static float floatSlider = 0;
private static long longSlider = 0;
private static Alphabet enumOption = Alphabet.A;
private static boolean groupTestRoot = false;
private static boolean groupTestFirstGroup = false;
private static boolean groupTestFirstGroup2 = false;
private static boolean groupTestSecondGroup = false;
private static int scrollingSlider = 0;
public enum Alphabet {
A, B, C
}
public static void save() {
}
}
}
|