aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-07-23 01:35:16 +0200
committernea <nea@nea.moe>2023-07-23 01:35:16 +0200
commit91febc31ad8b34ad9c2bd158a445f774461286c0 (patch)
treec962dd461dbfa41335672bff2b7862c101ba2aba /src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt
parentcdf3938b778188211ad316d16381e0d8c7beac75 (diff)
downloadfirmament-91febc31ad8b34ad9c2bd158a445f774461286c0.tar.gz
firmament-91febc31ad8b34ad9c2bd158a445f774461286c0.tar.bz2
firmament-91febc31ad8b34ad9c2bd158a445f774461286c0.zip
Make image preview scalable
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt b/src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt
new file mode 100644
index 0000000..f8d2c3e
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/gui/config/HudMetaHandler.kt
@@ -0,0 +1,34 @@
+package moe.nea.firmament.gui.config
+
+import io.github.cottonmc.cotton.gui.widget.WButton
+import kotlinx.serialization.json.Json
+import kotlinx.serialization.json.JsonElement
+import kotlinx.serialization.json.decodeFromJsonElement
+import kotlinx.serialization.json.encodeToJsonElement
+import net.minecraft.text.MutableText
+import net.minecraft.text.Text
+import moe.nea.firmament.jarvis.JarvisIntegration
+import moe.nea.firmament.util.MC
+
+class HudMetaHandler(val config: ManagedConfig, val label: MutableText, val width: Int, val height: Int) :
+ ManagedConfig.OptionHandler<HudMeta> {
+ override fun toJson(element: HudMeta): JsonElement? {
+ return Json.encodeToJsonElement(element.position)
+ }
+
+ override fun fromJson(element: JsonElement): HudMeta {
+ return HudMeta(Json.decodeFromJsonElement(element), label, width, height)
+ }
+
+ override fun emitGuiElements(opt: ManagedConfig.Option<HudMeta>, guiAppender: GuiAppender) {
+ guiAppender.appendLabeledRow(opt.labelText, WButton(Text.translatable("firmament.hud.edit", label))
+ .also {
+ it.setOnClick {
+ MC.screen = JarvisIntegration.jarvis.getHudEditor(
+ guiAppender.screenAccessor.invoke(),
+ listOf(opt.value)
+ )
+ }
+ })
+ }
+}