Command

public abstract class Command

A state machine representing a complete action to be performed using any number of Components. Commands are usually run from the CommandScheduler, but can be run independently if desired. Commands can be chained together to form complex multi-step actions.

Inheritors

Constructors

Link copied to clipboard
public Command Command()

Properties

Link copied to clipboard
private final Boolean isInterruptable

Whether this command can be interrupted by another command.

Link copied to clipboard
private final Set<Component> requirements

The set of components that this command uses.

Link copied to clipboard
protected final SuperTelemetry telem

The global SuperTelemetry instance.

Functions

Link copied to clipboard
public final ParallelCommand and(Command other)

Adds a command to run in parallel with this one (Both run simultaneously until they finish).

public final ParallelCommand and(Runnable runnable)

Adds a runnable to run in parallel with this one (Both run simultaneously until they finish).

Link copied to clipboard
public final Unit cancel()

Cancels this command.

Link copied to clipboard
public final static InstantCommand emptyCommand()

Creates a command that does nothing.

Link copied to clipboard
public final FunctionalCommand end(Consumer<Boolean> action)

Overrides this command's end function.

public Unit end(Boolean interrupted)

Runs once when this command finishes or is interrupted.

Link copied to clipboard
public Unit execute()

Runs repeatedly until isFinished returns true.

public final FunctionalCommand execute(Runnable action)

Overrides this command's execute function.

Link copied to clipboard

The set of components that this command uses.

Link copied to clipboard
public Unit init()

Runs once when first scheduled.

public final FunctionalCommand init(Runnable action)

Overrides this command's init function.

Link copied to clipboard

Returns whether this command is finished.

Link copied to clipboard

Whether this command can be interrupted by another command.

Link copied to clipboard
public final Boolean isScheduled()

Returns whether this command is currently registered with the CommandScheduler.

Link copied to clipboard
public final static BasicCommand of(Runnable runnable)

Creates a BasicCommand out of the provided runnable.

Link copied to clipboard
public final ListenerCommand onEnd(Consumer<Boolean> action)

Returns a ListenerCommand that runs the specified action when this command is ended.

Link copied to clipboard
public final ListenerCommand onExecute(Runnable action)

Returns a ListenerCommand that runs the specified action whenever this command updates.

Link copied to clipboard
public final ListenerCommand onInit(Runnable action)

Returns a ListenerCommand that runs the specified action when this command initializes.

Link copied to clipboard
public final RaceCommand race(Command other)

Adds a command to run in parallel with this one (Both run simultaneously until one finishes).

public final RaceCommand race(Runnable runnable)

Adds a runnable to run in parallel with this one (Both run simultaneously until one finishes).

Link copied to clipboard
public final RepeatCommand repeat(Integer times)

Repeats this command times times.

Link copied to clipboard

Repeats this command indefinitely.

Link copied to clipboard
public final FunctionalCommand requires(Component requirements)
public final FunctionalCommand requires(Set<Component> requirements)

Adds requirements to this command's list of required components.

Link copied to clipboard
public final Unit runBlocking()

Runs this command independently of the CommandScheduler. Initializes, executes and ends this command synchronously while also updating all of its required components and updating CommandScheduler.telem.

Link copied to clipboard

Overrides this command's isFinished function to run until it is cancelled.

Link copied to clipboard
public final FunctionalCommand runOnce()

Overrides this command's isFinished function to run only once.

Link copied to clipboard
public final FunctionalCommand runUntil(BooleanSupplier condition)

Overrides this command's isFinished function to finish when condition returns true.

Link copied to clipboard
public final Boolean schedule()

Schedules this command.

Link copied to clipboard
public final static SelectCommand select(Component requirements, Supplier<Command> command)

Creates a SelectCommand out of the provided command. Note that requirements must be explicitly specified, as the SelectCommand is uncertain of what requirements it will have before being scheduled.

Link copied to clipboard
public final Command setInterruptable(Boolean interruptable)

Sets whether this command is interruptable.

Link copied to clipboard
public final FunctionalCommand stopWhen(BooleanSupplier condition)

Overrides this command's isFinished function to finish when condition returns true, or, if it doesn't, when this command would normally finish.

Link copied to clipboard
public final SequentialCommand then(Command other)

Adds a command to run after this one.

public final SequentialCommand then(Runnable runnable)

Adds a runnable to run after this one.

Link copied to clipboard

Stops the currently active OpMode after this command ends.

Link copied to clipboard
public final SequentialCommand wait(Double duration)

Waits duration seconds after this command finishes.

Link copied to clipboard
public final SequentialCommand waitUntil(BooleanSupplier condition)

Waits until condition returns true after this command finishes.

Link copied to clipboard
public final RaceCommand withTimeout(Double duration)

Interrupts this command if it does not finish after duration seconds.