Search in sources :

Example 11 with OwnerComponent

use of com.gemserk.commons.artemis.components.OwnerComponent in project commons-gdx by gemserk.

the class OrderedByLayerEntitiesTest method shouldReturnSubEntityAfterParentEntityIfGreaterSubLayer.

@Test
public void shouldReturnSubEntityAfterParentEntityIfGreaterSubLayer() {
    World world = new World();
    Entity e1 = world.createEntity();
    Entity e3 = world.createEntity();
    e1.addComponent(new RenderableComponent(5, 0));
    e3.addComponent(new RenderableComponent(5, 1, true));
    e3.addComponent(new OwnerComponent(e1));
    orderedByLayerEntities.add(e1);
    orderedByLayerEntities.add(e3);
    assertSame(orderedByLayerEntities.get(0), e1);
    assertSame(orderedByLayerEntities.get(1), e3);
}
Also used : Entity(com.artemis.Entity) OwnerComponent(com.gemserk.commons.artemis.components.OwnerComponent) RenderableComponent(com.gemserk.commons.artemis.components.RenderableComponent) World(com.artemis.World) Test(org.junit.Test)

Example 12 with OwnerComponent

use of com.gemserk.commons.artemis.components.OwnerComponent in project commons-gdx by gemserk.

the class OrderedByLayerEntitiesTest method bugWhenOrderingSubEntity.

@Test
public void bugWhenOrderingSubEntity() {
    World world = new World();
    Entity e1 = world.createEntity();
    Entity e2 = world.createEntity();
    Entity e3 = world.createEntity();
    e1.addComponent(new RenderableComponent(5));
    e2.addComponent(new RenderableComponent(5));
    e3.addComponent(new RenderableComponent(5, -1));
    e3.addComponent(new OwnerComponent(e2));
    orderedByLayerEntities.add(e1);
    orderedByLayerEntities.add(e2);
    orderedByLayerEntities.add(e3);
    assertSame(orderedByLayerEntities.get(0), e1);
    assertSame(orderedByLayerEntities.get(1), e3);
    assertSame(orderedByLayerEntities.get(2), e2);
}
Also used : Entity(com.artemis.Entity) OwnerComponent(com.gemserk.commons.artemis.components.OwnerComponent) RenderableComponent(com.gemserk.commons.artemis.components.RenderableComponent) World(com.artemis.World) Test(org.junit.Test)

Example 13 with OwnerComponent

use of com.gemserk.commons.artemis.components.OwnerComponent in project commons-gdx by gemserk.

the class OrderedByLayerEntitiesTest method shouldReturnSubEntityBeforeAnotherEntityIfParentEntityBeforeThatOne2.

@Test
public void shouldReturnSubEntityBeforeAnotherEntityIfParentEntityBeforeThatOne2() {
    World world = new World();
    Entity e1 = world.createEntity();
    Entity e2 = world.createEntity();
    Entity e3 = world.createEntity();
    e1.addComponent(new RenderableComponent(5, 0));
    e2.addComponent(new RenderableComponent(5));
    e3.addComponent(new RenderableComponent(5, -1, true));
    e3.addComponent(new OwnerComponent(e1));
    orderedByLayerEntities.add(e1);
    orderedByLayerEntities.add(e2);
    orderedByLayerEntities.add(e3);
    assertSame(orderedByLayerEntities.get(0), e3);
    assertSame(orderedByLayerEntities.get(1), e1);
    assertSame(orderedByLayerEntities.get(2), e2);
}
Also used : Entity(com.artemis.Entity) OwnerComponent(com.gemserk.commons.artemis.components.OwnerComponent) RenderableComponent(com.gemserk.commons.artemis.components.RenderableComponent) World(com.artemis.World) Test(org.junit.Test)

Example 14 with OwnerComponent

use of com.gemserk.commons.artemis.components.OwnerComponent in project commons-gdx by gemserk.

the class ContainerSystemTest method shouldNotProcessDisabledChildrenEntity.

