-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHandler.java
52 lines (39 loc) · 996 Bytes
/
Handler.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
package SaueSpillet;
import java.awt.Graphics;
import java.util.ArrayList;
public class Handler {
ArrayList<GameObject> object = new ArrayList<GameObject>();
public void tick() {
for (int i = 0; i < object.size(); i++) {
GameObject gameobj = object.get(i);
gameobj.tick();
}
}
public void render(Graphics g) { // begynte bakerst på grunn av trail
for (int i = object.size() - 1; i >= 0; i--) {
GameObject gameObj = object.get(i);
if (gameObj != null) {
gameObj.render(g);
}
}
}
public void clearEnemys() {
for (int i = 0; i < object.size(); i++) {
GameObject gameObj = object.get(i);
if (gameObj.getId() == ID.Player && Game.gameState == Game.State.End) {
object.remove(gameObj);
i--;
}
if (gameObj.getId() != ID.Player) {
object.remove(gameObj);
i--;
}
}
}
public void addObject(GameObject object) {
this.object.add(object);
}
public void removeObject(GameObject object) {
this.object.remove(object);
}
}