2019-08-25 23:55:59 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-01-01 20:09:17 -08:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-08-25 23:55:59 -04:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "frc2/command/CommandScheduler.h"
|
|
|
|
|
|
2020-07-06 23:32:18 -07:00
|
|
|
#include <frc/RobotBase.h>
|
2019-08-25 23:55:59 -04:00
|
|
|
#include <frc/RobotState.h>
|
2020-03-28 12:29:51 -04:00
|
|
|
#include <frc/TimedRobot.h>
|
2019-08-25 23:55:59 -04:00
|
|
|
#include <frc/WPIErrors.h>
|
2020-01-12 22:37:24 -08:00
|
|
|
#include <frc/livewindow/LiveWindow.h>
|
2019-08-25 23:55:59 -04:00
|
|
|
#include <frc/smartdashboard/SendableBuilder.h>
|
2019-09-14 15:22:54 -05:00
|
|
|
#include <frc/smartdashboard/SendableRegistry.h>
|
2019-12-25 00:42:14 -06:00
|
|
|
#include <hal/FRCUsageReporting.h>
|
2019-11-20 22:44:18 -08:00
|
|
|
#include <hal/HALBase.h>
|
2019-11-05 20:52:49 -08:00
|
|
|
#include <networktables/NetworkTableEntry.h>
|
|
|
|
|
#include <wpi/DenseMap.h>
|
2020-01-10 16:10:16 -08:00
|
|
|
#include <wpi/SmallVector.h>
|
2020-03-28 12:29:51 -04:00
|
|
|
#include <wpi/raw_ostream.h>
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
#include "frc2/command/CommandGroupBase.h"
|
|
|
|
|
#include "frc2/command/CommandState.h"
|
|
|
|
|
#include "frc2/command/Subsystem.h"
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
using namespace frc2;
|
2019-11-05 20:52:49 -08:00
|
|
|
|
|
|
|
|
class CommandScheduler::Impl {
|
|
|
|
|
public:
|
|
|
|
|
// A map from commands to their scheduling state. Also used as a set of the
|
|
|
|
|
// currently-running commands.
|
|
|
|
|
wpi::DenseMap<Command*, CommandState> scheduledCommands;
|
|
|
|
|
|
|
|
|
|
// A map from required subsystems to their requiring commands. Also used as a
|
|
|
|
|
// set of the currently-required subsystems.
|
|
|
|
|
wpi::DenseMap<Subsystem*, Command*> requirements;
|
|
|
|
|
|
|
|
|
|
// A map from subsystems registered with the scheduler to their default
|
|
|
|
|
// commands. Also used as a list of currently-registered subsystems.
|
|
|
|
|
wpi::DenseMap<Subsystem*, std::unique_ptr<Command>> subsystems;
|
|
|
|
|
|
|
|
|
|
// The set of currently-registered buttons that will be polled every
|
|
|
|
|
// iteration.
|
|
|
|
|
wpi::SmallVector<wpi::unique_function<void()>, 4> buttons;
|
|
|
|
|
|
|
|
|
|
bool disabled{false};
|
|
|
|
|
|
|
|
|
|
// Lists of user-supplied actions to be executed on scheduling events for
|
|
|
|
|
// every command.
|
|
|
|
|
wpi::SmallVector<Action, 4> initActions;
|
|
|
|
|
wpi::SmallVector<Action, 4> executeActions;
|
|
|
|
|
wpi::SmallVector<Action, 4> interruptActions;
|
|
|
|
|
wpi::SmallVector<Action, 4> finishActions;
|
|
|
|
|
|
|
|
|
|
// Flag and queues for avoiding concurrent modification if commands are
|
|
|
|
|
// scheduled/canceled during run
|
|
|
|
|
|
|
|
|
|
bool inRunLoop = false;
|
|
|
|
|
wpi::DenseMap<Command*, bool> toSchedule;
|
|
|
|
|
wpi::SmallVector<Command*, 4> toCancel;
|
|
|
|
|
};
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
template <typename TMap, typename TKey>
|
|
|
|
|
static bool ContainsKey(const TMap& map, TKey keyToCheck) {
|
|
|
|
|
return map.find(keyToCheck) != map.end();
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-28 12:29:51 -04:00
|
|
|
CommandScheduler::CommandScheduler()
|
|
|
|
|
: m_impl(new Impl), m_watchdog(frc::TimedRobot::kDefaultPeriod, [] {
|
|
|
|
|
wpi::outs() << "CommandScheduler loop time overrun.\n";
|
|
|
|
|
}) {
|
2019-12-25 00:42:14 -06:00
|
|
|
HAL_Report(HALUsageReporting::kResourceType_Command,
|
|
|
|
|
HALUsageReporting::kCommand2_Scheduler);
|
2019-09-14 15:22:54 -05:00
|
|
|
frc::SendableRegistry::GetInstance().AddLW(this, "Scheduler");
|
2020-01-12 22:37:24 -08:00
|
|
|
auto scheduler = frc::LiveWindow::GetInstance();
|
|
|
|
|
scheduler->enabled = [this] {
|
|
|
|
|
this->Disable();
|
|
|
|
|
this->CancelAll();
|
|
|
|
|
};
|
|
|
|
|
scheduler->disabled = [this] { this->Enable(); };
|
2019-09-14 15:22:54 -05:00
|
|
|
}
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2020-01-12 22:37:24 -08:00
|
|
|
CommandScheduler::~CommandScheduler() {
|
|
|
|
|
frc::SendableRegistry::GetInstance().Remove(this);
|
|
|
|
|
auto scheduler = frc::LiveWindow::GetInstance();
|
|
|
|
|
scheduler->enabled = nullptr;
|
|
|
|
|
scheduler->disabled = nullptr;
|
|
|
|
|
}
|
2019-11-05 20:52:49 -08:00
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
CommandScheduler& CommandScheduler::GetInstance() {
|
|
|
|
|
static CommandScheduler scheduler;
|
|
|
|
|
return scheduler;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-28 12:29:51 -04:00
|
|
|
void CommandScheduler::SetPeriod(units::second_t period) {
|
|
|
|
|
m_watchdog.SetTimeout(period);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
void CommandScheduler::AddButton(wpi::unique_function<void()> button) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->buttons.emplace_back(std::move(button));
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
void CommandScheduler::ClearButtons() { m_impl->buttons.clear(); }
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(bool interruptible, Command* command) {
|
2019-11-05 20:52:49 -08:00
|
|
|
if (m_impl->inRunLoop) {
|
|
|
|
|
m_impl->toSchedule.try_emplace(command, interruptible);
|
2019-10-18 10:56:12 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
if (command->IsGrouped()) {
|
|
|
|
|
wpi_setWPIErrorWithContext(CommandIllegalUse,
|
|
|
|
|
"A command that is part of a command group "
|
|
|
|
|
"cannot be independently scheduled");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-11-05 20:52:49 -08:00
|
|
|
if (m_impl->disabled ||
|
2019-08-25 23:55:59 -04:00
|
|
|
(frc::RobotState::IsDisabled() && !command->RunsWhenDisabled()) ||
|
2019-11-05 20:52:49 -08:00
|
|
|
ContainsKey(m_impl->scheduledCommands, command)) {
|
2019-08-25 23:55:59 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const auto& requirements = command->GetRequirements();
|
|
|
|
|
|
|
|
|
|
wpi::SmallVector<Command*, 8> intersection;
|
|
|
|
|
|
|
|
|
|
bool isDisjoint = true;
|
|
|
|
|
bool allInterruptible = true;
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& i1 : m_impl->requirements) {
|
2019-08-25 23:55:59 -04:00
|
|
|
if (requirements.find(i1.first) != requirements.end()) {
|
|
|
|
|
isDisjoint = false;
|
2019-11-05 20:52:49 -08:00
|
|
|
allInterruptible &=
|
|
|
|
|
m_impl->scheduledCommands[i1.second].IsInterruptible();
|
2019-08-25 23:55:59 -04:00
|
|
|
intersection.emplace_back(i1.second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isDisjoint || allInterruptible) {
|
|
|
|
|
if (allInterruptible) {
|
|
|
|
|
for (auto&& cmdToCancel : intersection) {
|
|
|
|
|
Cancel(cmdToCancel);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
command->Initialize();
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->scheduledCommands[command] = CommandState{interruptible};
|
2019-08-25 23:55:59 -04:00
|
|
|
for (auto&& requirement : requirements) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->requirements[requirement] = command;
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
2020-05-21 07:00:34 +03:00
|
|
|
for (auto&& action : m_impl->initActions) {
|
|
|
|
|
action(*command);
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch(command->GetName() + ".Initialize()");
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(Command* command) { Schedule(true, command); }
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(bool interruptible,
|
|
|
|
|
wpi::ArrayRef<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Schedule(interruptible, command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(bool interruptible,
|
|
|
|
|
std::initializer_list<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Schedule(interruptible, command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(wpi::ArrayRef<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Schedule(true, command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Schedule(std::initializer_list<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Schedule(true, command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Run() {
|
2019-11-05 20:52:49 -08:00
|
|
|
if (m_impl->disabled) {
|
2019-08-25 23:55:59 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.Reset();
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
// Run the periodic method of all registered subsystems.
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& subsystem : m_impl->subsystems) {
|
2019-08-25 23:55:59 -04:00
|
|
|
subsystem.getFirst()->Periodic();
|
2020-07-06 23:32:18 -07:00
|
|
|
if (frc::RobotBase::IsSimulation()) {
|
|
|
|
|
subsystem.getFirst()->SimulationPeriodic();
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch("Subsystem Periodic()");
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Poll buttons for new commands to add.
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& button : m_impl->buttons) {
|
2019-08-25 23:55:59 -04:00
|
|
|
button();
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch("buttons.Run()");
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->inRunLoop = true;
|
2019-08-25 23:55:59 -04:00
|
|
|
// Run scheduled commands, remove finished commands.
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto iterator = m_impl->scheduledCommands.begin();
|
|
|
|
|
iterator != m_impl->scheduledCommands.end(); iterator++) {
|
2019-08-25 23:55:59 -04:00
|
|
|
Command* command = iterator->getFirst();
|
|
|
|
|
|
|
|
|
|
if (!command->RunsWhenDisabled() && frc::RobotState::IsDisabled()) {
|
|
|
|
|
Cancel(command);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
command->Execute();
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& action : m_impl->executeActions) {
|
2019-08-25 23:55:59 -04:00
|
|
|
action(*command);
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch(command->GetName() + ".Execute()");
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
if (command->IsFinished()) {
|
|
|
|
|
command->End(false);
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& action : m_impl->finishActions) {
|
2019-08-25 23:55:59 -04:00
|
|
|
action(*command);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (auto&& requirement : command->GetRequirements()) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->requirements.erase(requirement);
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->scheduledCommands.erase(iterator);
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch(command->GetName() + ".End(false)");
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->inRunLoop = false;
|
2019-10-18 10:56:12 -04:00
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& commandInterruptible : m_impl->toSchedule) {
|
2019-10-18 10:56:12 -04:00
|
|
|
Schedule(commandInterruptible.second, commandInterruptible.first);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& command : m_impl->toCancel) {
|
2019-10-18 10:56:12 -04:00
|
|
|
Cancel(command);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->toSchedule.clear();
|
|
|
|
|
m_impl->toCancel.clear();
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
// Add default commands for un-required registered subsystems.
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& subsystem : m_impl->subsystems) {
|
|
|
|
|
auto s = m_impl->requirements.find(subsystem.getFirst());
|
|
|
|
|
if (s == m_impl->requirements.end() && subsystem.getSecond()) {
|
2019-08-25 23:55:59 -04:00
|
|
|
Schedule({subsystem.getSecond().get()});
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
|
|
|
|
|
m_watchdog.Disable();
|
|
|
|
|
if (m_watchdog.IsExpired()) {
|
|
|
|
|
m_watchdog.PrintEpochs();
|
|
|
|
|
}
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::RegisterSubsystem(Subsystem* subsystem) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->subsystems[subsystem] = nullptr;
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::UnregisterSubsystem(Subsystem* subsystem) {
|
2019-11-05 20:52:49 -08:00
|
|
|
auto s = m_impl->subsystems.find(subsystem);
|
|
|
|
|
if (s != m_impl->subsystems.end()) {
|
|
|
|
|
m_impl->subsystems.erase(s);
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::RegisterSubsystem(
|
|
|
|
|
std::initializer_list<Subsystem*> subsystems) {
|
|
|
|
|
for (auto* subsystem : subsystems) {
|
|
|
|
|
RegisterSubsystem(subsystem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-01 20:09:17 -08:00
|
|
|
void CommandScheduler::RegisterSubsystem(wpi::ArrayRef<Subsystem*> subsystems) {
|
|
|
|
|
for (auto* subsystem : subsystems) {
|
|
|
|
|
RegisterSubsystem(subsystem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
void CommandScheduler::UnregisterSubsystem(
|
|
|
|
|
std::initializer_list<Subsystem*> subsystems) {
|
|
|
|
|
for (auto* subsystem : subsystems) {
|
|
|
|
|
UnregisterSubsystem(subsystem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-01 20:09:17 -08:00
|
|
|
void CommandScheduler::UnregisterSubsystem(
|
|
|
|
|
wpi::ArrayRef<Subsystem*> subsystems) {
|
|
|
|
|
for (auto* subsystem : subsystems) {
|
|
|
|
|
UnregisterSubsystem(subsystem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
Command* CommandScheduler::GetDefaultCommand(const Subsystem* subsystem) const {
|
2019-11-05 20:52:49 -08:00
|
|
|
auto&& find = m_impl->subsystems.find(subsystem);
|
|
|
|
|
if (find != m_impl->subsystems.end()) {
|
2019-08-25 23:55:59 -04:00
|
|
|
return find->second.get();
|
|
|
|
|
} else {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Cancel(Command* command) {
|
2019-11-05 20:52:49 -08:00
|
|
|
if (m_impl->inRunLoop) {
|
|
|
|
|
m_impl->toCancel.emplace_back(command);
|
2019-10-18 10:56:12 -04:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
auto find = m_impl->scheduledCommands.find(command);
|
|
|
|
|
if (find == m_impl->scheduledCommands.end()) return;
|
2019-08-25 23:55:59 -04:00
|
|
|
command->End(true);
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& action : m_impl->interruptActions) {
|
2019-08-25 23:55:59 -04:00
|
|
|
action(*command);
|
|
|
|
|
}
|
2020-03-28 12:29:51 -04:00
|
|
|
m_watchdog.AddEpoch(command->GetName() + ".End(true)");
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->scheduledCommands.erase(find);
|
|
|
|
|
for (auto&& requirement : m_impl->requirements) {
|
2019-08-25 23:55:59 -04:00
|
|
|
if (requirement.second == command) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->requirements.erase(requirement.first);
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Cancel(wpi::ArrayRef<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Cancel(command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::Cancel(std::initializer_list<Command*> commands) {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
Cancel(command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::CancelAll() {
|
2020-01-10 16:10:16 -08:00
|
|
|
wpi::SmallVector<Command*, 16> commands;
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& command : m_impl->scheduledCommands) {
|
2020-01-10 16:10:16 -08:00
|
|
|
commands.emplace_back(command.first);
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
2020-01-10 16:10:16 -08:00
|
|
|
Cancel(commands);
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double CommandScheduler::TimeSinceScheduled(const Command* command) const {
|
2019-11-05 20:52:49 -08:00
|
|
|
auto find = m_impl->scheduledCommands.find(command);
|
|
|
|
|
if (find != m_impl->scheduledCommands.end()) {
|
2019-08-25 23:55:59 -04:00
|
|
|
return find->second.TimeSinceInitialized();
|
|
|
|
|
} else {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
bool CommandScheduler::IsScheduled(
|
|
|
|
|
wpi::ArrayRef<const Command*> commands) const {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
if (!IsScheduled(command)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CommandScheduler::IsScheduled(
|
|
|
|
|
std::initializer_list<const Command*> commands) const {
|
|
|
|
|
for (auto command : commands) {
|
|
|
|
|
if (!IsScheduled(command)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CommandScheduler::IsScheduled(const Command* command) const {
|
2019-11-05 20:52:49 -08:00
|
|
|
return m_impl->scheduledCommands.find(command) !=
|
|
|
|
|
m_impl->scheduledCommands.end();
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Command* CommandScheduler::Requiring(const Subsystem* subsystem) const {
|
2019-11-05 20:52:49 -08:00
|
|
|
auto find = m_impl->requirements.find(subsystem);
|
|
|
|
|
if (find != m_impl->requirements.end()) {
|
2019-08-25 23:55:59 -04:00
|
|
|
return find->second;
|
|
|
|
|
} else {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
void CommandScheduler::Disable() { m_impl->disabled = true; }
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2019-11-05 20:52:49 -08:00
|
|
|
void CommandScheduler::Enable() { m_impl->disabled = false; }
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
void CommandScheduler::OnCommandInitialize(Action action) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->initActions.emplace_back(std::move(action));
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::OnCommandExecute(Action action) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->executeActions.emplace_back(std::move(action));
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::OnCommandInterrupt(Action action) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->interruptActions.emplace_back(std::move(action));
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::OnCommandFinish(Action action) {
|
2019-11-05 20:52:49 -08:00
|
|
|
m_impl->finishActions.emplace_back(std::move(action));
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CommandScheduler::InitSendable(frc::SendableBuilder& builder) {
|
|
|
|
|
builder.SetSmartDashboardType("Scheduler");
|
2020-01-10 14:53:35 -08:00
|
|
|
auto namesEntry = builder.GetEntry("Names");
|
|
|
|
|
auto idsEntry = builder.GetEntry("Ids");
|
|
|
|
|
auto cancelEntry = builder.GetEntry("Cancel");
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2020-01-10 14:53:35 -08:00
|
|
|
builder.SetUpdateTable([=] {
|
2019-08-25 23:55:59 -04:00
|
|
|
double tmp[1];
|
|
|
|
|
tmp[0] = 0;
|
2020-01-10 14:53:35 -08:00
|
|
|
auto toCancel = cancelEntry.GetDoubleArray(tmp);
|
2019-08-25 23:55:59 -04:00
|
|
|
for (auto cancel : toCancel) {
|
|
|
|
|
uintptr_t ptrTmp = static_cast<uintptr_t>(cancel);
|
|
|
|
|
Command* command = reinterpret_cast<Command*>(ptrTmp);
|
2019-11-05 20:52:49 -08:00
|
|
|
if (m_impl->scheduledCommands.find(command) !=
|
|
|
|
|
m_impl->scheduledCommands.end()) {
|
2019-08-25 23:55:59 -04:00
|
|
|
Cancel(command);
|
|
|
|
|
}
|
2020-01-10 14:53:35 -08:00
|
|
|
nt::NetworkTableEntry(cancelEntry)
|
|
|
|
|
.SetDoubleArray(wpi::ArrayRef<double>{});
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wpi::SmallVector<std::string, 8> names;
|
|
|
|
|
wpi::SmallVector<double, 8> ids;
|
2019-11-05 20:52:49 -08:00
|
|
|
for (auto&& command : m_impl->scheduledCommands) {
|
2019-08-25 23:55:59 -04:00
|
|
|
names.emplace_back(command.first->GetName());
|
|
|
|
|
uintptr_t ptrTmp = reinterpret_cast<uintptr_t>(command.first);
|
|
|
|
|
ids.emplace_back(static_cast<double>(ptrTmp));
|
|
|
|
|
}
|
2020-01-10 14:53:35 -08:00
|
|
|
nt::NetworkTableEntry(namesEntry).SetStringArray(names);
|
|
|
|
|
nt::NetworkTableEntry(idsEntry).SetDoubleArray(ids);
|
2019-08-25 23:55:59 -04:00
|
|
|
});
|
|
|
|
|
}
|
2019-11-05 20:52:49 -08:00
|
|
|
|
|
|
|
|
void CommandScheduler::SetDefaultCommandImpl(Subsystem* subsystem,
|
|
|
|
|
std::unique_ptr<Command> command) {
|
|
|
|
|
m_impl->subsystems[subsystem] = std::move(command);
|
|
|
|
|
}
|