aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/keybindings/IKeyBinding.kt
blob: b5e1d6b15ac49c35498b9750ab30680ffaf7d39d (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
/*
 * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

package moe.nea.firmament.keybindings

import net.minecraft.client.option.KeyBinding

interface IKeyBinding {
    fun matches(keyCode: Int, scanCode: Int, modifiers: Int): Boolean

    fun withModifiers(wantedModifiers: Int): IKeyBinding {
        val old = this
        return object : IKeyBinding {
            override fun matches(keyCode: Int, scanCode: Int, modifiers: Int): Boolean {
                return old.matches(keyCode, scanCode, modifiers) && (modifiers and wantedModifiers) == wantedModifiers
            }
        }
    }

    companion object {
        fun minecraft(keyBinding: KeyBinding) = object : IKeyBinding {
            override fun matches(keyCode: Int, scanCode: Int, modifiers: Int) =
                keyBinding.matchesKey(keyCode, scanCode)
        }

        fun ofKeyCode(wantedKeyCode: Int) = object : IKeyBinding {
            override fun matches(keyCode: Int, scanCode: Int, modifiers: Int): Boolean = keyCode == wantedKeyCode
        }
    }
}