screeps/role.upgrader.js

30 lines
959 B
JavaScript
Raw Normal View History

2016-06-29 17:21:09 +00:00
var roleUpgrader = {
/** @param {Creep} creep **/
run: function(creep) {
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) {
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) {
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;