-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetcalculator.ts
69 lines (62 loc) · 2.17 KB
/
setcalculator.ts
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
/// <reference path="setdb.ts" />
/// <reference path="mapobject.ts" />
/// <reference path="wall.ts" />
/// <reference path="structure.ts" />
/// <reference path="object.ts" />
namespace MapEngine.Sets {
export class SetCalculator {
availableParts:{};
placedParts:{};
constructor() {
let db = new SetDB();
this.availableParts = db.coreSet;
}
updateList(objects:MapObjects.MapObject[]) {
this.placedParts={};
objects.forEach(object => {
if(object instanceof MapObjects.Wall) {
this.addWall(object);
} else if(object instanceof MapObjects.Structure) {
this.addStructure(object);
} else if(object instanceof MapObjects.Object) {
this.addObject(object);
}
});
}
addWall(object:MapObjects.Wall) {
let id = object.image.id;
if(typeof(this.placedParts[id]) == 'undefined') {
this.placedParts[id]={
'available': 0,
'placed': 1
};
if(typeof(this.availableParts[id]) != 'undefined') {
this.placedParts[id]['available'] = this.availableParts[id];
}
} else {
this.placedParts[id]['placed']++;
}
}
addStructure(object:MapObjects.Structure) {
object.elements.forEach(object => {
if(object instanceof MapObjects.Wall) {
this.addWall(object);
}
});
}
addObject(object:MapObjects.Object) {
let id = object.image.id;
if(typeof(this.placedParts[id]) == 'undefined') {
this.placedParts[id]={
'available': 0,
'placed': 1
};
if(typeof(this.availableParts[id]) != 'undefined') {
this.placedParts[id]['available'] = this.availableParts[id];
}
} else {
this.placedParts[id]['placed']++;
}
}
}
}