Class KeyboardCompanionInputComponent

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

public class KeyboardCompanionInputComponent extends InputComponent implements com.badlogic.gdx.InputProcessor
The KeyboardCompanionInputComponent class handles keyboard input for controlling a companion character.
  • Constructor Details

    • KeyboardCompanionInputComponent

      public KeyboardCompanionInputComponent()
      Constructs a new KeyboardCompanionInputComponent with a priority of 5.
  • Method Details

    • getTesting

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

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

      public boolean keyDown(int keycode)
      Specified by:
      keyDown in interface com.badlogic.gdx.InputProcessor
      Overrides:
      keyDown in class InputComponent
      See Also:
      • InputProcessor.keyDown(int)
    • keyUp

      public boolean keyUp(int keycode)
      Handles key up events and triggers companion events based on specific keycodes.
      Specified by:
      keyUp in interface com.badlogic.gdx.InputProcessor
      Overrides:
      keyUp in class InputComponent
      Parameters:
      keycode - The keycode of the released key.
      Returns:
      True if the input was processed, false otherwise.
      See Also:
      • InputProcessor.keyUp(int)
    • getDirection

      public com.badlogic.gdx.math.Vector2 getDirection()
      Gets the current walking direction.
      Returns:
      The walking direction vector.