@SuppressWarnings("unchecked")
@Test
public void shouldNotProcessDisabledChildrenEntity() {
    World world = new World();
    WorldWrapper worldWrapper = new WorldWrapper(world);
    worldWrapper.addUpdateSystem(new ContainerSystem());
    worldWrapper.addUpdateSystem(new OwnerSystem());
    shouldBeDisabled = false;
    worldWrapper.addUpdateSystem(new EntityProcessingSystem(StoreComponent.class) {

        @Override
        protected void process(Entity e) {
            if (shouldBeDisabled)
                fail("should not process children");
            System.out.println("processing children");
            shouldBeDisabled = true;
        }
    });
    worldWrapper.init();
    Entity e1 = world.createEntity();
    e1.addComponent(new ContainerComponent());
    Entity e2 = world.createEntity();
    e2.addComponent(new OwnerComponent(e1));
    e2.addComponent(new StoreComponent(new EntityStore(null) {
    }));
    worldWrapper.update(1);
    assertTrue(e1.isEnabled());
    assertTrue(e2.isEnabled());
    e1.delete();
    worldWrapper.update(1);
    assertFalse(e1.isEnabled());
    assertFalse(e2.isEnabled());
    worldWrapper.update(1);
}
Also used : Entity(com.artemis.Entity) WorldWrapper(com.gemserk.commons.artemis.WorldWrapper) EntityProcessingSystem(com.artemis.EntityProcessingSystem) OwnerComponent(com.gemserk.commons.artemis.components.OwnerComponent) ContainerComponent(com.gemserk.commons.artemis.components.ContainerComponent) EntityStore(com.gemserk.commons.artemis.utils.EntityStore) World(com.artemis.World) StoreComponent(com.gemserk.commons.artemis.components.StoreComponent) Test(org.junit.Test)

Example 15 with OwnerComponent

use of com.gemserk.commons.artemis.components.OwnerComponent in project commons-gdx by gemserk.

the class OrderedByLayerEntitiesTest method shouldReturnSubEntityBeforeAnotherEntityIfParentEntityBeforeThatOne.

@Test
public void shouldReturnSubEntityBeforeAnotherEntityIfParentEntityBeforeThatOne() {
    World world = new World();
    Entity e1 = world.createEntity();
    Entity e2 = world.createEntity();
    Entity e3 = world.createEntity();
    e1.addComponent(new RenderableComponent(5, 0));
    e2.addComponent(new RenderableComponent(5));
    e3.addComponent(new RenderableComponent(5, 1, true));
    e3.addComponent(new OwnerComponent(e1));
    orderedByLayerEntities.add(e1);
    orderedByLayerEntities.add(e2);
    orderedByLayerEntities.add(e3);
    assertSame(orderedByLayerEntities.get(0), e1);
    assertSame(orderedByLayerEntities.get(1), e3);
    assertSame(orderedByLayerEntities.get(2), e2);
}
Also used : Entity(com.artemis.Entity) OwnerComponent(com.gemserk.commons.artemis.components.OwnerComponent) RenderableComponent(com.gemserk.commons.artemis.components.RenderableComponent) World(com.artemis.World) Test(org.junit.Test)

Aggregations

OwnerComponent (com.gemserk.commons.artemis.components.OwnerComponent)18 Entity (com.artemis.Entity)15 World (com.artemis.World)14 Test (org.junit.Test)14 RenderableComponent (com.gemserk.commons.artemis.components.RenderableComponent)13 ContainerComponent (com.gemserk.commons.artemis.components.ContainerComponent)5 WorldWrapper (com.gemserk.commons.artemis.WorldWrapper)3 EntityProcessingSystem (com.artemis.EntityProcessingSystem)1 StoreComponent (com.gemserk.commons.artemis.components.StoreComponent)1 Renderable (com.gemserk.commons.artemis.render.Renderable)1 EntityStore (com.gemserk.commons.artemis.utils.EntityStore)1