Package choreo.util
Class ChoreoAllianceFlipUtil
java.lang.Object
choreo.util.ChoreoAllianceFlipUtil
A utility to standardize flipping of coordinate data based on the current alliance across
different years.
If every vendor used this, the user would be able to specify the year and no matter the year the vendor's code is from, the user would be able to flip as expected.
This API still allows vendors and users to match case against the flipping variant as a way to specially handle cases or throw errors if a variant is explicitly not supported.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
The flipper to use for flipping coordinates. -
Method Summary
Modifier and TypeMethodDescriptionstatic Pose2d
Flips the pose.static Pose3d
Flips the pose.static Rotation2d
flip
(Rotation2d rotation) Flips the rotation.static Rotation3d
flip
(Rotation3d rotation) Flips the rotation.static Translation2d
flip
(Translation2d translation) Flips the translation.static Translation3d
flip
(Translation3d translation) Flips the translation.static double
flipHeading
(double heading) Flips the heading.static double
flipX
(double x) Flips the X coordinate.static double
flipY
(double y) Flips the Y coordinate.Get the flipper that is currently active for flipping coordinates.optionalFlippedPose2d
(Optional<Pose2d> poseOpt, Supplier<Optional<DriverStation.Alliance>> allianceOpt, boolean doFlip) Creates a Supplier<Optional<Pose2d>> based on a Supplier<Optional<Alliance>> and original Optional<Pose2d>static Supplier<Optional<Translation2d>>
optionalFlippedTranslation2d
(Optional<Translation2d> translationOpt, Supplier<Optional<DriverStation.Alliance>> allianceOpt, boolean doFlip) Creates a Supplier<Optional<Translation2d>> that is flipped based on a Supplier<Optional<Alliance>> and original Optional<Translation2d>static void
setYear
(int year) Set the year to determine the Alliance Coordinate Flipper to use.static boolean
Returns if you are on red alliance.
-
Method Details
-
getFlipper
Get the flipper that is currently active for flipping coordinates. It's recommended not to store this locally as the flipper may change.- Returns:
- The active flipper.
-
shouldFlip
Returns if you are on red alliance.- Returns:
- If you are on red alliance.
-
setYear
Set the year to determine the Alliance Coordinate Flipper to use.- Parameters:
year
- The year to set the flipper to. [2020 - 2024]
-
flipX
Flips the X coordinate.- Parameters:
x
- The X coordinate to flip.- Returns:
- The flipped X coordinate.
-
flipY
Flips the Y coordinate.- Parameters:
y
- The Y coordinate to flip.- Returns:
- The flipped Y coordinate.
-
flipHeading
Flips the heading.- Parameters:
heading
- The heading to flip.- Returns:
- The flipped heading.
-
flip
Flips the translation.- Parameters:
translation
- The translation to flip.- Returns:
- The flipped translation.
-
flip
Flips the rotation.- Parameters:
rotation
- The rotation to flip.- Returns:
- The flipped rotation.
-
flip
Flips the pose.- Parameters:
pose
- The pose to flip.- Returns:
- The flipped pose.
-
flip
Flips the translation.- Parameters:
translation
- The translation to flip.- Returns:
- The flipped translation.
-
flip
Flips the rotation.- Parameters:
rotation
- The rotation to flip.- Returns:
- The flipped rotation.
-
flip
Flips the pose.- Parameters:
pose
- The pose to flip.- Returns:
- The flipped pose.
-
optionalFlippedPose2d
public static Supplier<Optional<Pose2d>> optionalFlippedPose2d(Optional<Pose2d> poseOpt, Supplier<Optional<DriverStation.Alliance>> allianceOpt, boolean doFlip) Creates a Supplier<Optional<Pose2d>> based on a Supplier<Optional<Alliance>> and original Optional<Pose2d>- Parameters:
poseOpt
- The pose to flipallianceOpt
- The current alliancedoFlip
- Returns true if flipping based on the alliance should be done- Returns:
- empty if the alliance is empty; the original pose optional if the alliance is blue or doFlip is false; the flipped pose optional if the alliance is red and doFlip is true
-
optionalFlippedTranslation2d
public static Supplier<Optional<Translation2d>> optionalFlippedTranslation2d(Optional<Translation2d> translationOpt, Supplier<Optional<DriverStation.Alliance>> allianceOpt, boolean doFlip) Creates a Supplier<Optional<Translation2d>> that is flipped based on a Supplier<Optional<Alliance>> and original Optional<Translation2d>- Parameters:
translationOpt
- The translation to flipallianceOpt
- The current alliancedoFlip
- Returns true if flipping based on the alliance should be done- Returns:
- empty if the alliance is empty; the original translation optional if the alliance is blue or doFlip is false; the flipped translation optional if the alliance is red and doFlip is true
-