mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[commands] Allow unsetting a subsystem's default command (#4621)
This commit is contained in:
@@ -258,6 +258,11 @@ void CommandScheduler::Run() {
|
||||
}
|
||||
|
||||
void CommandScheduler::RegisterSubsystem(Subsystem* subsystem) {
|
||||
if (m_impl->subsystems.find(subsystem) != m_impl->subsystems.end()) {
|
||||
std::puts("Tried to register an already-registered subsystem");
|
||||
return;
|
||||
}
|
||||
|
||||
m_impl->subsystems[subsystem] = nullptr;
|
||||
}
|
||||
|
||||
@@ -306,6 +311,10 @@ void CommandScheduler::SetDefaultCommand(Subsystem* subsystem,
|
||||
SetDefaultCommandImpl(subsystem, std::move(defaultCommand).Unwrap());
|
||||
}
|
||||
|
||||
void CommandScheduler::RemoveDefaultCommand(Subsystem* subsystem) {
|
||||
m_impl->subsystems[subsystem] = nullptr;
|
||||
}
|
||||
|
||||
Command* CommandScheduler::GetDefaultCommand(const Subsystem* subsystem) const {
|
||||
auto&& find = m_impl->subsystems.find(subsystem);
|
||||
if (find != m_impl->subsystems.end()) {
|
||||
|
||||
Reference in New Issue
Block a user