-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrole.harvesterAdv.js
76 lines (71 loc) · 2.52 KB
/
role.harvesterAdv.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
var roleHarvester = {
/** @param {Creep} creep **/
run: function(creep) {
if(!creep.memory.harvesting && creep.carry.energy == 0)
{
var sources = creep.room.find(FIND_SOURCES, {
filter: (source) => {
var creepLoad = source.pos.findInRange(FIND_MY_CREEPS, 1);
return creepLoad.length < 4;
}
});
if(creep.pos.findClosestByRange(sources) !== null)
{
creep.memory.harvesting = true;
creep.memory.harvestTarget = creep.pos.findClosestByRange(sources).id;
}
creep.say("Harvesting");
}
if(creep.memory.harvesting && creep.carry.energy == creep.carryCapacity)
{
creep.memory.harvesting = false;
creep.say("Storing");
}
if(creep.memory.harvesting && !creep.memory.harvestTarget)
{
creep.memory.harvesting = false;
creep.say("Resetting");
}
if(creep.memory.harvesting)
{
if(creep.memory.harvestTarget){
var target = Game.getObjectById(creep.memory.harvestTarget);
if(creep.harvest(target) == ERR_NOT_IN_RANGE) {
creep.moveTo(target);
}
}
}
if (!creep.memory.harvesting)
{
var targets = creep.pos.findClosestByRange(FIND_STRUCTURES, {
filter: (structure) => {
return (
structure.structureType == STRUCTURE_SPAWN ||
structure.structureType == STRUCTURE_EXTENSION ||
structure.structureType == STRUCTURE_TOWER ||
structure.structureType == STRUCTURE_CONTAINER
) &&
structure.energy < structure.energyCapacity;
}
});
var repairs = creep.room.find(FIND_STRUCTURES, {
filter: (structure) => structure.hits < structure.hitsMax });
repairs.sort( (a,b) => a.hits - b.hits) ;
if(targets)
{
if(creep.transfer(targets, RESOURCE_ENERGY) == ERR_NOT_IN_RANGE)
{
creep.moveTo(targets);
}
}
else if(repairs.length > 0)
{
if(creep.repair(repairs[0]) == ERR_NOT_IN_RANGE)
{
creep.moveTo(repairs[0])
}
}
}
}
}
module.exports = roleHarvester;