-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreepBodyFactory.js
133 lines (109 loc) · 2.45 KB
/
CreepBodyFactory.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
"use strict";
const MAX_BODYPARTS = 50;
module.exports = class CreepBodyFactory
{
constructor()
{
this.data =
{ maxCost: 0
, patterns: []
, replaces: []
, sortOrder: []
};
}
addPattern(patternList, maxTimes)
{
this.data.patterns.push( { pattern: patternList
, maxTimes: maxTimes });
return this;
}
addReplace(oldPart, newPart, maxTimes)
{
this.data.replaces.push( { oldPart: oldPart
, newPart: newPart
, maxTimes: maxTimes });
return this;
}
setSort(order)
{
this.data.sortOrder = order;
return this;
}
setMaxCost(maxCost)
{
this.data.maxCost = maxCost;
return this;
}
export()
{
return this.data;
}
import(data)
{
this.data = data;
return this;
}
fabricate()
{
let bodypartPrice = ((part) =>
{
switch(part)
{
case MOVE: return 50;
case CARRY:return 50;
case WORK: return 100;
case ATTACK: return 80;
case RANGED_ATTACK:return 150;
case HEAL: return 250;
case CLAIM: return 600;
case TOUGH: return 10;
default: return Number.MAX_SAFE_INTEGER;}});
let maxCost = this.data.maxCost;
let currentCost = 0;
let result = [];
let endPatterns = false;
this.data.patterns.forEach(function(patternObject)
{
if(endPatterns)
return;
for(let repeats = 0; repeats < patternObject.maxTimes; repeats++)
{
let addition = [];
let additionCost = 0;
for(let index in patternObject.pattern)
{
let part = patternObject.pattern[index];
let price = bodypartPrice(part);
if(price + additionCost + currentCost > maxCost || result.length + addition.length >= MAX_BODYPARTS)
{
endPatterns = true;
return;
}
additionCost += price;
addition.push(part);
}
currentCost += additionCost;
for(let index in addition)
result.push(addition[index]);
}
});
this.data.replaces.forEach(function(replaceObject)
{
for(let repeats = 0; repeats < replaceObject.maxTimes; repeats++)
{
let index = result.indexOf(replaceObject.oldPart);
if(index === -1)
break;
let oldCost = bodypartPrice(replaceObject.oldPart);
let newCost = bodypartPrice(replaceObject.newPart);
if(currentCost - oldCost + newCost > maxCost)
break;
currentCost += newCost - oldCost;
result[index] = replaceObject.newPart;
}
} );
if(this.data.sortOrder.length !== 0)
result = _.sortBy(result, (part)=> this.data.sortOrder.indexOf(part));
return result;
}
};