Command

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
constructor()

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open val isInterruptable: Boolean = true

Whether this command can be interrupted by another command.

Link copied to clipboard

The set of components that this command uses.

Link copied to clipboard

The global SuperTelemetry instance.

Functions

Link copied to clipboard
infix fun and(other: Command): ParallelCommand

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

infix fun and(runnable: Runnable): ParallelCommand

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

Link copied to clipboard
fun cancel()

Cancels this command.

Link copied to clipboard

Overrides this command's end function.

open fun end(interrupted: Boolean)

Runs once when this command finishes or is interrupted.

Link copied to clipboard
open fun execute()

Runs repeatedly until isFinished returns true.

Overrides this command's execute function.

Link copied to clipboard
open fun init()

Runs once when first scheduled.

Overrides this command's init function.

Link copied to clipboard
open fun isFinished(): Boolean

Returns whether this command is finished.

Link copied to clipboard

Returns whether this command is currently registered with the CommandScheduler.

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard
infix fun race(other: Command): RaceCommand

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

infix fun race(runnable: Runnable): RaceCommand

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

Link copied to clipboard
fun repeat(times: Int): RepeatCommand

Repeats this command times times.

Link copied to clipboard

Repeats this command indefinitely.

Link copied to clipboard
fun requires(vararg requirements: Component): FunctionalCommand

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

Link copied to clipboard

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

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

Link copied to clipboard

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

Link copied to clipboard

Schedules this command.

Link copied to clipboard
fun setInterruptable(interruptable: Boolean): Command

Sets whether this command is interruptable.

Link copied to clipboard

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
infix fun then(other: Command): SequentialCommand

Adds a command to run after this one.

infix fun then(runnable: Runnable): SequentialCommand

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
infix fun wait(duration: Double): SequentialCommand

Waits duration seconds after this command finishes.

Link copied to clipboard

Waits until condition returns true after this command finishes.

Link copied to clipboard

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