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

import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper
import net.minecraft.client.option.KeyBinding
import net.minecraft.client.util.InputUtil
import moe.nea.firmament.gui.config.KeyBindingHandler
import moe.nea.firmament.gui.config.ManagedOption

object FirmamentKeyBindings {
    fun registerKeyBinding(name: String, config: ManagedOption<SavedKeyBinding>) {
        val vanillaKeyBinding = KeyBindingHelper.registerKeyBinding(
            KeyBinding(
                name,
                InputUtil.Type.KEYSYM,
                -1,
                "firmament.key.category"
            )
        )
        keyBindings[vanillaKeyBinding] = config
    }

    val keyBindings = mutableMapOf<KeyBinding, ManagedOption<SavedKeyBinding>>()

}