-
Notifications
You must be signed in to change notification settings - Fork 0
/
role.transporter.js
27 lines (25 loc) · 1021 Bytes
/
role.transporter.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
var roleTransporter = {
/** @param {Creep} creep **/
run: function(creep) {
if (creep.carry.energy < creep.carryCapacity) {
var sources = creep.room.find(FIND_DROPPED_RESOURCES);
if (creep.pickup(sources[0]) == ERR_NOT_IN_RANGE) {
creep.moveTo(sources[0]);
}
} else {
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_EXTENSION ||
structure.structureType == STRUCTURE_SPAWN ||
structure.structureType == STRUCTURE_TOWER) && structure.energy < structure.energyCapacity;
}
});
if(targets.length > 0) {
if(creep.transfer(targets[0], RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) {
creep.moveTo(targets[0]);
}
}
}
}
};
module.exports = roleTransporter;