![]() |
WPILibC++ 2022.4.1
|
Schedules the given commands when this command is initialized. More...
#include <frc2/command/ScheduleCommand.h>
Public Member Functions | |
ScheduleCommand (wpi::span< Command *const > toSchedule) | |
Creates a new ScheduleCommand that schedules the given commands when initialized. More... | |
ScheduleCommand (Command *toSchedule) | |
ScheduleCommand (ScheduleCommand &&other)=default | |
ScheduleCommand (const ScheduleCommand &other)=default | |
void | Initialize () override |
The initial subroutine of a command. More... | |
bool | IsFinished () override |
Whether the command has finished. More... | |
bool | RunsWhenDisabled () const override |
Whether the given command should run when the robot is disabled. More... | |
![]() | |
CommandHelper ()=default | |
![]() | |
void | AddRequirements (std::initializer_list< Subsystem * > requirements) |
Adds the specified Subsystem requirements to the command. More... | |
void | AddRequirements (wpi::span< Subsystem *const > requirements) |
Adds the specified Subsystem requirements to the command. More... | |
void | AddRequirements (wpi::SmallSet< Subsystem *, 4 > requirements) |
Adds the specified Subsystem requirements to the command. More... | |
void | AddRequirements (Subsystem *requirement) |
Adds the specified Subsystem requirement to the command. More... | |
wpi::SmallSet< Subsystem *, 4 > | GetRequirements () const override |
Gets the Subsystem requirements of the command. More... | |
void | SetName (std::string_view name) |
Sets the name of this Command. More... | |
std::string | GetName () const override |
Gets the name of this Command. More... | |
std::string | GetSubsystem () const |
Gets the subsystem name of this Command. More... | |
void | SetSubsystem (std::string_view subsystem) |
Sets the subsystem name of this Command. More... | |
void | InitSendable (wpi::SendableBuilder &builder) override |
Initializes this Sendable object. More... | |
![]() | |
Command ()=default | |
virtual | ~Command () |
Command (const Command &)=default | |
Command & | operator= (const Command &rhs) |
Command (Command &&)=default | |
Command & | operator= (Command &&)=default |
virtual void | Execute () |
The main body of a command. More... | |
virtual void | End (bool interrupted) |
The action to take when the command ends. More... | |
virtual ParallelRaceGroup | WithTimeout (units::second_t duration) && |
Decorates this command with a timeout. More... | |
virtual ParallelRaceGroup | Until (std::function< bool()> condition) && |
Decorates this command with an interrupt condition. More... | |
virtual ParallelRaceGroup | WithInterrupt (std::function< bool()> condition) && |
Decorates this command with an interrupt condition. More... | |
virtual SequentialCommandGroup | BeforeStarting (std::function< void()> toRun, std::initializer_list< Subsystem * > requirements) && |
Decorates this command with a runnable to run before this command starts. More... | |
virtual SequentialCommandGroup | BeforeStarting (std::function< void()> toRun, wpi::span< Subsystem *const > requirements={}) && |
Decorates this command with a runnable to run before this command starts. More... | |
virtual SequentialCommandGroup | AndThen (std::function< void()> toRun, std::initializer_list< Subsystem * > requirements) && |
Decorates this command with a runnable to run after the command finishes. More... | |
virtual SequentialCommandGroup | AndThen (std::function< void()> toRun, wpi::span< Subsystem *const > requirements={}) && |
Decorates this command with a runnable to run after the command finishes. More... | |
virtual PerpetualCommand | Perpetually () && |
Decorates this command to run perpetually, ignoring its ordinary end conditions. More... | |
virtual ProxyScheduleCommand | AsProxy () |
Decorates this command to run "by proxy" by wrapping it in a ProxyScheduleCommand. More... | |
void | Schedule (bool interruptible) |
Schedules this command. More... | |
void | Schedule () |
Schedules this command, defaulting to interruptible. More... | |
void | Cancel () |
Cancels this command. More... | |
bool | IsScheduled () const |
Whether or not the command is currently scheduled. More... | |
bool | HasRequirement (Subsystem *requirement) const |
Whether the command requires a given subsystem. More... | |
bool | IsGrouped () const |
Whether the command is currently grouped in a command group. More... | |
void | SetGrouped (bool grouped) |
Sets whether the command is currently grouped in a command group. More... | |
![]() | |
virtual | ~Sendable ()=default |
![]() | |
SendableHelper (const SendableHelper &rhs)=default | |
SendableHelper (SendableHelper &&rhs) | |
SendableHelper & | operator= (const SendableHelper &rhs)=default |
SendableHelper & | operator= (SendableHelper &&rhs) |
std::string | GetName () const |
Gets the name of this Sendable object. More... | |
void | SetName (std::string_view name) |
Sets the name of this Sendable object. More... | |
void | SetName (std::string_view subsystem, std::string_view name) |
Sets both the subsystem name and device name of this Sendable object. More... | |
std::string | GetSubsystem () const |
Gets the subsystem name of this Sendable object. More... | |
void | SetSubsystem (std::string_view subsystem) |
Sets the subsystem name of this Sendable object. More... | |
Additional Inherited Members | |
![]() | |
std::unique_ptr< Command > | TransferOwnership () &&override |
![]() | |
CommandBase () | |
![]() | |
SendableHelper ()=default | |
void | SetName (std::string_view moduleType, int channel) |
Sets the name of the sensor with a channel number. More... | |
void | SetName (std::string_view moduleType, int moduleNumber, int channel) |
Sets the name of the sensor with a module and channel number. More... | |
void | AddChild (std::shared_ptr< Sendable > child) |
Add a child component. More... | |
void | AddChild (void *child) |
Add a child component. More... | |
~SendableHelper () | |
![]() | |
wpi::SmallSet< Subsystem *, 4 > | m_requirements |
![]() | |
bool | m_isGrouped = false |
Schedules the given commands when this command is initialized.
Useful for forking off from CommandGroups. Note that if run from a CommandGroup, the group will not know about the status of the scheduled commands, and will treat this command as finishing instantly.
This class is provided by the NewCommands VendorDep
Creates a new ScheduleCommand that schedules the given commands when initialized.
toSchedule | the commands to schedule |
|
explicit |
|
default |
|
default |
|
overridevirtual |
The initial subroutine of a command.
Called once when the command is initially scheduled.
Reimplemented from frc2::Command.
|
overridevirtual |
Whether the command has finished.
Once a command finishes, the scheduler will call its end() method and un-schedule it.
Reimplemented from frc2::Command.
|
overridevirtual |
Whether the given command should run when the robot is disabled.
Override to return true if the command should run when disabled.
Reimplemented from frc2::Command.