mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
48 lines
1.3 KiB
C++
48 lines
1.3 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 "frc/commands/InstantCommand.h"
|
|
|
|
#include <utility>
|
|
|
|
using namespace frc;
|
|
|
|
InstantCommand::InstantCommand(const wpi::Twine& name) : Command(name) {}
|
|
|
|
InstantCommand::InstantCommand(Subsystem& subsystem) : Command(subsystem) {}
|
|
|
|
InstantCommand::InstantCommand(const wpi::Twine& name, Subsystem& subsystem)
|
|
: Command(name, subsystem) {}
|
|
|
|
InstantCommand::InstantCommand(std::function<void()> func)
|
|
: m_func(std::move(func)) {}
|
|
|
|
InstantCommand::InstantCommand(Subsystem& subsystem, std::function<void()> func)
|
|
: InstantCommand(subsystem) {
|
|
m_func = func;
|
|
}
|
|
|
|
InstantCommand::InstantCommand(const wpi::Twine& name,
|
|
std::function<void()> func)
|
|
: InstantCommand(name) {
|
|
m_func = func;
|
|
}
|
|
|
|
InstantCommand::InstantCommand(const wpi::Twine& name, Subsystem& subsystem,
|
|
std::function<void()> func)
|
|
: InstantCommand(name, subsystem) {
|
|
m_func = func;
|
|
}
|
|
|
|
void InstantCommand::_Initialize() {
|
|
Command::_Initialize();
|
|
if (m_func) {
|
|
m_func();
|
|
}
|
|
}
|
|
|
|
bool InstantCommand::IsFinished() {
|
|
return true;
|
|
}
|