-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprobe.js
49 lines (40 loc) · 1.65 KB
/
probe.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
var roleminer = require('miner');
var utilities = require('extra');
var roleprobe = {
/** @param {Creep} creep **/
run: function(creep) {
utilities.droproad(creep);
if(creep.memory.building && creep.carry.energy == 0) {
creep.memory.building = false;
creep.say('harvest');
}
if(!creep.memory.building && creep.carry.energy == creep.carryCapacity) {
creep.memory.building = true;
creep.say('build');
}
if(creep.memory.building) {
var buildtargets = creep.pos.findClosestByRange(FIND_CONSTRUCTION_SITES,{
filter: (structure) => {
return (structure.structureType == STRUCTURE_EXTENSION || structure.structureType == STRUCTURE_ROAD || structure.structureType == STRUCTURE_LINK || structure.structureType == STRUCTURE_CONTAINER || structure.structureType == STRUCTURE_TOWER)}});
if(buildtargets) {
// clear repair flag
creep.memory.repairing=false;
//build a building
if(creep.build(buildtargets) == ERR_NOT_IN_RANGE) {
creep.moveTo(buildtargets, { visualizePathStyle: { stroke: '#ffffff' } }, { reusePath: 15 });
}
}
else{
roleminer.run(creep);
creep.say('miner');
}
}
else{
var sources = creep.room.find(FIND_SOURCES);
if(creep.harvest(sources[1]) == ERR_NOT_IN_RANGE) {
creep.moveTo(sources[1], {visualizePathStyle: {stroke: '#ffaa00'}},{reusePath: 15});
}
}
}
};
module.exports = roleprobe;