-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyHandler.java
More file actions
44 lines (38 loc) · 854 Bytes
/
Copy pathKeyHandler.java
File metadata and controls
44 lines (38 loc) · 854 Bytes
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
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
public class KeyHandler implements KeyListener{
public boolean sPressed, dPressed, kPressed, lPressed;
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
int code = e.getKeyCode();
if(code == KeyEvent.VK_S) {
sPressed = true;
}
if(code == KeyEvent.VK_D) {
dPressed = true;
}
if(code == KeyEvent.VK_K) {
kPressed = true;
}
if(code == KeyEvent.VK_L) {
lPressed = true;
}
}
public void keyReleased(KeyEvent e) {
int code = e.getKeyCode();
if(code == KeyEvent.VK_S) {
sPressed = false;
}
if(code == KeyEvent.VK_D) {
dPressed = false;
}
if(code == KeyEvent.VK_K) {
kPressed = false;
}
if(code == KeyEvent.VK_L) {
lPressed = false;
}
}
}