-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworld.js
77 lines (55 loc) · 2.49 KB
/
world.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
//@ts-check
class World {
static instance; //singleton
constructor(){
World.instance = this;//singleton
this.gameObjects = [];
this.tempAddGameObjects = []; //used to hold GameObjects added this frame
this.player = new Player();
this.addGameObject(this.player);
this.spawner = new Spawner();
this.addGameObject(this.spawner);
}
update(){
//console.log("World: update");
//if(Sketch.paused) return;
let freshGameObjectsList = []; //will be free of objects slated for deletion
//the main Update() game loop
if(!Sketch.paused){
for(let i = this.gameObjects.length-1; i >= 0; i--){
var gameObject = this.gameObjects[i];
if(!(gameObject instanceof GameObject)){
console.error(`There is a non-GameObject item in the main array (index: ${i}, ${gameObject})`)
}
if(gameObject.slatedForDeletion){ //if slated for deletion, null the object and don't push into new GO list
gameObject = null;
} else {
freshGameObjectsList.push(gameObject); //else, push into new GO list
}
if(gameObject != null){
gameObject.mainUpdate();
}
}
this.gameObjects = freshGameObjectsList; //replaced with new GO list free of nulls
//SYNTAX WARNING: concat() doesn't change the original array, it returns a new one
this.gameObjects = this.gameObjects.concat(this.tempAddGameObjects); //add gameObjects that gameObjects in the loop instantiated
this.tempAddGameObjects = []; //reset the temp gameObject hold
}
//gameObjects need a depth too...
//gameObjects.display() is excluded from pause
let gameObjectsToDisplay = freshGameObjectsList.slice();//copy
gameObjectsToDisplay.sort((first, second) => (first.depth > second.depth ? -1 : 1) );
for(let i = gameObjectsToDisplay.length-1; i >= 0; i--){
let toDisplay = gameObjectsToDisplay[i];
if(toDisplay!=null){
toDisplay.display();
}
}
}
addGameObject(gameObject){
if(!(gameObject instanceof GameObject)){
throw new Error("Tried to add non-GameObject item into the game loop: " + gameObject);
}
this.tempAddGameObjects.push(gameObject);
}
}