Package com.uniforge.origin.command
Class FunctionalCommand
java.lang.Object
com.uniforge.origin.command.Command
com.uniforge.origin.command.FunctionalCommand
- All Implemented Interfaces:
edu.wpi.first.util.sendable.Sendable
- Direct Known Subclasses:
InstantCommand,RunCommand,StartEndCommand
A command that allows the user to pass in functions for each of the basic command methods through
the constructor. Useful for inline definitions of complex commands - note, however, that if a
command is beyond a certain complexity it is usually better practice to write a proper class for
it than to inline it.
This class is provided by the NewCommands VendorDep
-
Nested Class Summary
Nested classes/interfaces inherited from class com.uniforge.origin.command.Command
Command.InterruptionBehavior -
Field Summary
Fields inherited from class com.uniforge.origin.command.Command
m_requirements -
Constructor Summary
ConstructorsConstructorDescriptionFunctionalCommand(Runnable onInit, Runnable onExecute, Consumer<Boolean> onEnd, BooleanSupplier isFinished, Subsystem... requirements) Creates a new FunctionalCommand. -
Method Summary
Methods inherited from class com.uniforge.origin.command.Command
addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, errorDetected, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setErrorDetected, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout
-
Constructor Details
-
FunctionalCommand
public FunctionalCommand(Runnable onInit, Runnable onExecute, Consumer<Boolean> onEnd, BooleanSupplier isFinished, Subsystem... requirements) Creates a new FunctionalCommand.- Parameters:
onInit- the function to run on command initializationonExecute- the function to run on command executiononEnd- the function to run on command endisFinished- the function that determines whether the command has finishedrequirements- the subsystems required by this command
-
-
Method Details
-
initialize
public void initialize()Description copied from class:CommandThe initial subroutine of a command. Called once when the command is initially scheduled.- Overrides:
initializein classCommand
-
execute
public void execute()Description copied from class:CommandThe main body of a command. Called repeatedly while the command is scheduled. -
end
public void end(boolean interrupted) Description copied from class:CommandThe action to take when the command ends. Called when either the command finishes normally, or when it interrupted/canceled.Do not schedule commands here that share requirements with this command. Use
Command.andThen(Command...)instead. -
isFinished
public boolean isFinished()Description copied from class:CommandWhether the command has finished. Once a command finishes, the scheduler will call its end() method and un-schedule it.- Overrides:
isFinishedin classCommand- Returns:
- whether the command has finished.
-