本文整理汇总了Java中com.badlogic.gdx.utils.Bits.isEmpty方法的典型用法代码示例。如果您正苦于以下问题:Java Bits.isEmpty方法的具体用法?Java Bits.isEmpty怎么用?Java Bits.isEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.badlogic.gdx.utils.Bits
的用法示例。
在下文中一共展示了Bits.isEmpty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: matches
import com.badlogic.gdx.utils.Bits; //导入方法依赖的package包/类
/**
* @return Whether the entity matches the family requirements or not
*/
public boolean matches(Entity entity) {
Bits entityComponentBits = entity.getComponentBits();
if (entityComponentBits.isEmpty())
return false;
for (int i = all.nextSetBit(0); i >= 0; i = all.nextSetBit(i + 1)) {
if (!entityComponentBits.get(i))
return false;
}
if (!one.isEmpty() && !one.intersects(entityComponentBits)) {
return false;
}
if (!exclude.isEmpty() && exclude.intersects(entityComponentBits)) {
return false;
}
return true;
}
示例2: getFamilyHash
import com.badlogic.gdx.utils.Bits; //导入方法依赖的package包/类
private static String getFamilyHash (Bits all, Bits one, Bits exclude) {
StringBuilder stringBuilder = new StringBuilder();
if (!all.isEmpty()) {
stringBuilder.append("{all:").append(getBitsString(all)).append("}");
}
if (!one.isEmpty()) {
stringBuilder.append("{one:").append(getBitsString(one)).append("}");
}
if (!exclude.isEmpty()) {
stringBuilder.append("{exclude:").append(getBitsString(exclude)).append("}");
}
return stringBuilder.toString();
}
示例3: is
import com.badlogic.gdx.utils.Bits; //导入方法依赖的package包/类
public boolean is(Bits rgmask) {
return (index < 0 && rgmask.isEmpty()) || rgmask.get(index);
}