Package-level declarations

The Command System

Types

Link copied to clipboard
abstract class AbstractComponent : Component

An abstract version of Component with more quality of life features.

Link copied to clipboard
class BasicCommand(runnable: Runnable = Runnable {}) : Command

A command that executes the provided runnable once. Easily decorated.

Link copied to clipboard
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.

Link copied to clipboard
abstract class CommandGroup @JvmOverloads constructor(requireJoined: Boolean = true, commands: Array<out Command>, var isInterruptable: Boolean = commands.all { it.isInterruptable }) : Command

A type of command that uses multiple commands, joining all their requirements.

Link copied to clipboard

An interface that simplifies access to the CommandScheduler by implementing all its methods.

Link copied to clipboard
abstract class CommandOpMode : LinearOpMode, CommandInterface

An OpMode that uses a CommandScheduler, and optionally, a Robot.

Link copied to clipboard
object CommandScheduler : OpModeManagerNotifier.Notifications

The main orchestrator for Commands and Components.

Link copied to clipboard
interface Component

A class representing a basic unit of robot organization, encapsulating low-level robot hardware and providing methods to be used by Commands. The CommandScheduler uses components to ensure that multiple commands are not using the same hardware at the same time. Commands that use a component should include that component in their Command.requirements set.

Link copied to clipboard
class FunctionalCommand @JvmOverloads constructor(var init: Runnable = Runnable {}, var execute: Runnable = Runnable {}, var end: Consumer<Boolean> = Consumer {}, var isFinished: BooleanSupplier = BooleanSupplier { false }, var isInterruptable: Boolean = true, var requirements: Set<Component> = emptySet()) : Command

A command whose properties can be defined externally. Useful for making simple inline commands or combining commands together.

Link copied to clipboard
class InstantCommand(runnable: Runnable = Runnable {}) : Command

A command that runs as soon as it is scheduled.

Link copied to clipboard
class ListenerCommand @JvmOverloads constructor(command: Command = emptyCommand(), var onInit: Runnable = Runnable {}, var onExecute: Runnable = Runnable {}, var onEnd: Consumer<Boolean> = Consumer<Boolean> {}) : Command

A command useful for adding listeners to other commands.

Link copied to clipboard
class ParallelCommand(isInterruptable: Boolean = true, commands: Command) : CommandGroup

A command that runs commands in parallel until they all finish.

Link copied to clipboard
class RaceCommand(isInterruptable: Boolean, commands: Command) : CommandGroup

A command that runs commands in parallel until one of them finishes.

Link copied to clipboard
class RepeatCommand(command: Command, times: Int) : Command

A command that runs another command multiple times.

Link copied to clipboard
abstract class Robot : CommandInterface

A class that makes any command-based robot code a lot smoother and easier to understand.

Link copied to clipboard
class SelectCommand @JvmOverloads constructor(command: Supplier<Command>, val requirements: Set<Component> = emptySet()) : Command

A command that runs the specified command every time it is scheduled.

Link copied to clipboard
class SequentialCommand(isInterruptable: Boolean = true, commands: Command) : CommandGroup

A command that runs commands in sequence.

Link copied to clipboard
class TimeCommand(execute: BiFunction<Double, Double, Boolean>, clock: NanoClock = NanoClock.system) : Command

A time-based command.

Link copied to clipboard
class WaitCommand @JvmOverloads constructor(var duration: Double, clock: NanoClock = NanoClock.system) : Command

A command that waits the specified duration before finishing.