mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
* Use explicit this capture required by C++20 * Use C++20 span * Replace wpi::numbers with std::numbers * Fix C++20 clang-tidy warning false positive in fmt * Remove ciso646 include since C++20 removed that header * Fix global-buffer-overflow asan warnings in ntcore tests * Add DIOSetProxy constructor to HAL * Upgrade MSVC compiler to 2022 * Bump native-utils to 2023.2.7 (changes to std=c++20) Co-authored-by: Peter Johnson <johnson.peter@gmail.com>
68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
#include "frc2/command/CommandBase.h"
|
|
|
|
#include <wpi/sendable/SendableBuilder.h>
|
|
#include <wpi/sendable/SendableRegistry.h>
|
|
|
|
using namespace frc2;
|
|
|
|
CommandBase::CommandBase() {
|
|
wpi::SendableRegistry::Add(this, GetTypeName(*this));
|
|
}
|
|
|
|
void CommandBase::AddRequirements(
|
|
std::initializer_list<Subsystem*> requirements) {
|
|
m_requirements.insert(requirements.begin(), requirements.end());
|
|
}
|
|
|
|
void CommandBase::AddRequirements(std::span<Subsystem* const> requirements) {
|
|
m_requirements.insert(requirements.begin(), requirements.end());
|
|
}
|
|
|
|
void CommandBase::AddRequirements(wpi::SmallSet<Subsystem*, 4> requirements) {
|
|
m_requirements.insert(requirements.begin(), requirements.end());
|
|
}
|
|
|
|
void CommandBase::AddRequirements(Subsystem* requirement) {
|
|
m_requirements.insert(requirement);
|
|
}
|
|
|
|
wpi::SmallSet<Subsystem*, 4> CommandBase::GetRequirements() const {
|
|
return m_requirements;
|
|
}
|
|
|
|
void CommandBase::SetName(std::string_view name) {
|
|
wpi::SendableRegistry::SetName(this, name);
|
|
}
|
|
|
|
std::string CommandBase::GetName() const {
|
|
return wpi::SendableRegistry::GetName(this);
|
|
}
|
|
|
|
std::string CommandBase::GetSubsystem() const {
|
|
return wpi::SendableRegistry::GetSubsystem(this);
|
|
}
|
|
|
|
void CommandBase::SetSubsystem(std::string_view subsystem) {
|
|
wpi::SendableRegistry::SetSubsystem(this, subsystem);
|
|
}
|
|
|
|
void CommandBase::InitSendable(wpi::SendableBuilder& builder) {
|
|
builder.SetSmartDashboardType("Command");
|
|
builder.AddStringProperty(
|
|
".name", [this] { return GetName(); }, nullptr);
|
|
builder.AddBooleanProperty(
|
|
"running", [this] { return IsScheduled(); },
|
|
[this](bool value) {
|
|
bool isScheduled = IsScheduled();
|
|
if (value && !isScheduled) {
|
|
Schedule();
|
|
} else if (!value && isScheduled) {
|
|
Cancel();
|
|
}
|
|
});
|
|
}
|