-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrole.miner.js
66 lines (58 loc) · 2.04 KB
/
role.miner.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
module.exports = {
run: function (creep) {
creep.memory.currentRole = 'miner'
let moveOpts = { visualizePathStyle: { stroke: '#ffaaff' }, reusePath: 3 }
let minerals = creep.room.find(FIND_MINERALS)
let mineralType = minerals[0].mineralType
let totalLoad = creep.store.getUsedCapacity()
let carryingEnergy = creep.store.getUsedCapacity(RESOURCE_ENERGY)
let carryingMineral = creep.store.getUsedCapacity(mineralType)
let nonEnergyLoad = totalLoad - carryingEnergy
// console.log(`🚀 ~ file: role.miner.js ~ ${creep} ~ totalLoad ${totalLoad} carryingMineral ${carryingMineral} carryingEnergy ${carryingEnergy}. Room has ${minerals} of type ${mineralType} and non-energy load ${nonEnergyLoad}`,)
let storage = creep.room.find(FIND_STRUCTURES, {
filter: (s) => s.structureType == STRUCTURE_STORAGE && s.store.getFreeCapacity() > 100
})
let containers = creep.room.find(FIND_STRUCTURES, {
filter: (s) => s.structureType == STRUCTURE_CONTAINER && s.store.getFreeCapacity() > 100
})
// set boolean logic to determine whether creep mines or moves to transfer
if (creep.store.getFreeCapacity() == 0) {
creep.memory.mining = false
creep.memory.currentTask = '⚡ find transfer target'
} else if (creep.store.getFreeCapacity() > 0 && creep.memory.mining) {
creep.memory.mining = true
} else if (creep.store.getUsedCapacity() == 0) {
creep.memory.mining = true
}
if (creep.memory.mining) {
harvest(minerals[0])
} else {
if (storage[0]) {
transfer(storage[0])
} else {
transfer(containers[0])
}
}
function harvest(resource) {
let x = creep.harvest(resource)
if (x == ERR_NOT_IN_RANGE) {
creep.memory.currentTask = '⛏ mining'
creep.moveTo(resource, moveOpts);
} else {
x
}
}
function transfer(toTarget) {
let x
if (nonEnergyLoad > 0) {
x = creep.transfer(toTarget, mineralType)
} else {
x = creep.transfer(toTarget, RESOURCE_ENERGY)
}
if (x == ERR_NOT_IN_RANGE) {
creep.memory.currentTask = '⚒ transfer'
creep.moveTo(toTarget, moveOpts);
}
}
}
}