-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototype.tower.js
78 lines (71 loc) · 2.13 KB
/
prototype.tower.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
// create a new function for StructureTower
StructureTower.prototype.defend =
function() {
// find closes hostile creep
var target = this.pos.findClosestByRange(FIND_HOSTILE_CREEPS);
// if a hostile creep is found
if (target != undefined) {
//this.attack(target);
var bodyHasAttackPart = false
for (var part in target.body) {
if (target.body[part].type == 'attack' || target.body[part].type == 'ranged_attack') {
bodyHasAttackPart = true;
}
}
if (bodyHasAttackPart == true) {
isAlly = false;
for (ally in Memory.allies) {
if (target.owner.username == Memory.allies[ally]) {
isAlly = true;
}
}
if (!isAlly) {
// ...FIRE!
this.attack(target);
return;
}
}
}
if (this.energy > this.energyCapacity / 2) {
// heal creeps in room
var creepsInRoom = this.room.find(FIND_MY_CREEPS);
for(let creep in creepsInRoom){
if (creep.hits < creep.hitsMax){
this.heal(creep);
}
}
// repair walls and ramparts
var target,
weakestRampart,
weakestWall;
// get all walls and make sure they're not game generated barriers
var walls = this.room.find(FIND_STRUCTURES, {
filter: (s) => s.structureType == STRUCTURE_WALL &&
s.pos.x < 49 && s.pos.y < 49
});
// get all ramparts
var ramparts = this.room.find(FIND_STRUCTURES, {
filter: (s) => s.structureType == STRUCTURE_RAMPART
&& s.hits < 2000000
});
// if (walls.length > 0) {
// weakestWall = _.min(walls, 'hits');
// target = weakestWall;
// }
if (ramparts.length > 0) {
weakestRampart = _.min(ramparts, 'hits');
if (weakestWall != undefined){
if(weakestRampart.hits < weakestWall.hits){
target = weakestRampart;
}
}
else{
target = weakestRampart;
}
}
// if we find something that has to be repaired
if (target != undefined) {
this.repair(target);
}
}
};