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
|
package dev.isxander.yacl3.dsl
import dev.isxander.yacl3.api.*
import net.minecraft.locale.Language
import net.minecraft.network.chat.Component
fun YetAnotherConfigLib(namespace: String, block: YACLDsl.() -> Unit): YetAnotherConfigLib {
val context = YACLDslContext(namespace)
context.block()
return context.build()
}
class YACLDslContext(
private val namespace: String,
private val builder: YetAnotherConfigLib.Builder = YetAnotherConfigLib.createBuilder()
) : YACLDsl {
private val categoryMap = LinkedHashMap<String, YACLDslCategoryContext>()
private val categoryDslReferenceMap = mutableMapOf<String, FutureValue.Impl<CategoryDslReference>>()
override val namespaceKey = "yacl3.config.$namespace"
private var used = false
private var built: YetAnotherConfigLib? = null
private var saveFunction: () -> Unit = {}
override val categories = object : YACLDslReference {
override fun get(): YetAnotherConfigLib? = built
override operator fun get(id: String): FutureValue<CategoryDslReference> =
FutureValue.Impl(categoryMap[id]?.groups).also { categoryDslReferenceMap[id] = it }
override fun registering(block: CategoryDsl.() -> Unit): RegisterableDelegateProvider<CategoryDsl, ConfigCategory> {
return RegisterableDelegateProvider({ id, configuration -> category(id, configuration) }, block)
}
override val isBuilt: Boolean
get() = built != null
}
init {
title(Component.translatable("$namespaceKey.title"))
}
override fun title(component: Component) {
builder.title(component)
}
override fun title(block: () -> Component) {
title(block())
}
override fun category(id: String, block: CategoryDsl.() -> Unit): ConfigCategory {
val context = YACLDslCategoryContext(id, this)
context.block()
categoryMap[id] = context
categoryDslReferenceMap[id]?.value = context.groups
val built = context.build()
builder.category(built)
return built
}
override fun save(block: () -> Unit) {
val oldSaveFunction = saveFunction
saveFunction = { // allows stacking of save functions
oldSaveFunction()
block()
}
}
fun build(): YetAnotherConfigLib {
if (used) error("Cannot use the same DSL context twice!")
used = true
builder.save(saveFunction)
return builder.build().also { built = it }
}
}
class YACLDslCategoryContext(
private val id: String,
private val root: YACLDslContext,
private val builder: ConfigCategory.Builder = ConfigCategory.createBuilder(),
) : CategoryDsl {
private val groupMap = LinkedHashMap<String, YACLDslGroupContext>()
private val groupDslReferenceMap = mutableMapOf<String, FutureValue.Impl<GroupDslReference>>()
val categoryKey = "${root.namespaceKey}.$id"
private var built: ConfigCategory? = null
private val rootGroup: YACLDslGroupContext = YACLDslGroupContext(id, this, builder.rootGroupBuilder(), root = true)
override val groups = object : CategoryDslReference {
override fun get(): ConfigCategory? = built
override fun get(id: String): FutureValue<GroupDslReference> =
FutureValue.Impl(groupMap[id]?.options).also { groupDslReferenceMap[id] = it }
override val root: GroupDslReference
get() = rootGroup.options
override fun registering(block: GroupDsl.() -> Unit): RegisterableDelegateProvider<GroupDsl, OptionGroup> {
return RegisterableDelegateProvider({ id, configuration -> group(id, configuration) }, block)
}
override val isBuilt: Boolean
get() = built != null
}
override val options = rootGroup.options
init {
builder.name(Component.translatable("$categoryKey.title"))
}
override fun name(component: Component) {
builder.name(component)
}
override fun name(block: () -> Component) {
name(block())
}
override fun group(id: String, block: GroupDsl.() -> Unit): OptionGroup {
val context = YACLDslGroupContext(id, this)
context.block()
groupMap[id] = context
groupDslReferenceMap[id]?.value = context.options
return context.build().also {
builder.group(it)
}
}
override fun <T : Any> option(id: String, block: OptionDsl<T>.() -> Unit): Option<T> =
rootGroup.option(id, block)
override fun tooltip(vararg component: Component) {
builder.tooltip(*component)
}
override fun tooltipBuilder(block: TooltipBuilderDsl.() -> Unit) {
val builder = TooltipBuilderDsl.Delegate { builder.tooltip(it) }
builder.block()
}
override fun useDefaultTooltip(lines: Int) {
if (lines == 1) {
builder.tooltip(Component.translatable("$categoryKey.tooltip"))
} else for (i in 1..lines) {
builder.tooltip(Component.translatable("$categoryKey.tooltip.$i"))
}
}
fun build(): ConfigCategory {
return builder.build().also { built = it }
}
}
class YACLDslGroupContext(
private val id: String,
private val category: YACLDslCategoryContext,
private val builder: OptionGroup.Builder = OptionGroup.createBuilder(),
private val root: Boolean = false,
) : GroupDsl {
private val optionMap = LinkedHashMap<String, YACLDslOptionContext<*>>()
private val optionDslReferenceMap = mutableMapOf<String, FutureValue.Impl<Option<*>>>()
val groupKey = "${category.categoryKey}.$id"
private var built: OptionGroup? = null
override val options = object : GroupDslReference {
override fun get(): OptionGroup? = built
override fun <T> get(id: String): FutureValue<Option<T>> =
FutureValue.Impl(optionMap[id]).flatMap { it.option as FutureValue<Option<T>> }.also { optionDslReferenceMap[id] = it as FutureValue.Impl<Option<*>> }
override fun <T : Any> registering(block: OptionDsl<T>.() -> Unit): RegisterableDelegateProvider<OptionDsl<T>, Option<T>> {
return RegisterableDelegateProvider({ id, configuration -> option(id, configuration) }, block)
}
override val isBuilt: Boolean
get() = built != null
}
override fun name(component: Component) {
builder.name(component)
}
override fun name(block: () -> Component) {
name(block())
}
override fun descriptionBuilder(block: OptionDescription.Builder.() -> Unit) {
builder.description(OptionDescription.createBuilder().apply(block).build())
}
override fun description(description: OptionDescription) {
builder.description(description)
}
init {
if (!root) {
builder.name(Component.translatable("$groupKey.name"))
}
}
override fun <T : Any> option(id: String, block: OptionDsl<T>.() -> Unit): Option<T> {
val context = YACLDslOptionContext<T>(id, this)
context.block()
optionMap[id] = context
return context.build().also {
optionDslReferenceMap[id]?.value = it
builder.option(it)
}
}
override fun useDefaultDescription(lines: Int) {
descriptionBuilder {
if (lines == 1) {
text(Component.translatable("$groupKey.description"))
} else for (i in 1..lines) {
text(Component.translatable("$groupKey.description.$i"))
}
}
}
fun build(): OptionGroup {
return builder.build().also { built = it }
}
}
class YACLDslOptionContext<T : Any>(
private val id: String,
private val group: YACLDslGroupContext,
private val builder: Option.Builder<T> = Option.createBuilder()
) : Option.Builder<T> by builder, OptionDsl<T> {
val optionKey = "${group.groupKey}.$id"
private var built: Option<T>? = null
private val taskQueue = ArrayDeque<(Option<T>) -> Unit>()
override val option = FutureValue.Impl<Option<T>>()
init {
name(Component.translatable("$optionKey.name"))
}
override fun OptionDescription.Builder.addDefaultDescription(lines: Int?) {
if (lines != null) {
if (lines == 1) {
text(Component.translatable("$optionKey.description"))
} else for (i in 1..lines) {
text(Component.translatable("$optionKey.description.$i"))
}
} else {
// loop until we find a key that doesn't exist
var i = 1
while (i < 100) {
val key = "$optionKey.description.$i"
if (Language.getInstance().has(key)) {
text(Component.translatable(key))
}
i++
}
}
}
override fun build(): Option<T> {
return builder.build().also {
built = it
option.value = it
while (taskQueue.isNotEmpty()) {
taskQueue.removeFirst()(it)
}
}
}
}
|