// Build structures
var structs = curRoom.find(FIND_CONSTRUCTION_SITES, {
filter: (structure) => {
return
_.filter(Memory.jobs.worker.normal,
(job) => {
return job.id == structure.id;
}).length == 0 // Test if this structure is already in the queue
&& _.filter(Game.creeps,
(creep) => {
return creep.memory.curJob != undefined && creep.memory.curJob.id == structure.id;
}).length == 0; // Test if a creep is already working on this structure
}
});
上面的代码返回0个建筑工地(应该通过测试的40个),但每个施工现场都通过(外部)过滤器。
我还测试了内部过滤器(使用.length == 0
):
console.log(<filter1>); // true
console.log(<filter2>); // true
console.log(<filter1>, <filter2>) // true true
console.log(<filter1> && <filter2>
我缺少什么或者我做错了什么?
答案 0 :(得分:0)
我通过在外部过滤器之前(和之外)执行内部过滤器来解决这个问题。这也节省了一些时间,因为大多数相同的过滤器不必多次执行(对于修复等其他操作)