Class JoinableComponent

All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable, Placeable, Renderable, Comparable<Renderable>

public class JoinableComponent extends AtlasRenderComponent implements Placeable
This component is used to change the texture and collision bounds of an entity depending on its neighbours.
  • Constructor Details

    • JoinableComponent

      public JoinableComponent(com.badlogic.gdx.graphics.g2d.TextureAtlas textures, JoinLayer layer, JoinableComponentShapes shapes)
      Creates a joinable component.
      Parameters:
      textures - - the textures to use for each cardinality
      layer - - the layer to join on
      shapes - - the collision shapes to use for each cardinality
  • Method Details

    • updateJoin

      public void updateJoin(JoinDirection direction, boolean isJoined)
      Updates whether the entity should be joining in a given direction.
      Parameters:
      direction - - the direction the entity should / should not be joined in.
      isJoined - - whether the entity is joined in the given direction.
    • notifyNeighbours

      public void notifyNeighbours(boolean isJoined)
      Notifies all the entities neighbours of a change in join status.
      Parameters:
      isJoined - - whether the neighbours should or should not be joined.
    • getJoinLayer

      public JoinLayer getJoinLayer()
      Retrieves the layer which is being joined on.
      Returns:
      the layer being joined on.
    • updateTextureAtlas

      public void updateTextureAtlas(com.badlogic.gdx.graphics.g2d.TextureAtlas atlas)
      Changes the texture atlas being used to the atlas given.
      Parameters:
      atlas - - new atlas.
    • placed

      public void placed()
      Determines what connections the structure has, and notifies neighbouring structures of a change.
      Specified by:
      placed in interface Placeable
    • willRemove

      public void willRemove()
      Notifies neighbouring structures that the structure is being removed.
      Specified by:
      willRemove in interface Placeable