From b4f9ca21ef801bb3e39c53ae21bb6bf4398c94e9 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 7 Aug 2024 21:34:16 +0200 Subject: Add /firm npcs command --- .../kotlin/moe/nea/firmament/gui/ImageComponent.kt | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main/kotlin/moe/nea/firmament/gui/ImageComponent.kt (limited to 'src/main/kotlin/moe/nea/firmament/gui/ImageComponent.kt') diff --git a/src/main/kotlin/moe/nea/firmament/gui/ImageComponent.kt b/src/main/kotlin/moe/nea/firmament/gui/ImageComponent.kt new file mode 100644 index 0000000..bba7dee --- /dev/null +++ b/src/main/kotlin/moe/nea/firmament/gui/ImageComponent.kt @@ -0,0 +1,33 @@ +package moe.nea.firmament.gui + +import io.github.notenoughupdates.moulconfig.common.MyResourceLocation +import io.github.notenoughupdates.moulconfig.gui.GuiComponent +import io.github.notenoughupdates.moulconfig.gui.GuiImmediateContext +import java.util.function.Supplier + +class ImageComponent( + private val width: Int, + private val height: Int, + val resourceLocation: Supplier, + val u1: Float, + val u2: Float, + val v1: Float, + val v2: Float, +) : GuiComponent() { + override fun getWidth(): Int { + return width + } + + override fun getHeight(): Int { + return height + } + + override fun render(context: GuiImmediateContext) { + context.renderContext.bindTexture(resourceLocation.get()) + context.renderContext.drawTexturedRect( + 0f, 0f, + context.width.toFloat(), context.height.toFloat(), + u1, v1, u2, v2 + ) + } +} -- cgit