forked from VladThePaler/screeps.behaviour-action-pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreep.behaviour.labTech.js
69 lines (67 loc) · 2.43 KB
/
creep.behaviour.labTech.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
let mod = {};
module.exports = mod;
mod.name = 'labTech';
mod.run = function(creep) {
// Assign next Action
let oldTargetId = creep.data.targetId;
if( creep.action == null || creep.action.name == 'idle' ) {
if( creep.data.destiny && creep.data.destiny.task && Task[creep.data.destiny.task] && Task[creep.data.destiny.task].nextAction ) {
Task[creep.data.destiny.task].nextAction(creep);
} else {
this.nextAction(creep);
}
}
// Do some work
if( creep.action && creep.target ) {
creep.action.step(creep);
} else {
logError('Creep without action/activity!\nCreep: ' + creep.name + '\ndata: ' + JSON.stringify(creep.data));
}
};
mod.nextAction = function(creep){
if( creep.pos.roomName != creep.data.homeRoom && Game.rooms[creep.data.homeRoom] && Game.rooms[creep.data.homeRoom].controller ) {
Creep.action.travelling.assignRoom(creep, creep.data.homeRoom);
return;
}
const outflowPriority = [
Creep.action.charging,
Creep.action.feeding,
Creep.action.fueling
];
let priority = outflowPriority;
if( creep.sum < creep.carryCapacity / 2 ) {
priority = [
Creep.action.reallocating,
Creep.action.uncharging,
Creep.action.picking,
Creep.action.withdrawing,
Creep.action.idle
];
} else {
priority = outflowPriority.concat([
Creep.action.storing,
Creep.action.idle,
]);
if ( creep.sum > creep.carry.energy ||
( !creep.room.situation.invasion &&
SPAWN_DEFENSE_ON_ATTACK && creep.room.conserveForDefense && creep.room.relativeEnergyAvailable > 0.8)) {
priority.unshift(Creep.action.storing);
}
if (creep.room.structures.urgentRepairable.length > 0 ) {
priority.unshift(Creep.action.fueling);
}
}
for(var iAction = 0; iAction < priority.length; iAction++) {
var a = priority[iAction];
if(a.isValidAction(creep) && a.isAddableAction(creep)) {
const assigned = a.assignDebounce ? a.assignDebounce(creep, outflowPriority) : a.assign(creep);
if (assigned) {
if (a.name !== 'idle') {
creep.data.lastAction = a.name;
creep.data.lastTarget = creep.target.id;
}
return;
}
}
}
};