aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/config/IntegerHandler.kt
blob: c7a9a5596498908013db44ca32936c047dd413e4 (plain)
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
package moe.nea.firmament.gui.config

import io.github.cottonmc.cotton.gui.widget.WBox
import io.github.cottonmc.cotton.gui.widget.WLabel
import io.github.cottonmc.cotton.gui.widget.WSlider
import io.github.cottonmc.cotton.gui.widget.data.Axis
import io.github.cottonmc.cotton.gui.widget.data.VerticalAlignment
import java.util.function.IntConsumer
import kotlinx.serialization.json.JsonElement
import kotlinx.serialization.json.JsonPrimitive
import kotlinx.serialization.json.int
import kotlinx.serialization.json.jsonPrimitive
import kotlin.time.Duration.Companion.milliseconds
import net.minecraft.text.Text
import moe.nea.firmament.util.FirmFormatters

class IntegerHandler(val config: ManagedConfig, val min: Int, val max: Int) : ManagedConfig.OptionHandler<Int> {
    override fun toJson(element: Int): JsonElement? {
        return JsonPrimitive(element)
    }

    override fun fromJson(element: JsonElement): Int {
        return element.jsonPrimitive.int
    }

    override fun emitGuiElements(opt: ManagedConfig.Option<Int>, guiAppender: GuiAppender) {
        val label =
            WLabel(Text.literal(opt.value.toString())).setVerticalAlignment(VerticalAlignment.CENTER)
        guiAppender.appendLabeledRow(opt.labelText, WBox(Axis.HORIZONTAL).also {
            it.add(label, 40, 18)
            it.add(WSlider(min, max, Axis.HORIZONTAL).apply {
                valueChangeListener = IntConsumer {
                    opt.value = it
                    label.text = Text.literal(opt.value.toString())
                    config.save()
                }
                guiAppender.onReload {
                    value = opt.value
                    label.text = Text.literal(opt.value.toString())
                }
            }, 130, 18)
        })
    }

}