screeps/role.upgrader.js

30 lines
931 B
JavaScript
Raw Normal View History

2016-06-28 20:31:39 +00:00
var roleUpgrader = {
/** @param {Creep} creep **/
run: function(creep) {
2016-06-28 23:38:52 +00:00
console.log(creep, "running Upgrade");
2016-06-28 20:31:39 +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-28 23:38:52 +00:00
console.log("\tmoving to", creep.room.controller);
2016-06-28 20:31:39 +00:00
creep.moveTo(creep.room.controller);
}
}
else {
var sources = creep.room.find(FIND_SOURCES);
if(creep.harvest(sources[0]) == ERR_NOT_IN_RANGE) {
2016-06-28 23:38:52 +00:00
console.log("\tmoving to", sources[0]);
2016-06-28 20:31:39 +00:00
creep.moveTo(sources[0]);
}
}
}
};
module.exports = roleUpgrader;