-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
133 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
#include <algorithm> | ||
#include <vector> | ||
|
||
#include "drive.hpp" | ||
#include "main.h" | ||
|
||
bool Drive::pto_check(pros::Motor check_if_pto) { | ||
auto does_exist = std::find(pto_active.begin(), pto_active.end(), check_if_pto.get_port()); | ||
if (does_exist != pto_active.end()) | ||
return true; // Motor is in the list | ||
return false; // Motor isn't in the list | ||
} | ||
|
||
void Drive::pto_add(std::vector<pros::Motor> pto_list) { | ||
for (auto i : pto_list) { | ||
// Return if the motor is already in the list | ||
if (pto_check(i)) return; | ||
|
||
// Return if the first index was used (this motor is used for velocity) | ||
if (i.get_port() == left_motors[0].get_port() || i.get_port() == right_motors[0].get_port()) { | ||
printf("You cannot PTO the first index!\n"); | ||
return; | ||
} | ||
|
||
pto_active.push_back(i.get_port()); | ||
} | ||
} | ||
|
||
void Drive::pto_remove(std::vector<pros::Motor> pto_list) { | ||
for (auto i : pto_list) { | ||
auto does_exist = std::find(pto_active.begin(), pto_active.end(), i.get_port()); | ||
// Return if the motor isn't in the list | ||
if (does_exist == pto_active.end()) return; | ||
|
||
// Find index of motor | ||
int index = std::distance(pto_active.begin(), does_exist); | ||
pto_active.erase(pto_active.begin() + index); | ||
i.set_brake_mode(CURRENT_BRAKE); // Set the motor to the brake type of the drive | ||
i.set_current_limit(CURRENT_MA); // Set the motor to the mA of the drive | ||
} | ||
} | ||
|
||
void Drive::pto_toggle(std::vector<pros::Motor> pto_list, bool toggle) { | ||
if (toggle) | ||
pto_add(pto_list); | ||
else | ||
pto_remove(pto_list); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters