Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 1 | #include <math.h> |
| 2 | #include <stdio.h> |
| 3 | #include <string.h> |
| 4 | #include <unistd.h> |
| 5 | |
| 6 | #include "aos/actions/actions.h" |
| 7 | #include "aos/init.h" |
| 8 | #include "aos/input/action_joystick_input.h" |
| 9 | #include "aos/input/driver_station_data.h" |
| 10 | #include "aos/input/drivetrain_input.h" |
| 11 | #include "aos/input/joystick_input.h" |
| 12 | #include "aos/logging/logging.h" |
| 13 | #include "aos/network/team_number.h" |
| 14 | #include "aos/util/log_interval.h" |
| 15 | #include "frc971/autonomous/base_autonomous_actor.h" |
| 16 | #include "y2020/control_loops/drivetrain/drivetrain_base.h" |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 17 | #include "y2020/constants.h" |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 18 | #include "y2020/control_loops/superstructure/superstructure_goal_generated.h" |
| 19 | #include "y2020/control_loops/superstructure/superstructure_status_generated.h" |
| 20 | |
| 21 | using aos::input::driver_station::ButtonLocation; |
| 22 | using aos::input::driver_station::ControlBit; |
| 23 | using aos::input::driver_station::JoystickAxis; |
| 24 | using aos::input::driver_station::POVLocation; |
| 25 | |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 26 | using frc971::CreateProfileParameters; |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 27 | using frc971::control_loops::CreateStaticZeroingSingleDOFProfiledSubsystemGoal; |
| 28 | using frc971::control_loops::StaticZeroingSingleDOFProfiledSubsystemGoal; |
| 29 | |
| 30 | |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 31 | namespace y2020 { |
| 32 | namespace input { |
| 33 | namespace joysticks { |
| 34 | |
| 35 | namespace superstructure = y2020::control_loops::superstructure; |
| 36 | |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 37 | // TODO(sabina): fix button locations. |
| 38 | |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 39 | const ButtonLocation kShootFast(3, 16); |
| 40 | const ButtonLocation kTurret(3, 15); |
| 41 | const ButtonLocation kHood(3, 3); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 42 | const ButtonLocation kShootSlow(4, 2); |
Austin Schuh | 43a220f | 2020-02-26 22:02:34 -0800 | [diff] [blame^] | 43 | const ButtonLocation kFeed(4, 1); |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 44 | const ButtonLocation kIntakeExtend(3, 9); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 45 | const ButtonLocation kIntakeIn(4, 4); |
| 46 | const ButtonLocation kSpit(4, 5); |
| 47 | |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 48 | class Reader : public ::aos::input::ActionJoystickInput { |
| 49 | public: |
| 50 | Reader(::aos::EventLoop *event_loop) |
| 51 | : ::aos::input::ActionJoystickInput( |
| 52 | event_loop, |
| 53 | ::y2020::control_loops::drivetrain::GetDrivetrainConfig(), |
| 54 | ::aos::input::DrivetrainInputReader::InputType::kPistol, {}), |
| 55 | superstructure_goal_sender_( |
| 56 | event_loop->MakeSender<superstructure::Goal>("/superstructure")), |
| 57 | superstructure_status_fetcher_( |
| 58 | event_loop->MakeFetcher<superstructure::Status>( |
| 59 | "/superstructure")) {} |
| 60 | |
| 61 | void AutoEnded() override { |
| 62 | AOS_LOG(INFO, "Auto ended, assuming disc and have piece\n"); |
| 63 | } |
| 64 | |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 65 | void HandleTeleop(const ::aos::input::driver_station::Data &data) override { |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 66 | superstructure_status_fetcher_.Fetch(); |
| 67 | if (!superstructure_status_fetcher_.get()) { |
| 68 | AOS_LOG(ERROR, "Got no superstructure status message.\n"); |
| 69 | return; |
| 70 | } |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 71 | |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 72 | double hood_pos = constants::Values::kHoodRange().middle(); |
| 73 | double intake_pos = -0.89; |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 74 | double turret_pos = 0.0; |
| 75 | float roller_speed = 0.0f; |
| 76 | double accelerator_speed = 0.0; |
| 77 | double finisher_speed = 0.0; |
| 78 | |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 79 | if (data.IsPressed(kTurret)) { |
| 80 | turret_pos = 3.5; |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 83 | if (data.IsPressed(kHood)) { |
| 84 | hood_pos = 0.05; |
| 85 | } |
| 86 | |
| 87 | if (data.IsPressed(kShootFast)) { |
Austin Schuh | 43a220f | 2020-02-26 22:02:34 -0800 | [diff] [blame^] | 88 | accelerator_speed = 500.0; |
| 89 | finisher_speed = 500.0; |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 90 | } else if (data.IsPressed(kShootSlow)) { |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 91 | accelerator_speed = 30.0; |
| 92 | finisher_speed = 30.0; |
| 93 | } |
| 94 | |
| 95 | if (data.IsPressed(kIntakeExtend)) { |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 96 | intake_pos = 1.0; |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 97 | } |
| 98 | |
Austin Schuh | 43a220f | 2020-02-26 22:02:34 -0800 | [diff] [blame^] | 99 | if (data.IsPressed(kFeed)) { |
| 100 | } |
| 101 | |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 102 | if (data.IsPressed(kIntakeIn)) { |
| 103 | roller_speed = 6.0f; |
| 104 | } else if (data.IsPressed(kSpit)) { |
| 105 | roller_speed = -6.0f; |
| 106 | } |
| 107 | |
| 108 | auto builder = superstructure_goal_sender_.MakeBuilder(); |
| 109 | |
| 110 | flatbuffers::Offset<superstructure::Goal> superstructure_goal_offset; |
| 111 | { |
| 112 | flatbuffers::Offset<StaticZeroingSingleDOFProfiledSubsystemGoal> |
| 113 | hood_offset = CreateStaticZeroingSingleDOFProfiledSubsystemGoal( |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 114 | *builder.fbb(), hood_pos, |
| 115 | CreateProfileParameters(*builder.fbb(), 0.5, 1.0)); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 116 | |
| 117 | flatbuffers::Offset<StaticZeroingSingleDOFProfiledSubsystemGoal> |
| 118 | intake_offset = CreateStaticZeroingSingleDOFProfiledSubsystemGoal( |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 119 | *builder.fbb(), intake_pos, |
| 120 | CreateProfileParameters(*builder.fbb(), 10.0, 30.0)); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 121 | |
| 122 | flatbuffers::Offset<StaticZeroingSingleDOFProfiledSubsystemGoal> |
| 123 | turret_offset = CreateStaticZeroingSingleDOFProfiledSubsystemGoal( |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 124 | *builder.fbb(), turret_pos, |
| 125 | CreateProfileParameters(*builder.fbb(), 6.0, 20.0)); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 126 | |
| 127 | flatbuffers::Offset<superstructure::ShooterGoal> shooter_offset = |
Austin Schuh | f0a637c | 2020-02-25 23:44:12 -0800 | [diff] [blame] | 128 | superstructure::CreateShooterGoal(*builder.fbb(), accelerator_speed, |
| 129 | finisher_speed); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 130 | |
| 131 | superstructure::Goal::Builder superstructure_goal_builder = |
| 132 | builder.MakeBuilder<superstructure::Goal>(); |
| 133 | |
| 134 | superstructure_goal_builder.add_hood(hood_offset); |
| 135 | superstructure_goal_builder.add_intake(intake_offset); |
| 136 | superstructure_goal_builder.add_turret(turret_offset); |
| 137 | superstructure_goal_builder.add_roller_voltage(roller_speed); |
| 138 | superstructure_goal_builder.add_shooter(shooter_offset); |
Austin Schuh | 43a220f | 2020-02-26 22:02:34 -0800 | [diff] [blame^] | 139 | superstructure_goal_builder.add_shooting(data.IsPressed(kFeed)); |
Sabina Davis | a8fed3d | 2020-02-22 21:44:57 -0800 | [diff] [blame] | 140 | |
| 141 | if (!builder.Send(superstructure_goal_builder.Finish())) { |
| 142 | AOS_LOG(ERROR, "Sending superstructure goal failed.\n"); |
| 143 | } |
| 144 | } |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | private: |
| 148 | ::aos::Sender<superstructure::Goal> superstructure_goal_sender_; |
| 149 | |
| 150 | ::aos::Fetcher<superstructure::Status> superstructure_status_fetcher_; |
| 151 | }; |
| 152 | |
| 153 | } // namespace joysticks |
| 154 | } // namespace input |
| 155 | } // namespace y2020 |
| 156 | |
| 157 | int main() { |
James Kuszmaul | ad8a808 | 2020-02-14 21:21:58 -0800 | [diff] [blame] | 158 | ::aos::InitNRT(); |
Stephan Massalt | d021f97 | 2020-01-05 20:41:23 -0800 | [diff] [blame] | 159 | |
| 160 | aos::FlatbufferDetachedBuffer<aos::Configuration> config = |
| 161 | aos::configuration::ReadConfig("config.json"); |
| 162 | |
| 163 | ::aos::ShmEventLoop event_loop(&config.message()); |
| 164 | ::y2020::input::joysticks::Reader reader(&event_loop); |
| 165 | |
| 166 | event_loop.Run(); |
| 167 | |
| 168 | ::aos::Cleanup(); |
| 169 | } |