-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrole.transferer.js
73 lines (59 loc) · 2.84 KB
/
role.transferer.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
var roleTransferer = {
/** @param {Creep} creep **/
run: function(creep) {
creep.room.memory.transferer = creep.name;
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_STORAGE )
}
});
if(targets.length > 0) {
//console.log('Creep ' + creep.name + ' delivering:' + creep.memory.delivering + ' on board:' + creep.carry.energy);
if(creep.memory.delivering != true) {
if (creep.memory.source == undefined || creep.memory.source == "") {
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_LINK && structure.energy > 0)
}
});
//console.log("targets: " + targets.length);
source = creep.pos.findClosestByPath(targets);
if (source != null)
creep.memory.source = source.id;
}
if (creep.memory.source != undefined && creep.memory.source != "") {
statuscode = creep.withdraw(Game.getObjectById(creep.memory.source),RESOURCE_ENERGY);
//console.log(statuscode);
if(statuscode == ERR_NOT_IN_RANGE)
creep.moveTo(Game.getObjectById(creep.memory.source));
if(statuscode == ERR_INVALID_TARGET)
creep.memory.source = "";
}
if(creep.carry.energy == creep.carryCapacity || (creep.memory.source != undefined && (Game.getObjectById(creep.memory.source).energy == 0 && creep.carry.energy > 0))) {
creep.memory.delivering = true;
creep.memory.source = "";
}
}
else {
statuscode = creep.transfer(targets[0], RESOURCE_ENERGY);
//console.log("status code " + statuscode);
if(statuscode == ERR_NOT_IN_RANGE) {
creep.moveTo(targets[0]);
}
if(creep.carry.energy == 0) {
creep.memory.delivering = false;
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_LINK)
}
});
//console.log("targets: " + targets.length);
source = creep.pos.findClosestByPath(targets);
if (source != null)
creep.memory.source = source.id;
}
}
}
}
};
module.exports = roleTransferer;