Class ProjectileMovementTask

java.lang.Object
com.csse3200.game.ai.tasks.DefaultTask
com.csse3200.game.components.tasks.ProjectileMovementTask
All Implemented Interfaces:
PriorityTask, Task

public class ProjectileMovementTask extends DefaultTask implements PriorityTask
Projectile moves towards the target in a straight line and is disposed once it reaches the target position
  • 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 interface Task
      Overrides:
      start in class DefaultTask
    • 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 interface Task
      Overrides:
      update in class DefaultTask
    • getPriority

      public int getPriority()
      Specified by:
      getPriority in interface PriorityTask