2016-06-29 17:21:09 +00:00
|
|
|
var roleUpgrader = {
|
|
|
|
|
|
|
|
/** @param {Creep} creep **/
|
|
|
|
run: function(creep) {
|
2016-06-30 01:02:49 +00:00
|
|
|
console.log(creep, 'running Upgrade');
|
2016-06-29 17:21:09 +00:00
|
|
|
|
|
|
|
if(creep.memory.upgrading && creep.carry.energy == 0) {
|
|
|
|
creep.memory.upgrading = false;
|
|
|
|
}
|
|
|
|
if(!creep.memory.upgrading && creep.carry.energy == creep.carryCapacity) {
|
|
|
|
creep.memory.upgrading = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(creep.memory.upgrading) {
|
|
|
|
if(creep.upgradeController(creep.room.controller) == ERR_NOT_IN_RANGE) {
|
2016-06-30 01:02:49 +00:00
|
|
|
console.log('\tmoving to', creep.room.controller);
|
2016-06-29 17:21:09 +00:00
|
|
|
creep.moveTo(creep.room.controller);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var source = creep.pos.findClosestByPath(FIND_SOURCES);
|
|
|
|
if(creep.harvest(source) == ERR_NOT_IN_RANGE) {
|
2016-06-30 01:02:49 +00:00
|
|
|
console.log('\tmoving to', source);
|
2016-06-29 17:21:09 +00:00
|
|
|
creep.moveTo(source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-28 20:31:39 +00:00
|
|
|
module.exports = roleUpgrader;
|