-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngineObjectList.class.js
67 lines (62 loc) · 1.53 KB
/
EngineObjectList.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
var EngineObjectList = function() {
this.myList = [];
this.actualSize = 0;
/*
* Only applies `func` to objects which have spawned set to `true`.
* This means, objects not within the screen are excluded.
*/
this.each = function( func ) {
for (var a in this.myList) {
if (this.myList[a] !== undefined) {
if(this.myList[a].spawned === true || this.myList[a].name === "ringbounce")
func( this.myList[a] );
}
}
return true;
};
this.getByName = function( needle ) {
for (var a in this.myList) {
if (this.myList[a] === undefined)
continue;
if(this.myList[a].name === needle) {
return this.myList[a];
}
}
return false;
};
this.add = function( obj ) {
if(obj === undefined)
return false;
obj.id = this.myList.length;
this.myList[this.myList.length] = obj;
this.actualSize++;
return true;
};
this.remove = function( id ) {
if(this.myList[id] !== undefined) {
if(this.myList[id].solid) {
window.myEngine.Collision.rm(this.myList[id]);
}
if (this.myList[id].replace !== undefined) {
this.myList[id] = this.myList[id].replace;
} else {
// delete this.myList[id];
// splice is awfully slow, so we just set the key to undefined
this.myList[id] = undefined;
this.actualSize--;
// this.myList.splice(id, 1);
}
return true;
}
return false;
};
this.get = function( id ) {
if(this.myList[id] !== undefined)
return this.myList[id];
return false;
};
this.getList = function( func ) {
return this.myList;
};
};
export { EngineObjectList }