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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
package moe.nea.firmament.features.macros
import kotlin.time.Duration.Companion.seconds
import net.minecraft.client.util.InputUtil
import net.minecraft.text.Text
import moe.nea.firmament.annotations.Subscribe
import moe.nea.firmament.events.HudRenderEvent
import moe.nea.firmament.events.TickEvent
import moe.nea.firmament.events.WorldKeyboardEvent
import moe.nea.firmament.keybindings.SavedKeyBinding
import moe.nea.firmament.util.MC
import moe.nea.firmament.util.TimeMark
import moe.nea.firmament.util.tr
object ComboProcessor {
var rootTrie: Branch = Branch(mapOf())
private set
var activeTrie: Branch = rootTrie
private set
var isInputting = false
var lastInput = TimeMark.farPast()
val breadCrumbs = mutableListOf<SavedKeyBinding>()
init {
val f = SavedKeyBinding(InputUtil.GLFW_KEY_F)
val one = SavedKeyBinding(InputUtil.GLFW_KEY_1)
val two = SavedKeyBinding(InputUtil.GLFW_KEY_2)
setActions(
MacroData.DConfig.data.comboActions
)
}
fun setActions(actions: List<ComboKeyAction>) {
rootTrie = KeyComboTrie.fromComboList(actions)
reset()
}
fun reset() {
activeTrie = rootTrie
lastInput = TimeMark.now()
isInputting = false
breadCrumbs.clear()
}
@Subscribe
fun onTick(event: TickEvent) {
if (isInputting && lastInput.passedTime() > 3.seconds)
reset()
}
@Subscribe
fun onRender(event: HudRenderEvent) {
if (!isInputting) return
if (!event.isRenderingHud) return
event.context.matrices.push()
val width = 120
event.context.matrices.translate(
(MC.window.scaledWidth - width) / 2F,
(MC.window.scaledHeight) / 2F + 8,
0F
)
val breadCrumbText = breadCrumbs.joinToString(" > ")
event.context.drawText(
MC.font,
tr("firmament.combo.active", "Current Combo: ").append(breadCrumbText),
0,
0,
-1,
true
)
event.context.matrices.translate(0F, MC.font.fontHeight + 2F, 0F)
for ((key, value) in activeTrie.nodes) {
event.context.drawText(
MC.font,
Text.literal("$breadCrumbText > $key: ").append(value.label),
0,
0,
-1,
true
)
event.context.matrices.translate(0F, MC.font.fontHeight + 1F, 0F)
}
event.context.matrices.pop()
}
@Subscribe
fun onKeyBinding(event: WorldKeyboardEvent) {
val nextEntry = activeTrie.nodes.entries
.find { event.matches(it.key) }
if (nextEntry == null) {
reset()
return
}
event.cancel()
breadCrumbs.add(nextEntry.key)
lastInput = TimeMark.now()
isInputting = true
val value = nextEntry.value
when (value) {
is Branch -> {
activeTrie = value
}
is Leaf -> {
value.execute()
reset()
}
}.let { }
}
}
|