001/**
002 * Copyright 2024 The Space Cookies : Girl Scout Troop #62868 and FRC Team #1868
003 * Open Source Software; you may modify and/or share it under the terms of
004 * the 3-Clause BSD License found in the root directory of this project.
005 */
006
007package tagalong.measurements;
008
009import edu.wpi.first.math.geometry.Pose3d;
010import edu.wpi.first.math.geometry.Translation2d;
011
012/**
013 * Alliance specific Pose3d wrapper class
014 */
015public class AlliancePose3d {
016  /**
017   * Blue and Red alliance specific 3-dimensional poses
018   */
019  public final Pose3d blue, red;
020
021  /**
022   *
023   * @param blue 3d coordinates for blue alliance side
024   * @param red  3d coordinates for red alliance side
025   */
026  public AlliancePose3d(Pose3d blue, Pose3d red) {
027    this.blue = blue;
028    this.red = red;
029  }
030
031  /**
032   *
033   * @param isRed True if on red alliance
034   * @return Specified alliance's Pose3d
035   */
036  public Pose3d get(boolean isRed) {
037    return isRed ? red : blue;
038  }
039
040  /**
041   *
042   * @param isRed True if on red alliance
043   * @return Specified alliance's pose3d converted to translation2d
044   */
045  public Translation2d getTranslation2d(boolean isRed) {
046    return get(isRed).getTranslation().toTranslation2d();
047  }
048}