Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ashley Family.getFamilyFor & ComponentType.getBitsFor Issue #56

Closed
Riusz67 opened this issue Sep 5, 2014 · 3 comments
Closed

Ashley Family.getFamilyFor & ComponentType.getBitsFor Issue #56

Riusz67 opened this issue Sep 5, 2014 · 3 comments
Labels

Comments

@Riusz67
Copy link

Riusz67 commented Sep 5, 2014

Hi,

To expain my issue I'll give you an example :

      PooledEngine engine = new PooledEngine();
      Entity entity;
      for (int i = 0; i < 10; i++) {
         entity = engine.createEntity();
         entity.add(engine.createComponent(CompA.class));
         if(i>4)
            entity.add(engine.createComponent(CompB.class));
         engine.addEntity(entity);
      }

With this code I have 5 entities with the component A et 5 entities with the components A and B.

To see my entities I use :

ImmutableIntMap<Entity> lstWithCompAOnly = engine.getEntitiesFor(Family.getFamilyFor(ComponentType.getBitsFor(CompA.class),new Bits(),ComponentType.getBitsFor(CompB.class)));
ImmutableIntMap<Entity> lstWithCompB = engine.getEntitiesFor(Family.getFamilyFor(CompB.class));

And the sizes are 5 and 5 => it is OK.

Now I do that :

for (Entry<Entity> entry : lstWithCompB)
         entry.value.remove(CompB.class);

I have lstWithCompB with 0 entity => Its OK because no entity has the Component B anymore.
But I expected to have : lstWithCompAOnly with 10 entities because all my entities have the component A without the component B. => I have still 5 entities :(

Why it do that ?
Thank you

@dsaltares dsaltares added the bug label Sep 5, 2014
@dsaltares
Copy link
Member

That sounds like a bug! Will confirm with a text and fix as soon as possible.

dsaltares added a commit that referenced this issue Sep 7, 2014
@dsaltares
Copy link
Member

Fixed in 325223d

@Riusz67
Copy link
Author

Riusz67 commented Sep 7, 2014

Everything works now ! Thank you.
And thank you for Ashley; it's a great framework.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants