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 dev.isxander.yacl3.test;
import com.google.common.collect.Lists;
import dev.isxander.yacl3.api.NameableEnum;
import dev.isxander.yacl3.api.Option;
import dev.isxander.yacl3.api.controller.ControllerBuilder;
import dev.isxander.yacl3.api.controller.StringControllerBuilder;
import dev.isxander.yacl3.config.v2.api.ConfigClassHandler;
import dev.isxander.yacl3.config.v2.api.ConfigField;
import dev.isxander.yacl3.config.v2.api.autogen.Boolean;
import dev.isxander.yacl3.config.v2.api.autogen.Label;
import dev.isxander.yacl3.config.v2.api.serializer.GsonConfigSerializerBuilder;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
import dev.isxander.yacl3.config.v2.api.autogen.*;
import dev.isxander.yacl3.gui.ValueFormatters;
import dev.isxander.yacl3.platform.YACLPlatform;
import net.minecraft.network.chat.Component;
import net.minecraft.resources.ResourceLocation;
import java.awt.*;
import java.util.List;
public class AutogenConfigTest {
public static ConfigClassHandler<AutogenConfigTest> INSTANCE = ConfigClassHandler.createBuilder(AutogenConfigTest.class)
.id(new ResourceLocation("yacl3", "config"))
.serializer(config -> GsonConfigSerializerBuilder.create(config)
.setPath(YACLPlatform.getConfigDir().resolve("yacl-test-v2.json5"))
.setJson5(true)
.build())
.build();
@AutoGen(category = "test", group = "master_test")
@MasterTickBox({ "testTickBox", "testBoolean", "testInt", "testDouble", "testFloat", "testLong", "testIntField", "testDoubleField", "testFloatField", "testLongField", "testEnum", "testColor", "testString" })
@SerialEntry(comment = "This option disables all the other options in this group")
public boolean masterOption = true;
@AutoGen(category = "test", group = "master_test")
@TickBox
@SerialEntry(comment = "This is a cool comment omg this is amazing")
public boolean testTickBox = true;
@AutoGen(category = "test", group = "master_test")
@Boolean(formatter = Boolean.Formatter.YES_NO, colored = true)
@SerialEntry(comment = "This is a cool comment omg this is amazing")
public boolean testBoolean = true;
@AutoGen(category = "test", group = "master_test")
@IntSlider(min = 0, max = 10, step = 2)
@SerialEntry public int testInt = 0;
@AutoGen(category = "test", group = "master_test")
@DoubleSlider(min = 0.1, max = 10.2, step = 0.1)
@SerialEntry public double testDouble = 0.1;
@AutoGen(category = "test", group = "master_test")
@FloatSlider(min = 0.0f, max = 1f, step = 0.01f)
@CustomFormat(ValueFormatters.PercentFormatter.class)
@CustomName("A cool percentage.")
@SerialEntry public float testFloat = 0.1f;
@AutoGen(category = "test", group = "master_test")
@LongSlider(min = 0, max = 10, step = 2)
@SerialEntry public long testLong = 0;
@AutoGen(category = "test", group = "master_test")
@IntField(min = 0, max = 10)
@SerialEntry public int testIntField = 0;
@AutoGen(category = "test", group = "master_test")
@DoubleField(min = 0.1, max = 10.2)
@SerialEntry public double testDoubleField = 0.1;
@AutoGen(category = "test", group = "master_test")
@FloatField(min = 0.1f, max = 10.2f)
@SerialEntry public float testFloatField = 0.1f;
@AutoGen(category = "test", group = "master_test")
@LongField(min = 0, max = 10)
@SerialEntry public long testLongField = 0;
@AutoGen(category = "test", group = "master_test")
@EnumCycler
@SerialEntry public Alphabet testEnum = Alphabet.A;
@AutoGen(category = "test", group = "master_test")
@ColorField
@SerialEntry public Color testColor = new Color(0xFF0000FF, true);
@AutoGen(category = "test", group = "master_test")
@StringField
@SerialEntry public String testString = "Test string";
@AutoGen(category = "test", group = "misc") @Label
private final Component testLabel = Component.literal("Test label");
@AutoGen(category = "test")
@ListGroup(valueFactory = TestListFactory.class, controllerFactory = TestListFactory.class)
@SerialEntry public List<String> testList = Lists.newArrayList("A", "B");
public enum Alphabet implements NameableEnum {
A, B, C;
@Override
public Component getDisplayName() {
return Component.literal(name());
}
}
public static class TestListFactory implements ListGroup.ValueFactory<String>, ListGroup.ControllerFactory<String> {
@Override
public String provideNewValue() {
return "";
}
@Override
public ControllerBuilder<String> createController(ListGroup annotation, ConfigField<List<String>> field, OptionAccess storage, Option<String> option) {
return StringControllerBuilder.create(option);
}
}
}
|