33 lines
1.3 KiB
JavaScript
33 lines
1.3 KiB
JavaScript
var roleHarvester = {
|
|
|
|
/** @param {Creep} creep **/
|
|
run: function(creep) {
|
|
console.log(creep, "running Harvest");
|
|
if(creep.carry.energy < creep.carryCapacity) {
|
|
var sources = creep.room.find(FIND_SOURCES);
|
|
// var source = Game.getObjectById("576a9c8257110ab231d8934b");
|
|
if(creep.harvest(sources[0]) == ERR_NOT_IN_RANGE) {
|
|
console.log(creep, "moving to", sources[0]);
|
|
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) {
|
|
console.log("\tmoving to", targets[0]);
|
|
creep.moveTo(targets[0]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = roleHarvester; |