Class ProjectileMovementTask
java.lang.Object
com.csse3200.game.ai.tasks.DefaultTask
com.csse3200.game.components.tasks.ProjectileMovementTask
- All Implemented Interfaces:
PriorityTask
,Task
Projectile moves towards the target in a straight line and is disposed once it reaches the target position
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.csse3200.game.ai.tasks.Task
Task.Status
-
Field Summary
Fields inherited from class com.csse3200.game.ai.tasks.DefaultTask
owner, status
-
Constructor Summary
ConstructorsConstructorDescriptionProjectileMovementTask
(com.badlogic.gdx.math.Vector2 targetLocation, int priority, float viewDistance, float maxChaseDistance) Creates a new projectile movement task. -
Method Summary
Methods inherited from class com.csse3200.game.ai.tasks.DefaultTask
create, getStatus, stop
-
Constructor Details
-
ProjectileMovementTask
public ProjectileMovementTask(com.badlogic.gdx.math.Vector2 targetLocation, int priority, float viewDistance, float maxChaseDistance) Creates a new projectile movement task.- Parameters:
targetLocation
- The location where the projectile will go to.priority
- Task priority when moving (0 when not chasing).viewDistance
- Maximum distance from the entity at which the movement can start.maxChaseDistance
- Maximum distance from the entity while moving before giving up.
-
-
Method Details
-
start
public void start()Description copied from interface:Task
Start running this task. This will usually be called by an AI controller.- Specified by:
start
in interfaceTask
- Overrides:
start
in classDefaultTask
-
update
public void update()Description copied from interface:Task
Run one frame of the task. Similar to the update() in Components.- Specified by:
update
in interfaceTask
- Overrides:
update
in classDefaultTask
-
getPriority
public int getPriority()- Specified by:
getPriority
in interfacePriorityTask
-