Class ObstacleFactory

java.lang.Object
com.csse3200.game.entities.factories.ObstacleFactory

public class ObstacleFactory extends Object
Factory to create obstacle entities.

Each obstacle entity type should have a creation method that returns a corresponding entity.

  • Field Details

    • WALL_SIZE

      public static float WALL_SIZE
    • terrain

      protected static TerrainComponent terrain
  • Method Details

    • createTree

      public static Entity createTree(BaseEntityConfig config)
      Creates a tree entity.
      Returns:
      entity
    • createTree

      public static Entity createTree()
      Creates a tree entity.
      Returns:
      entity
    • createEnvironment

      public static Entity createEnvironment()
      Creates a visible obstacle
      Returns:
      Environment entity
    • createEnvironment

      public static Entity createEnvironment(float sizeX, float sizeY, float posX, float posY)
      Creates an obstacle with a custom sized collision box
      Parameters:
      sizeX - the length of the new collision box
      sizeY - the height of the new collision box
      posX - the relative x coordinate of the top left corner of the collision box
      posY - the relative y coordinate of the top left corner of the collision box
      Returns:
      Environment entity with the set collision box
    • createTreeTop

      public static Entity createTreeTop(TreeTopConfig treeTopConfig)
      Creates a tree top entity.
      Returns:
      entity
    • createWall

      public static Entity createWall(float width, float height)
      Creates an invisible physics wall.
      Parameters:
      width - Wall width in world units
      height - Wall height in world units
      Returns:
      Wall entity of given width and height
    • createAsteroid

      public static Entity createAsteroid(AsteroidConfig config)
      Creates an Asteroid that has bounce from config
      Parameters:
      config - Configuration file to match asteroid to
      Returns:
      Asteroid entity
    • createAsteroid

      public static Entity createAsteroid(float width, float height)
      Creates an Asteroid that has bounce
      Parameters:
      width - Asteroid width in world units
      height - Asteroid height in world units
      Returns:
      Asteroid entity of given width and height
    • createStaticAsteroid

      public static Entity createStaticAsteroid(AsteroidConfig config)
      Create a new static asteroid from the given config file
      Parameters:
      config - Configuration file to match asteroid to
      Returns:
      Asteroid Entity
    • createBorder

      public static Entity createBorder(float width, float height)
    • createStaticAsteroid

      public static Entity createStaticAsteroid(float width, float height)
    • createObstacleEnemy

      public static Entity createObstacleEnemy(BaseEntityConfig config)
      Create an obstacle enemy to match given config file
      Parameters:
      config - Configuration file to match enemy to
      Returns:
      ObstacleEnemy
    • createObstacleEnemy

      public static Entity createObstacleEnemy(float width, float height)
    • createObstacleGameGoal

      public static Entity createObstacleGameGoal(BaseEntityConfig config)
    • createObstacleGameGoal

      public static Entity createObstacleGameGoal(float width, float height)
    • createCustomTurret

      public static PlaceableEntity createCustomTurret(TurretConfig config)
    • createCustomTurret

      public static PlaceableEntity createCustomTurret(TurretType type, Entity player)