Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 2x 2x 1x 1x 2x 2x 1x 1x 1x 1x 1x 1x 2x | const roleUpgrader = {
run: function (creep) {
if (creep.memory.upgrading && creep.store[RESOURCE_ENERGY] === 0) {
creep.memory.upgrading = false;
creep.say('⚡ harvest');
}
Iif (!creep.memory.upgrading && creep.store.getFreeCapacity() === 0) {
creep.memory.upgrading = true;
creep.say('⬆ upgrade');
}
if (creep.memory.upgrading) {
Iif (creep.upgradeController(creep.room.controller) === ERR_NOT_IN_RANGE) {
creep.moveTo(creep.room.controller, { visualizePathStyle: { stroke: '#ffffff' } });
}
} else {
// ⚡ PERFORMANCE: Per-tick caching of active sources (consistent across roles)
Eif (creep.room._activeSourcesTick !== Game.time) {
creep.room._activeSources = creep.room.find(FIND_SOURCES_ACTIVE);
creep.room._activeSourcesTick = Game.time;
}
const sources = creep.room._activeSources;
Iif (sources.length > 0) {
if (creep.harvest(sources[0]) === ERR_NOT_IN_RANGE) {
creep.moveTo(sources[0], { visualizePathStyle: { stroke: '#ffaa00' } });
}
}
}
},
};
module.exports = roleUpgrader;
|