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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
package moe.nea.firmament.compat.moulconfig
import com.google.auto.service.AutoService
import io.github.notenoughupdates.moulconfig.Config
import io.github.notenoughupdates.moulconfig.common.IMinecraft
import io.github.notenoughupdates.moulconfig.gui.GuiComponent
import io.github.notenoughupdates.moulconfig.gui.GuiElementWrapper
import io.github.notenoughupdates.moulconfig.gui.GuiOptionEditor
import io.github.notenoughupdates.moulconfig.gui.HorizontalAlign
import io.github.notenoughupdates.moulconfig.gui.MoulConfigEditor
import io.github.notenoughupdates.moulconfig.gui.VerticalAlign
import io.github.notenoughupdates.moulconfig.gui.component.AlignComponent
import io.github.notenoughupdates.moulconfig.gui.component.RowComponent
import io.github.notenoughupdates.moulconfig.gui.component.SliderComponent
import io.github.notenoughupdates.moulconfig.gui.component.TextComponent
import io.github.notenoughupdates.moulconfig.gui.editors.ComponentEditor
import io.github.notenoughupdates.moulconfig.gui.editors.GuiOptionEditorAccordion
import io.github.notenoughupdates.moulconfig.gui.editors.GuiOptionEditorBoolean
import io.github.notenoughupdates.moulconfig.gui.editors.GuiOptionEditorButton
import io.github.notenoughupdates.moulconfig.gui.editors.GuiOptionEditorText
import io.github.notenoughupdates.moulconfig.observer.GetSetter
import io.github.notenoughupdates.moulconfig.processor.ProcessedCategory
import io.github.notenoughupdates.moulconfig.processor.ProcessedOption
import java.lang.reflect.Type
import kotlin.time.Duration
import kotlin.time.Duration.Companion.seconds
import kotlin.time.DurationUnit
import net.minecraft.client.gui.screen.Screen
import moe.nea.firmament.gui.config.BooleanHandler
import moe.nea.firmament.gui.config.ClickHandler
import moe.nea.firmament.gui.config.DurationHandler
import moe.nea.firmament.gui.config.FirmamentConfigScreenProvider
import moe.nea.firmament.gui.config.HudMeta
import moe.nea.firmament.gui.config.HudMetaHandler
import moe.nea.firmament.gui.config.IntegerHandler
import moe.nea.firmament.gui.config.KeyBindingHandler
import moe.nea.firmament.gui.config.ManagedConfig
import moe.nea.firmament.gui.config.ManagedOption
import moe.nea.firmament.gui.config.StringHandler
import moe.nea.firmament.keybindings.SavedKeyBinding
import moe.nea.firmament.util.ErrorUtil
import moe.nea.firmament.util.FirmFormatters
import moe.nea.firmament.util.MC
import moe.nea.firmament.util.MoulConfigUtils.xmap
@AutoService(FirmamentConfigScreenProvider::class)
class MCConfigEditorIntegration : FirmamentConfigScreenProvider {
override val key: String
get() = "moulconfig"
val handlers: MutableMap<Class<out ManagedConfig.OptionHandler<*>>, ((ManagedConfig.OptionHandler<*>, ManagedOption<*>, accordionId: Int, configObject: Config) -> ProcessedEditableOptionFirm<*>)> =
mutableMapOf()
fun <T : Any, H : ManagedConfig.OptionHandler<T>> register(
handlerClass: Class<H>,
transform: (H, ManagedOption<T>, accordionId: Int, configObject: Config) -> ProcessedEditableOptionFirm<T>
) {
handlers[handlerClass] =
transform as ((ManagedConfig.OptionHandler<*>, ManagedOption<*>, accordionId: Int, configObject: Config) -> ProcessedEditableOptionFirm<*>)
}
fun <T : Any> getHandler(
option: ManagedOption<T>,
accordionId: Int,
configObject: Config
): ProcessedEditableOptionFirm<*> {
val transform = handlers[option.handler.javaClass]
?: error("Could not transform ${option.handler}") // TODO: replace with soft error and an error config element
return transform.invoke(option.handler, option, accordionId, configObject) as ProcessedEditableOptionFirm<T>
}
class CustomSliderEditor<T>(
option: ProcessedOption,
setter: GetSetter<T>,
fromT: (T) -> Float,
toT: (Float) -> T,
minValue: T, maxValue: T,
minStep: Float,
formatter: (T) -> String,
) : ComponentEditor(option) {
override fun getDelegate(): GuiComponent {
return delegateI
}
val mappedSetter = setter.xmap(fromT, toT)
private val delegateI by lazy {
wrapComponent(RowComponent(
AlignComponent(
TextComponent(
IMinecraft.instance.defaultFontRenderer,
{ formatter(setter.get()) },
25,
TextComponent.TextAlignment.CENTER, false, false
),
GetSetter.constant(HorizontalAlign.CENTER),
GetSetter.constant(VerticalAlign.CENTER)
),
SliderComponent(
mappedSetter,
fromT(minValue),
fromT(maxValue),
minStep,
40
)
))
}
}
init {
register(BooleanHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<Boolean>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return GuiOptionEditorBoolean(this, -1, configObject)
}
override fun get(): Any {
return managedOption.value
}
override fun getType(): Type {
return Boolean::class.java
}
override fun set(value: Any?): Boolean {
managedOption.value = value as Boolean
return true
}
}
}
register(StringHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<String>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return GuiOptionEditorText(this)
}
override fun get(): Any {
return managedOption.value
}
override fun getType(): Type {
return String::class.java
}
override fun set(value: Any?): Boolean {
managedOption.value = value as String
return true
}
}
}
register(ClickHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<Unit>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return GuiOptionEditorButton(this, -1, "Click", configObject)
}
override fun get(): Any {
return Runnable { handler.runnable() }
}
override fun getType(): Type {
return Runnable::class.java
}
override fun set(value: Any?): Boolean {
ErrorUtil.softError("Trying to set a buttons data")
return false
}
}
}
register(HudMetaHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<HudMeta>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return GuiOptionEditorButton(this, -1, "Edit HUD", configObject)
}
override fun get(): Any {
return Runnable {
handler.openEditor(option, MC.screen!!)
}
}
override fun getType(): Type {
return Runnable::class.java
}
override fun set(value: Any?): Boolean {
ErrorUtil.softError("Trying to assign to a hud meta")
return false
}
}
}
register(DurationHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<Duration>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return CustomSliderEditor(
this,
option,
{ it.toDouble(DurationUnit.SECONDS).toFloat() },
{ it.toDouble().seconds },
handler.min,
handler.max,
0.1F,
FirmFormatters::formatTimespan
)
}
override fun get(): Any {
ErrorUtil.softError("Getting on a slider component")
return Unit
}
override fun getType(): Type {
return Nothing::class.java
}
override fun set(value: Any?): Boolean {
ErrorUtil.softError("Setting on a slider component")
return false
}
}
}
register(IntegerHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<Int>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return CustomSliderEditor(
this,
option,
{ it.toFloat() },
{ it.toInt() },
handler.min,
handler.max,
1F,
Integer::toString
)
}
override fun get(): Any {
ErrorUtil.softError("Getting on a slider component")
return Unit
}
override fun getType(): Type {
return Nothing::class.java
}
override fun set(value: Any?): Boolean {
ErrorUtil.softError("Setting on a slider component")
return false
}
}
}
register(KeyBindingHandler::class.java) { handler, option, categoryAccordionId, configObject ->
object : ProcessedEditableOptionFirm<SavedKeyBinding>(option, categoryAccordionId, configObject) {
override fun createEditor(): GuiOptionEditor {
return object : ComponentEditor(this) {
val button = wrapComponent(handler.createButtonComponent(option))
override fun getDelegate(): GuiComponent {
return button
}
}
}
override fun get(): Any {
ErrorUtil.softError("Getting on a keybinding")
return Unit
}
override fun getType(): Type {
return Nothing::class.java
}
override fun set(value: Any?): Boolean {
ErrorUtil.softError("Setting on a keybinding")
return false
}
}
}
}
override fun open(parent: Screen?): Screen {
val configObject = object : Config() {
override fun saveNow() {
ManagedConfig.allManagedConfigs.getAll().forEach { it.save() }
}
override fun shouldAutoFocusSearchbar(): Boolean {
return true
}
}
val categories = ManagedConfig.Category.entries.map {
val options = mutableListOf<ProcessedOptionFirm>()
var nextAccordionId = 720
it.configs.forEach { config ->
val categoryAccordionId = nextAccordionId++
options.add(object : ProcessedOptionFirm(-1, configObject) {
override fun getDebugDeclarationLocation(): String {
return "FirmamentConfig:$config.name"
}
override fun getName(): String {
return config.labelText.string
}
override fun getDescription(): String {
return "Missing description"
}
override fun get(): Any {
return Unit
}
override fun getType(): Type {
return Unit.javaClass
}
override fun set(value: Any?): Boolean {
return false
}
override fun createEditor(): GuiOptionEditor {
return GuiOptionEditorAccordion(this, categoryAccordionId)
}
})
config.allOptions.forEach { (key, option) ->
val processedOption = getHandler(option, categoryAccordionId, configObject)
options.add(processedOption)
}
}
return@map ProcessedCategoryFirm(it, options)
}
val editor = MoulConfigEditor(ProcessedCategory.collect(categories), configObject)
return GuiElementWrapper(editor) // TODO : add parent support
}
}
|