Class CompanionActions
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.Companion.CompanionActions
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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
create()
Initialise the companion to be facing the player.com.badlogic.gdx.math.Vector2
getSpeed()
boolean
void
setBulletTexturePath
(String path) Set the bullet texture path.void
Set companion mode to attackvoid
set the companion mode to normalvoid
setSpeed
(float x, float y) Set the speed to a set number.void
update()
Update.void
Methods inherited from class com.csse3200.game.components.Component
dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate
-
Field Details
-
walkDirection
public com.badlogic.gdx.math.Vector2 walkDirection -
moving
public boolean moving -
normal
public boolean normal -
companionMode
-
COMPANION_MODE_ATTACK
- See Also:
-
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. -
setCompanionModeAttack
public void setCompanionModeAttack()Set companion mode to attack -
setCompanionModeNormal
public void setCompanionModeNormal()set the companion mode to normal -
isCompanionBeingMoved
public boolean isCompanionBeingMoved() -
setBulletTexturePath
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. -
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 directiony
- - how fast in y direction
-
getSpeed
public com.badlogic.gdx.math.Vector2 getSpeed()
-