Package choreo
Class Choreo
java.lang.Object
choreo.Choreo
Utilities to load and follow Choreo Trajectories
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
A utility for caching loaded trajectories.static interface
Choreo.TrajectoryLogger<ST extends TrajectorySample<ST>>
This interface exists as a type alias. -
Method Summary
Modifier and TypeMethodDescriptionstatic String[]
Fetches the names of all available trajectories in the deploy directory.static <SampleType extends TrajectorySample<SampleType>>
Optional<Trajectory<SampleType>>loadTrajectory
(String trajectoryName) Load a trajectory from the deploy directory.
-
Method Details
-
loadTrajectory
public static <SampleType extends TrajectorySample<SampleType>> Optional<Trajectory<SampleType>> loadTrajectory(String trajectoryName) Load a trajectory from the deploy directory. Choreolib expects .traj files to be placed in src/main/deploy/choreo/[trajectoryName].traj.- Type Parameters:
SampleType
- The type of samples in the trajectory.- Parameters:
trajectoryName
- The path name in Choreo, which matches the file name in the deploy directory, file extension is optional.- Returns:
- The loaded trajectory, or `Optional.empty()` if the trajectory could not be loaded.
-
availableTrajectories
Fetches the names of all available trajectories in the deploy directory.- Returns:
- A list of all available trajectory names.
-