Files
esengine/source/src/ECS/Utils/Matcher.ts

62 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-06-08 18:26:05 +08:00
class Matcher{
2020-06-08 20:11:58 +08:00
protected allSet = new BitSet();
protected exclusionSet = new BitSet();
protected oneSet = new BitSet();
2020-06-08 18:26:05 +08:00
public static empty(){
return new Matcher();
}
2020-06-08 20:11:58 +08:00
public getAllSet(){
return this.allSet;
}
public getExclusionSet(){
return this.exclusionSet;
}
public getOneSet(){
return this.oneSet;
}
2020-06-08 20:11:58 +08:00
public IsIntersted(e: Entity){
if (!this.allSet.isEmpty()){
for (let i = this.allSet.nextSetBit(0); i >= 0; i = this.allSet.nextSetBit(i + 1)){
if (!e.componentBits.get(i))
return false;
}
}
if (!this.exclusionSet.isEmpty() && this.exclusionSet.intersects(e.componentBits))
return false;
if (!this.oneSet.isEmpty() && !this.oneSet.intersects(e.componentBits))
return false;
return true;
}
public all(...types: any[]): Matcher{
types.forEach(type => {
this.allSet.set(ComponentTypeManager.getIndexFor(type));
});
return this;
}
public exclude(...types: any[]){
types.forEach(type => {
this.exclusionSet.set(ComponentTypeManager.getIndexFor(type));
});
return this;
}
public one(...types: any[]){
types.forEach(type => {
this.oneSet.set(ComponentTypeManager.getIndexFor(type));
});
return this;
}
2020-06-08 18:26:05 +08:00
}