Class SpaceMapScreen

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

public class SpaceMapScreen extends com.badlogic.gdx.ScreenAdapter
The game screen containing the main game. Details on libGDX screens: https://happycoding.io/tutorials/libgdx/game-screens
  • Constructor Summary

    Constructors
    Constructor
    Description
    Method for creating the space map screen for the obstacle minigame
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Method for disposing and unloading all assets onto the main screen
    void
    Exitonc(float d)
    Method for exiting from the obstacle minigame to the main screen of the game
    void
    render(float delta)
    Method for rendering the entities in the obstacle minigame alongside updating the distance between two entities
    void
    resize(int width, int height)
    Method for resizing the rendering of the entities

    Methods inherited from class com.badlogic.gdx.ScreenAdapter

    hide, pause, resume, show

    Methods inherited from class java.lang.Object

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

    • SpaceMapScreen

      public SpaceMapScreen(GdxGame game)
      Method for creating the space map screen for the obstacle minigame
      Parameters:
      game - Obstacle minigame
  • Method Details

    • render

      public void render(float delta)
      Method for rendering the entities in the obstacle minigame alongside updating the distance between two entities
      Specified by:
      render in interface com.badlogic.gdx.Screen
      Overrides:
      render in class com.badlogic.gdx.ScreenAdapter
      Parameters:
      delta - The time in seconds since the last render.
    • Exitonc

      public void Exitonc(float d)
      Method for exiting from the obstacle minigame to the main screen of the game
      Parameters:
      d - Distance of the spaceship from the exit goal
    • resize

      public void resize(int width, int height)
      Method for resizing the rendering of the entities
      Specified by:
      resize in interface com.badlogic.gdx.Screen
      Overrides:
      resize in class com.badlogic.gdx.ScreenAdapter
      Parameters:
      width - Width of the render
      height - Height of the render
    • dispose

      public void dispose()
      Method for disposing and unloading all assets onto the main screen
      Specified by:
      dispose in interface com.badlogic.gdx.Screen
      Overrides:
      dispose in class com.badlogic.gdx.ScreenAdapter