-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngineInput.class.js
87 lines (59 loc) · 2.33 KB
/
EngineInput.class.js
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
import { EngineObjectList } from './EngineObjectList.class.js'
import { in_array, get_array_key } from './library.inc.js'
var InputHandler = function() {
$(document).on('keydown', this.Keydown);
$(document).on('keyup', this.Keyup);
};
// init list of objects with input
InputHandler.prototype.objects = new EngineObjectList();
// add objects to our list
InputHandler.prototype.add = function(obj) {
this.objects.add(obj);
}
InputHandler.prototype.Keydown = function(e) {
var keyCode = e.keyCode;
window.myEngine.InputHandler.objects.each(function(handle) {
// ignore objects with no input, TODO throw an error, instead of failing silent
if(handle.assigned_keys === undefined || handle.assigned_keys.length < 0)
return false;
// ignore keys which are not assigned
if(in_array(keyCode, handle.assigned_keys) === false)
return false;
// debounce key-press
if(handle.pressed_keys[handle.pressed_keys.length-1] === keyCode)
return false;
// ignore keys which are already pressed
if(in_array(keyCode, handle.pressed_keys) === true)
return false;
// add key to array of pressed keys
handle.pressed_keys[handle.pressed_keys.length] = keyCode;
});
};
InputHandler.prototype.Keyup = function(e) {
var keyCode = e.keyCode;
window.myEngine.InputHandler.objects.each(function(handle) {
// ignore objects with no input, TODO throw an error, instead of failing silent
if(handle.assigned_keys === undefined || handle.assigned_keys.length < 0)
return false;
// ignore keys which are not assigned
if(in_array(keyCode, handle.assigned_keys) === false)
return false;
// ignore keys which are not currently pressed
if(in_array(keyCode, handle.pressed_keys) === false)
return false;
// remove key
handle.pressed_keys.splice(get_array_key(keyCode, handle.pressed_keys), 1);
// onkey up shenaningans, TODO move to main loop and use released_keys
if (handle.sm.currentState.onKeyUp !== undefined)
handle.sm.currentState.onKeyUp(handle);
// debounce key-release
if(handle.released_keys[handle.released_keys.length-1] === keyCode)
return false;
// ignore keys which are already in release
if(in_array(keyCode, handle.released_keys) === true)
return false;
// add key to released_keys
handle.released_keys[handle.released_keys.length] = keyCode;
});
};
export { InputHandler }