-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrole.harvester.js
42 lines (39 loc) · 1.83 KB
/
role.harvester.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
var roleHarvester = {
/** @param {Creep} creep **/
run: function(creep) {
if(creep.store.getFreeCapacity() > 0) {
var sources = creep.room.find(FIND_SOURCES);
if(creep.harvest(sources[creep.room.memory.harvester_source]) == ERR_NOT_IN_RANGE) {
creep.moveTo(sources[creep.room.memory.harvester_source], {visualizePathStyle: {stroke: '#ffaa00'}});
}
}
else {
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_EXTENSION ||
structure.structureType == STRUCTURE_SPAWN ||
structure.structureType == STRUCTURE_TOWER) &&
structure.store.getFreeCapacity(RESOURCE_ENERGY) > 0;
}
});
if(targets.length > 0) {
if(creep.transfer(targets[0], RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) {
creep.moveTo(targets[0], {visualizePathStyle: {stroke: '#ffffff'}});
}
}else{
var targets = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => {
return (structure.structureType == STRUCTURE_EXTENSION ||
structure.structureType == STRUCTURE_SPAWN ||
structure.structureType == STRUCTURE_TOWER);
}
});
creep.moveTo(targets[0], {visualizePathStyle: {stroke: '#ffffff'}});
}
}
},
spawn: function(spawner){
Game.spawns[spawner].spawnCreep([WORK,CARRY,CARRY,MOVE,MOVE], "harvester" + Game.time.toString().slice(-4), {memory: {role:'harvester', room:Game.spawns[spawner].room.name}});
}
};
module.exports = roleHarvester;