forked from alto-io/xgr-arcadians
-
Notifications
You must be signed in to change notification settings - Fork 1
/
keyboardHandler.jsx
93 lines (71 loc) · 2.45 KB
/
keyboardHandler.jsx
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
class KeyData {
constructor(key) {
this.key = key;
this.isPressed = false;
}
key;
/**For single press commands, so holding the key down has no effect*/
isPressed;
onKeyPress = null;
onKeyHold = null;
onKeyRelease = null;
}
class KeyboardHandler {
allKeyData = [];
/**
* Register a callback function for when a key is pressed.
* Won't be called multiple times if the key is held.
*/
registerOnKeyPress(key, callback) {
if (!this.allKeyData.some((x) => x.key == key))
this.allKeyData.push(new KeyData(key));
let idx = this.allKeyData.findIndex((x) => x.key == key);
if (this.allKeyData[idx].onKeyPress != null)
console.warn(key, " already has a registered onKeyPress callback");
this.allKeyData[idx].onKeyPress = callback;
}
/**Register a callback function for when a key is held down.*/
registerOnKeyHold(key, callback) {
if (!this.allKeyData.some((x) => x.key == key))
this.allKeyData.push(new KeyData(key));
let idx = this.allKeyData.findIndex((x) => x.key == key);
if (this.allKeyData[idx].onKeyHold != null)
console.warn(key, " already has a registered onKeyHold callback");
this.allKeyData[idx].onKeyHold = callback;
}
/**Register a callback function for when a key is released.*/
registerOnKeyRelease(key, callback) {
if (!this.allKeyData.some((x) => x.key == key))
this.allKeyData.push(new KeyData(key));
let idx = this.allKeyData.findIndex((x) => x.key == key);
if (this.allKeyData[idx].onKeyRelease != null)
console.warn(
key,
" already has a registered onKeyRelease callback"
);
this.allKeyData[idx].onKeyRelease = callback;
}
/**Used only by index.ts*/
onKeyDown(kbInfo) {
let key = kbInfo.event.key;
if (!this.allKeyData.some((x) => x.key == key))
this.allKeyData.push(new KeyData(key));
let idx = this.allKeyData.findIndex((x) => x.key == key);
let inputData = this.allKeyData[idx];
if (!inputData.isPressed && inputData.onKeyPress != null)
inputData.onKeyPress();
if (inputData.onKeyHold != null) inputData.onKeyHold();
this.allKeyData[idx].isPressed = true;
}
/**Used only by index.ts*/
onKeyUp(kbInfo) {
let key = kbInfo.event.key;
if (!this.allKeyData.some((x) => x.key == key))
this.allKeyData.push(new KeyData(key));
let idx = this.allKeyData.findIndex((x) => x.key == key);
let inputData = this.allKeyData[idx];
if (inputData.isPressed && inputData.onKeyRelease != null)
inputData.onKeyRelease();
this.allKeyData[idx].isPressed = false;
}
}