aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/FixedComponent.kt
blob: ae1da2d4ae1c7cd3db8fb1341e8ab2ba41161a2e (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
package moe.nea.firmament.gui

import io.github.notenoughupdates.moulconfig.gui.GuiComponent
import io.github.notenoughupdates.moulconfig.gui.GuiImmediateContext
import io.github.notenoughupdates.moulconfig.gui.KeyboardEvent
import io.github.notenoughupdates.moulconfig.gui.MouseEvent
import io.github.notenoughupdates.moulconfig.observer.GetSetter
import java.util.function.BiFunction

class FixedComponent(
    val fixedWidth: GetSetter<Int>?,
    val fixedHeight: GetSetter<Int>?,
    val component: GuiComponent,
) : GuiComponent() {
    override fun getWidth(): Int = fixedWidth?.get() ?: component.width

    override fun getHeight(): Int = fixedHeight?.get() ?: component.height

    override fun <T : Any?> foldChildren(initial: T, visitor: BiFunction<GuiComponent, T, T>): T {
        return visitor.apply(component, initial)
    }

    fun fixContext(context: GuiImmediateContext): GuiImmediateContext =
        context.translated(0, 0, width, height)

    override fun render(context: GuiImmediateContext) {
        component.render(fixContext(context))
    }

    override fun mouseEvent(mouseEvent: MouseEvent, context: GuiImmediateContext): Boolean {
        return component.mouseEvent(mouseEvent, fixContext(context))
    }

    override fun keyboardEvent(event: KeyboardEvent, context: GuiImmediateContext): Boolean {
        return component.keyboardEvent(event, fixContext(context))
    }
}