Local ADStar AK
A class that implements the Pathfinder interface using the LocalADStar algorithm. This class is responsible for calculating paths for a robot to follow on a field, taking into account dynamic obstacles and other constraints.
Usage in FRC: This class is used in FRC (FIRST Robotics Competition) to navigate the robot autonomously on the field. It calculates the optimal path from a start position to a goal position while avoiding obstacles. The path is updated dynamically based on the current state of the field and the robot's position.
Functions
Link copied to clipboard
Get the most recently calculated path.
Link copied to clipboard
Get if a new path has been calculated since the last time a path was retrieved.
Link copied to clipboard
public void setDynamicObstacles(List<Pair<Translation2d, Translation2d>> obs, Translation2d currentRobotPos)
Set the dynamic obstacles that should be avoided while pathfinding.
Link copied to clipboard
Set the goal position to pathfind to.
Link copied to clipboard
Set the start position to pathfind from.