Class PlanetScreen

java.lang.Object
com.badlogic.gdx.ScreenAdapter
com.csse3200.game.screens.PlanetScreen
All Implemented Interfaces:
com.badlogic.gdx.Screen

public class PlanetScreen extends com.badlogic.gdx.ScreenAdapter
A screen that represents a single planet of the game with its corresponding game area/s. Determines which game area to generate and the next planet in the chain.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Construct the PlanetScreen instance for the first planet (Earth).
    Construct the PlanetScreen instance for the planet of given name.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Dispose of the entire game screen.
    void
    Do not dispose of all services and renderers on screen switch.
    Get the next planet in the sequence after the current planet.
    void
     
    void
    render(float delta)
     
    void
    resize(int width, int height)
     
    void
     
    void
    Sets the current game area the player is on.
    void
    Create the screen services and game areas on show.

    Methods inherited from class com.badlogic.gdx.ScreenAdapter

    hide

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • name

      public final String name
  • Constructor Details

    • PlanetScreen

      public PlanetScreen(GdxGame game)
      Construct the PlanetScreen instance for the first planet (Earth).
      Parameters:
      game - The current game instance to display screen on.
    • PlanetScreen

      public PlanetScreen(GdxGame game, String name)
      Construct the PlanetScreen instance for the planet of given name.
      Parameters:
      game - The current game instance to display screen on.
      name - The name of the planet to create a screen for.
  • Method Details

    • show

      public void show()
      Create the screen services and game areas on show.
      Specified by:
      show in interface com.badlogic.gdx.Screen
      Overrides:
      show in class com.badlogic.gdx.ScreenAdapter
    • getNextPlanet

      public PlanetScreen getNextPlanet()
      Get the next planet in the sequence after the current planet.
      Returns:
      The PlanetScreen instance for the next planet.
    • setCurrentArea

      public void setCurrentArea(String name)
      Sets the current game area the player is on.
      Parameters:
      name - The name of the game area.
    • render

      public void render(float delta)
      Specified by:
      render in interface com.badlogic.gdx.Screen
      Overrides:
      render in class com.badlogic.gdx.ScreenAdapter
    • resize

      public void resize(int width, int height)
      Specified by:
      resize in interface com.badlogic.gdx.Screen
      Overrides:
      resize in class com.badlogic.gdx.ScreenAdapter
    • pause

      public void pause()
      Specified by:
      pause in interface com.badlogic.gdx.Screen
      Overrides:
      pause in class com.badlogic.gdx.ScreenAdapter
    • resume

      public void resume()
      Specified by:
      resume in interface com.badlogic.gdx.Screen
      Overrides:
      resume in class com.badlogic.gdx.ScreenAdapter
    • dispose

      public void dispose()
      Do not dispose of all services and renderers on screen switch. Preserve state
      Specified by:
      dispose in interface com.badlogic.gdx.Screen
      Overrides:
      dispose in class com.badlogic.gdx.ScreenAdapter
    • clear

      public void clear()
      Dispose of the entire game screen.