blob: 8e2112a62a782825f124188718b509df7157a3d8 (
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
|
package com.dulkirfabric.features
import com.dulkirfabric.commands.DynamicKeyCommand
import com.dulkirfabric.config.DulkirConfig
import com.dulkirfabric.events.WorldKeyPressEvent
import com.dulkirfabric.util.TextUtils
import meteordevelopment.orbit.EventHandler
object KeyShortCutImpl {
private var lastCommandHandle: Long = 0
private var prevCode: Int = 0;
@EventHandler
fun onKeyPress(event: WorldKeyPressEvent) {
DulkirConfig.configOptions.macrosList.forEach {
if (it.keyBinding.code == event.key) {
// Spam Prevention
if (event.key == prevCode && System.currentTimeMillis() - lastCommandHandle < 1000)
return
lastCommandHandle = System.currentTimeMillis()
prevCode = event.key
TextUtils.sendCommand(it.command.trimStart('/'))
}
}
if (DulkirConfig.configOptions.dynamicKey.code == event.key) {
if (event.key == prevCode && System.currentTimeMillis() - lastCommandHandle < 1000)
return
lastCommandHandle = System.currentTimeMillis()
prevCode = event.key
TextUtils.sendCommand(DynamicKeyCommand.command.trimStart('/'))
}
}
}
|