Class SpaceNavigationScreen

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

public class SpaceNavigationScreen extends Object implements com.badlogic.gdx.Screen
Represents the navigation screen for the game, allowing the user to navigate between various planets and options.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs a new SpaceNavigationScreen with a reference to the main game.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Frees up resources used by this screen.
    void
    Method called when this screen is no longer the current screen for the game.
    void
    Method called when the game is paused.
    void
    render(float delta)
    Renders the screen.
    void
    resize(int width, int height)
    Resizes the viewport dimensions based on the given width and height.
    void
    Method called when the game is resumed after pausing.
    void
    Invoked when this screen becomes the current screen.

    Methods inherited from class java.lang.Object

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

    • SpaceNavigationScreen

      public SpaceNavigationScreen(GdxGame game)
      Constructs a new SpaceNavigationScreen with a reference to the main game.
      Parameters:
      game - The main game instance.
  • Method Details

    • show

      public void show()
      Invoked when this screen becomes the current screen.
      Specified by:
      show in interface com.badlogic.gdx.Screen
    • render

      public void render(float delta)
      Renders the screen.
      Specified by:
      render in interface com.badlogic.gdx.Screen
      Parameters:
      delta - The time in seconds since the last render.
    • resize

      public void resize(int width, int height)
      Resizes the viewport dimensions based on the given width and height.
      Specified by:
      resize in interface com.badlogic.gdx.Screen
      Parameters:
      width - The new width.
      height - The new height.
    • pause

      public void pause()
      Method called when the game is paused. Currently empty to prevent pausing on the space map.
      Specified by:
      pause in interface com.badlogic.gdx.Screen
    • resume

      public void resume()
      Method called when the game is resumed after pausing. Currently empty as there is no pausing on the space map.
      Specified by:
      resume in interface com.badlogic.gdx.Screen
    • hide

      public void hide()
      Method called when this screen is no longer the current screen for the game. Currently left blank to avoid any unwanted behavior.
      Specified by:
      hide in interface com.badlogic.gdx.Screen
    • dispose

      public void dispose()
      Frees up resources used by this screen.
      Specified by:
      dispose in interface com.badlogic.gdx.Screen