-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.java
75 lines (60 loc) · 1.56 KB
/
Controller.java
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
import com.badlogic.gdx.Input;
import com.badlogic.gdx.InputProcessor;
/**
* Created by greg on 01/09/13.
*/
public class Controller implements InputProcessor {
Entity entity;
public Controller(Entity entity) {
this.entity = entity;
this.entity.setControlled(true);
}
@Override
public boolean keyDown(int i) {
if (i == Input.Keys.LEFT) {
entity.movement.put("runLeft", true);
} else if (i == Input.Keys.RIGHT) {
entity.movement.put("runRight", true);
}
if (i == Input.Keys.SPACE) {
entity.movement.put("jump", true);
}
return false;
}
@Override
public boolean keyUp(int i) {
if (i == Input.Keys.LEFT) {
entity.movement.put("runLeft", false);
} else if (i == Input.Keys.RIGHT) {
entity.movement.put("runRight", false);
}
if (i == Input.Keys.SPACE) {
entity.movement.put("jump", false);
}
return false;
}
@Override
public boolean keyTyped(char c) {
return false;
}
@Override
public boolean touchDown(int i, int i2, int i3, int i4) {
return false;
}
@Override
public boolean touchUp(int i, int i2, int i3, int i4) {
return false;
}
@Override
public boolean touchDragged(int i, int i2, int i3) {
return false;
}
@Override
public boolean mouseMoved(int i, int i2) {
return false;
}
@Override
public boolean scrolled(int i) {
return false;
}
}