Class KeyboardPlayerInputComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.input.InputComponent
com.csse3200.game.components.player.KeyboardPlayerInputComponent
All Implemented Interfaces:
com.badlogic.gdx.input.GestureDetector.GestureListener, com.badlogic.gdx.InputProcessor

public class KeyboardPlayerInputComponent extends InputComponent
d Input handler for the player for keyboard and touch (mouse) input. This input handler only uses keyboard input.
  • Constructor Details

    • KeyboardPlayerInputComponent

      public KeyboardPlayerInputComponent()
  • Method Details

    • isWindowOpen

      public boolean isWindowOpen()
      Checks if any Window is currently open and visible on the stage.
      Returns:
      true if any window is open and visible; false otherwise.
    • clearWalking

      public void clearWalking()
    • getLastMousePos

      public com.badlogic.gdx.math.Vector2 getLastMousePos()
      Returns the last known position of the users cursor
    • getTesting

      public int getTesting()
      Returns value for testing.
      Returns:
      int
    • setTesting

      public void setTesting(int testing)
      Sets value for testing.
      Parameters:
      testing -
    • keyDown

      public boolean keyDown(int keycode)
      Triggers player events on specific keycodes.
      Specified by:
      keyDown in interface com.badlogic.gdx.InputProcessor
      Overrides:
      keyDown in class InputComponent
      Returns:
      whether the input was processed
      See Also:
      • InputProcessor.keyDown(int)
    • keyUp

      public boolean keyUp(int keycode)
      Triggers player events on specific keycodes.
      Specified by:
      keyUp in interface com.badlogic.gdx.InputProcessor
      Overrides:
      keyUp in class InputComponent
      Returns:
      whether the input was processed
      See Also:
      • InputProcessor.keyUp(int)
    • touchDown

      public boolean touchDown(int screenX, int screenY, int pointer, int button)
      Function to respond to player mouse press
      Specified by:
      touchDown in interface com.badlogic.gdx.InputProcessor
      Overrides:
      touchDown in class InputComponent
      Parameters:
      screenX - - X position on screen that mouse was pressed
      screenY - - Y position on screen that mouse was pressed
      pointer - -
      button - - Button that pas pressed
      Returns:
      - True or false based on if an action occurred
      See Also:
      • InputProcessor.touchDown(int, int, int, int)
    • touchDragged

      public boolean touchDragged(int screenX, int screenY, int pointer)
      Update location of known mouse position
      Specified by:
      touchDragged in interface com.badlogic.gdx.InputProcessor
      Overrides:
      touchDragged in class InputComponent
      Parameters:
      screenX - , screenY Location of mouse press
      Returns:
      - false
      See Also:
      • InputProcessor.touchDragged(int, int, int)
    • mouseMoved

      public boolean mouseMoved(int screenX, int screenY)
      Update location of known mouse position
      Specified by:
      mouseMoved in interface com.badlogic.gdx.InputProcessor
      Overrides:
      mouseMoved in class InputComponent
      Parameters:
      screenX - , screenY Location of mouse press
      Returns:
      - false
      See Also:
      • InputProcessor.mouseMoved(int, int)
    • getDirection

      public com.badlogic.gdx.math.Vector2 getDirection()
      Returns the direction of the player.
      Returns:
      Vector2
    • triggerDodgeEvent

      public int triggerDodgeEvent()
      Triggers dodge event. Immunity is applied for 200 milliseconds whilst player moves.
      Returns:
    • dodge

      public void dodge()
      Responsible for dodge action Triggers when the spacer is clicked. Cool down of 3000 ms.