Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 1 | #ifndef AOS_INPUT_DRIVETRAIN_INPUT_H_ |
| 2 | #define AOS_INPUT_DRIVETRAIN_INPUT_H_ |
| 3 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 4 | #include <cmath> |
Tyler Chatow | bf0609c | 2021-07-31 16:13:27 -0700 | [diff] [blame] | 5 | #include <cstdio> |
| 6 | #include <cstring> |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 7 | #include <memory> |
| 8 | |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 9 | #include "aos/logging/logging.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 10 | #include "frc971/control_loops/control_loops_generated.h" |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 11 | #include "frc971/control_loops/drivetrain/drivetrain_config.h" |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 12 | #include "frc971/control_loops/drivetrain/drivetrain_goal_generated.h" |
| 13 | #include "frc971/control_loops/drivetrain/drivetrain_status_generated.h" |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 14 | #include "frc971/input/driver_station_data.h" |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 15 | |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 16 | namespace frc971 { |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 17 | namespace input { |
| 18 | |
Maxwell Henderson | 24f89f3 | 2023-03-25 15:55:46 -0700 | [diff] [blame^] | 19 | using control_loops::drivetrain::PistolBottomButtonUse; |
| 20 | using control_loops::drivetrain::PistolSecondButtonUse; |
| 21 | using control_loops::drivetrain::PistolTopButtonUse; |
| 22 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 23 | // We have a couple different joystick configurations used to drive our skid |
| 24 | // steer robots. These configurations don't change very often, and there are a |
| 25 | // small, discrete, set of them. The interface to the drivetrain is the same |
| 26 | // across all of our drivetrains, so we can abstract that away from our users. |
| 27 | // |
| 28 | // We want to be able to re-use that code across years, and switch joystick |
| 29 | // types quickly and efficiently. |
| 30 | // |
| 31 | // DrivetrainInputReader is the abstract base class which provides a consistent |
| 32 | // API to control drivetrains. |
| 33 | // |
| 34 | // To construct the appropriate DrivetrainInputReader, call |
| 35 | // DrivetrainInputReader::Make with the input type enum. |
| 36 | // To use it, call HandleDrivetrain(data) every time a joystick packet is |
| 37 | // received. |
| 38 | // |
| 39 | // Base class for the interface to the drivetrain implemented by multiple |
| 40 | // joystick types. |
| 41 | class DrivetrainInputReader { |
| 42 | public: |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 43 | // What to use the turn1/2 buttons for. |
| 44 | enum class TurnButtonUse { |
| 45 | // Use the button to enable control loop driving. |
| 46 | kControlLoopDriving, |
| 47 | // Use the button to set line following mode. |
| 48 | kLineFollow, |
| 49 | }; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 50 | // Inputs driver station button and joystick locations |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 51 | DrivetrainInputReader(::aos::EventLoop *event_loop, |
| 52 | driver_station::JoystickAxis wheel, |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 53 | driver_station::JoystickAxis throttle, |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 54 | driver_station::ButtonLocation quick_turn, |
| 55 | driver_station::ButtonLocation turn1, |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 56 | TurnButtonUse turn1_use, |
| 57 | driver_station::ButtonLocation turn2, |
| 58 | TurnButtonUse turn2_use) |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 59 | : wheel_(wheel), |
| 60 | throttle_(throttle), |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 61 | quick_turn_(quick_turn), |
| 62 | turn1_(turn1), |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 63 | turn1_use_(turn1_use), |
| 64 | turn2_(turn2), |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 65 | turn2_use_(turn2_use), |
| 66 | drivetrain_status_fetcher_( |
| 67 | event_loop |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 68 | ->MakeFetcher<::frc971::control_loops::drivetrain::Status>( |
| 69 | "/drivetrain")), |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 70 | drivetrain_goal_sender_( |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 71 | event_loop->MakeSender<::frc971::control_loops::drivetrain::Goal>( |
| 72 | "/drivetrain")) {} |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 73 | |
| 74 | virtual ~DrivetrainInputReader() = default; |
| 75 | |
| 76 | // List of driver joystick types. |
| 77 | enum class InputType { |
| 78 | kSteeringWheel, |
| 79 | kPistol, |
| 80 | kXbox, |
| 81 | }; |
| 82 | |
| 83 | // Constructs the appropriate DrivetrainInputReader. |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 84 | static std::unique_ptr<DrivetrainInputReader> Make( |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 85 | ::aos::EventLoop *event_loop, InputType type, |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 86 | const ::frc971::control_loops::drivetrain::DrivetrainConfig<double> |
| 87 | &dt_config); |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 88 | |
| 89 | // Processes new joystick data and publishes drivetrain goal messages. |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 90 | void HandleDrivetrain(const ::frc971::input::driver_station::Data &data); |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 91 | |
| 92 | // Sets the scalar for the steering wheel for closed loop mode converting |
| 93 | // steering ratio to meters displacement on the two wheels. |
| 94 | void set_wheel_multiplier(double wheel_multiplier) { |
| 95 | wheel_multiplier_ = wheel_multiplier; |
| 96 | } |
| 97 | |
| 98 | // Returns the current robot velocity in m/s. |
| 99 | double robot_velocity() const { return robot_velocity_; } |
| 100 | |
Austin Schuh | 0b00c86 | 2021-10-17 17:39:10 -0700 | [diff] [blame] | 101 | // Returns the current drivetrain status. |
| 102 | const control_loops::drivetrain::Status *drivetrain_status() const { |
| 103 | return drivetrain_status_fetcher_.get(); |
| 104 | } |
| 105 | |
Austin Schuh | a250b2d | 2019-05-27 16:14:02 -0700 | [diff] [blame] | 106 | void set_vision_align_fn( |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 107 | ::std::function<bool(const ::frc971::input::driver_station::Data &data)> |
Austin Schuh | a250b2d | 2019-05-27 16:14:02 -0700 | [diff] [blame] | 108 | vision_align_fn) { |
| 109 | vision_align_fn_ = vision_align_fn; |
| 110 | } |
| 111 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 112 | protected: |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 113 | const driver_station::JoystickAxis wheel_; |
| 114 | const driver_station::JoystickAxis throttle_; |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 115 | const driver_station::ButtonLocation quick_turn_; |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 116 | // Button for enabling control loop driving. |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 117 | const driver_station::ButtonLocation turn1_; |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 118 | const TurnButtonUse turn1_use_; |
| 119 | // But for enabling line following. |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 120 | const driver_station::ButtonLocation turn2_; |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 121 | const TurnButtonUse turn2_use_; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 122 | |
Austin Schuh | 48d3a96 | 2019-03-17 18:12:32 -0700 | [diff] [blame] | 123 | bool last_is_control_loop_driving_ = false; |
| 124 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 125 | // Structure containing the (potentially adjusted) steering and throttle |
| 126 | // values from the joysticks. |
| 127 | struct WheelAndThrottle { |
| 128 | double wheel; |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 129 | double wheel_velocity; |
| 130 | double wheel_torque; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 131 | double throttle; |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 132 | double throttle_velocity; |
| 133 | double throttle_torque; |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 134 | bool high_gear; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 135 | }; |
| 136 | |
| 137 | private: |
| 138 | // Computes the steering and throttle from the provided driverstation data. |
| 139 | virtual WheelAndThrottle GetWheelAndThrottle( |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 140 | const ::frc971::input::driver_station::Data &data) = 0; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 141 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 142 | ::aos::Fetcher<::frc971::control_loops::drivetrain::Status> |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 143 | drivetrain_status_fetcher_; |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 144 | ::aos::Sender<::frc971::control_loops::drivetrain::Goal> |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 145 | drivetrain_goal_sender_; |
| 146 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 147 | double robot_velocity_ = 0.0; |
| 148 | // Goals to send to the drivetrain in closed loop mode. |
| 149 | double left_goal_ = 0.0; |
| 150 | double right_goal_ = 0.0; |
| 151 | // The scale for the joysticks for closed loop mode converting |
| 152 | // joysticks to meters displacement on the two wheels. |
| 153 | double wheel_multiplier_ = 0.5; |
Austin Schuh | a250b2d | 2019-05-27 16:14:02 -0700 | [diff] [blame] | 154 | |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 155 | ::std::function<bool(const ::frc971::input::driver_station::Data &data)> |
Austin Schuh | a250b2d | 2019-05-27 16:14:02 -0700 | [diff] [blame] | 156 | vision_align_fn_; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | // Implements DrivetrainInputReader for the original steering wheel. |
| 160 | class SteeringWheelDrivetrainInputReader : public DrivetrainInputReader { |
| 161 | public: |
| 162 | using DrivetrainInputReader::DrivetrainInputReader; |
| 163 | |
| 164 | // Creates a DrivetrainInputReader with the corresponding joystick ports and |
| 165 | // axis for the big steering wheel and throttle stick. |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 166 | static std::unique_ptr<SteeringWheelDrivetrainInputReader> Make( |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 167 | ::aos::EventLoop *event_loop, bool default_high_gear); |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 168 | |
| 169 | // Sets the default shifter position |
| 170 | void set_default_high_gear(bool default_high_gear) { |
| 171 | high_gear_ = default_high_gear; |
| 172 | default_high_gear_ = default_high_gear; |
| 173 | } |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 174 | |
| 175 | private: |
| 176 | WheelAndThrottle GetWheelAndThrottle( |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 177 | const ::frc971::input::driver_station::Data &data) override; |
Sabina Davis | 82b1918 | 2017-11-10 09:30:25 -0800 | [diff] [blame] | 178 | bool high_gear_; |
| 179 | bool default_high_gear_; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 180 | }; |
| 181 | |
| 182 | class PistolDrivetrainInputReader : public DrivetrainInputReader { |
| 183 | public: |
| 184 | using DrivetrainInputReader::DrivetrainInputReader; |
| 185 | |
| 186 | // Creates a DrivetrainInputReader with the corresponding joystick ports and |
| 187 | // axis for the (cheap) pistol grip controller. |
James Kuszmaul | 8bad241 | 2019-03-10 10:47:56 -0700 | [diff] [blame] | 188 | static std::unique_ptr<PistolDrivetrainInputReader> Make( |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 189 | ::aos::EventLoop *event_loop, bool default_high_gear, |
Maxwell Henderson | 24f89f3 | 2023-03-25 15:55:46 -0700 | [diff] [blame^] | 190 | PistolTopButtonUse top_button_use, |
| 191 | PistolSecondButtonUse second_button_use, |
| 192 | PistolBottomButtonUse bottom_button_use); |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 193 | |
| 194 | private: |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 195 | PistolDrivetrainInputReader( |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 196 | ::aos::EventLoop *event_loop, driver_station::JoystickAxis wheel_high, |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 197 | driver_station::JoystickAxis wheel_low, |
| 198 | driver_station::JoystickAxis wheel_velocity_high, |
| 199 | driver_station::JoystickAxis wheel_velocity_low, |
| 200 | driver_station::JoystickAxis wheel_torque_high, |
| 201 | driver_station::JoystickAxis wheel_torque_low, |
| 202 | driver_station::JoystickAxis throttle_high, |
| 203 | driver_station::JoystickAxis throttle_low, |
| 204 | driver_station::JoystickAxis throttle_velocity_high, |
| 205 | driver_station::JoystickAxis throttle_velocity_low, |
| 206 | driver_station::JoystickAxis throttle_torque_high, |
| 207 | driver_station::JoystickAxis throttle_torque_low, |
| 208 | driver_station::ButtonLocation quick_turn, |
| 209 | driver_station::ButtonLocation shift_high, |
| 210 | driver_station::ButtonLocation shift_low, |
| 211 | driver_station::ButtonLocation turn1, |
James Kuszmaul | c4eb1b2 | 2019-04-13 15:48:34 -0700 | [diff] [blame] | 212 | driver_station::ButtonLocation turn2, |
| 213 | driver_station::ButtonLocation slow_down) |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 214 | : DrivetrainInputReader(event_loop, wheel_high, throttle_high, quick_turn, |
| 215 | turn1, TurnButtonUse::kLineFollow, turn2, |
Austin Schuh | 48d3a96 | 2019-03-17 18:12:32 -0700 | [diff] [blame] | 216 | TurnButtonUse::kControlLoopDriving), |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 217 | wheel_low_(wheel_low), |
| 218 | wheel_velocity_high_(wheel_velocity_high), |
| 219 | wheel_velocity_low_(wheel_velocity_low), |
| 220 | wheel_torque_high_(wheel_torque_high), |
| 221 | wheel_torque_low_(wheel_torque_low), |
| 222 | throttle_low_(throttle_low), |
| 223 | throttle_velocity_high_(throttle_velocity_high), |
| 224 | throttle_velocity_low_(throttle_velocity_low), |
| 225 | throttle_torque_high_(throttle_torque_high), |
| 226 | throttle_torque_low_(throttle_torque_low), |
| 227 | shift_high_(shift_high), |
James Kuszmaul | c4eb1b2 | 2019-04-13 15:48:34 -0700 | [diff] [blame] | 228 | shift_low_(shift_low), |
| 229 | slow_down_(slow_down) {} |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 230 | |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 231 | WheelAndThrottle GetWheelAndThrottle( |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 232 | const ::frc971::input::driver_station::Data &data) override; |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 233 | |
| 234 | // Sets the default shifter position |
| 235 | void set_default_high_gear(bool default_high_gear) { |
| 236 | high_gear_ = default_high_gear; |
| 237 | default_high_gear_ = default_high_gear; |
| 238 | } |
| 239 | |
| 240 | const driver_station::JoystickAxis wheel_low_; |
| 241 | const driver_station::JoystickAxis wheel_velocity_high_; |
| 242 | const driver_station::JoystickAxis wheel_velocity_low_; |
| 243 | const driver_station::JoystickAxis wheel_torque_high_; |
| 244 | const driver_station::JoystickAxis wheel_torque_low_; |
| 245 | |
| 246 | const driver_station::JoystickAxis throttle_low_; |
| 247 | const driver_station::JoystickAxis throttle_velocity_high_; |
| 248 | const driver_station::JoystickAxis throttle_velocity_low_; |
| 249 | const driver_station::JoystickAxis throttle_torque_high_; |
| 250 | const driver_station::JoystickAxis throttle_torque_low_; |
| 251 | |
| 252 | const driver_station::ButtonLocation shift_high_; |
| 253 | const driver_station::ButtonLocation shift_low_; |
James Kuszmaul | c4eb1b2 | 2019-04-13 15:48:34 -0700 | [diff] [blame] | 254 | const driver_station::ButtonLocation slow_down_; |
Austin Schuh | 2b1fce0 | 2018-03-02 20:05:20 -0800 | [diff] [blame] | 255 | |
| 256 | bool high_gear_; |
| 257 | bool default_high_gear_; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 258 | }; |
| 259 | |
| 260 | class XboxDrivetrainInputReader : public DrivetrainInputReader { |
| 261 | public: |
| 262 | using DrivetrainInputReader::DrivetrainInputReader; |
| 263 | |
| 264 | // Creates a DrivetrainInputReader with the corresponding joystick ports and |
| 265 | // axis for the Xbox controller. |
Austin Schuh | bd0a40f | 2019-06-30 14:56:31 -0700 | [diff] [blame] | 266 | static std::unique_ptr<XboxDrivetrainInputReader> Make( |
| 267 | ::aos::EventLoop *event_loop); |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 268 | |
| 269 | private: |
| 270 | WheelAndThrottle GetWheelAndThrottle( |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 271 | const ::frc971::input::driver_station::Data &data) override; |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 272 | }; |
| 273 | |
| 274 | } // namespace input |
James Kuszmaul | 7077d34 | 2021-06-09 20:23:58 -0700 | [diff] [blame] | 275 | } // namespace frc971 |
Sabina Davis | 92d2efa | 2017-11-04 22:35:25 -0700 | [diff] [blame] | 276 | |
| 277 | #endif // AOS_INPUT_DRIVETRAIN_INPUT_H_ |