Class CompanionActions

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.Companion.CompanionActions

public class CompanionActions extends Component
This class represents the action component for interacting with a Companion entity. It handles various actions related to the Companion, such as movement, speed, and attacking.
  • Field Details

    • walkDirection

      public com.badlogic.gdx.math.Vector2 walkDirection
    • moving

      public boolean moving
    • normal

      public boolean normal
    • companionMode

      public String companionMode
    • COMPANION_MODE_ATTACK

      public static final String COMPANION_MODE_ATTACK
      See Also:
    • COMPANION_MODE_NORMAL

      public static final String COMPANION_MODE_NORMAL
      See Also:
    • COMPANION_ATTACK_MODE_SPEED

      public static final com.badlogic.gdx.math.Vector2 COMPANION_ATTACK_MODE_SPEED
    • COMPANION_NORMAL_MODE_SPEED

      public static final com.badlogic.gdx.math.Vector2 COMPANION_NORMAL_MODE_SPEED
  • Constructor Details

    • CompanionActions

      public CompanionActions()
  • Method Details

    • create

      public void create()
      Initialise the companion to be facing the player. It sets up event listeners for companion movements and actions.
      Overrides:
      create in class Component
    • setCompanionModeAttack

      public void setCompanionModeAttack()
      Set companion mode to attack
    • setCompanionModeNormal

      public void setCompanionModeNormal()
      set the companion mode to normal
    • isCompanionBeingMoved

      public boolean isCompanionBeingMoved()
    • setBulletTexturePath

      public void setBulletTexturePath(String path)
      Set the bullet texture path.
      Parameters:
      path - - Path????
    • update

      public void update()
      Update. This is called once per frame, and will update the companion state. It ensures the companion follows the player and adjusts its speed if boost is activated.
      Overrides:
      update in class Component
    • updateSpeed

      public void updateSpeed()
    • setSpeed

      public void setSpeed(float x, float y)
      Set the speed to a set number.
      Parameters:
      x - - how fast in x direction
      y - - how fast in y direction
    • getSpeed

      public com.badlogic.gdx.math.Vector2 getSpeed()