Class GdxGame

java.lang.Object
com.badlogic.gdx.Game
com.csse3200.game.GdxGame
All Implemented Interfaces:
com.badlogic.gdx.ApplicationListener

public class GdxGame extends com.badlogic.gdx.Game
Entry point of the non-platform-specific game logic. Controls which screen is currently running. The current screen triggers transitions to other screens. This works similarly to a finite state machine (See the State Pattern).
  • Constructor Details

    • GdxGame

      public GdxGame()
  • Method Details

    • create

      public void create()
    • setScreen

      public void setScreen(GdxGame.ScreenType screenType)
      Sets the game's screen to a new screen of the provided type.
      Parameters:
      screenType - screen type
    • getScreenType

      public GdxGame.ScreenType getScreenType()
      Returns current screen that game is displaying.
      Returns:
      ScreenType
    • setPlayerLives

      public void setPlayerLives(int lives)
      Sets the number of lives player currently has. This is used to store number of lives between screen changes (eg. respawn, exit etc).
      Parameters:
      lives - Number of remaining lives player has.
    • getPlayerLives

      public int getPlayerLives()
      Returns the number of lives player currently has. This is accessed when respawning player between screen changes (eg. respawn/exit etc).
      Returns:
      Number of remaining lives player has.
    • dispose

      public void dispose()
      Specified by:
      dispose in interface com.badlogic.gdx.ApplicationListener
      Overrides:
      dispose in class com.badlogic.gdx.Game
    • exit

      public void exit()
      Exit the game.