CommandScheduler

object CommandScheduler : OpModeManagerNotifier.Notifications

The main orchestrator for Commands and Components.

Properties

Link copied to clipboard
@get:JvmName(name = "gamepad")
var gamepad: MultipleGamepad?

The current gamepads being used, or null if no OpMode is active.

Link copied to clipboard
val hMap: HardwareMap?

The current hardware map, or null if no OpMode is active.

Link copied to clipboard

Whether the current OpMode is an autonomous OpMode.

Link copied to clipboard

Whether the current OpMode is a teleop OpMode.

Link copied to clipboard
var opMode: OpMode?

The currently active OpMode, or null if no OpMode is active.

Link copied to clipboard

Command scheduling policy. If true, all commands which cannot currently be scheduled will be scheduled as soon as they can be schedule. If false (default behavior), all commands which cannot currently be scheduled will not be scheduled.

Link copied to clipboard

The global telemetry object used for both FTC Dashboard and the Driver Station.

Link copied to clipboard

The global telemetry object used for both FTC Dashboard and the Driver Station.

Functions

Link copied to clipboard
@OnCreateEventLoop
fun attachEventLoop(context: Context, eventLoop: FtcEventLoop)

This method attaches itself to the robot controller event loop to automatically add/remove telemetries from the global telemetry, register any gamepads or hardware maps, and provide other useful features.

Link copied to clipboard
fun cancel(vararg commands: Command)

Cancels commands. Ignores whether a command is interruptable.

Link copied to clipboard

Cancels all currently scheduled commands. Ignores whether a command is interruptable.

Link copied to clipboard

Returns whether a command can currently be scheduled.

Link copied to clipboard
fun isRegistered(vararg components: Component): Boolean

Returns whether the given components are registered with this CommandScheduler.

Link copied to clipboard
fun isScheduled(vararg commands: Command): Boolean

Returns whether all the given commands are scheduled.

Link copied to clipboard
fun map(condition: BooleanSupplier, runnable: Runnable)

Maps a condition to a runnable. If the condition returns true, a command is scheduled. A command can be mapped to multiple conditions.

fun map(condition: BooleanSupplier, vararg commands: Command)

Maps a condition to commands. If the condition returns true, the commands are scheduled. A command can be mapped to multiple conditions.

Link copied to clipboard
open override fun onOpModePostStop(opMode: OpMode)
Link copied to clipboard
open override fun onOpModePreInit(opMode: OpMode)
Link copied to clipboard
open override fun onOpModePreStart(opMode: OpMode)
Link copied to clipboard
fun register(vararg components: Component)

Registers the given components to this CommandScheduler so that their update functions are called and their default commands are scheduled.

Link copied to clipboard

Returns the command currently requiring a given component.

Link copied to clipboard

Resets this CommandScheduler. The telemetry is reset, all commands are cancelled, and all commands, components, and conditions are cleared.

Link copied to clipboard
Link copied to clipboard
fun schedule(vararg commands: Command): Boolean
fun schedule(repeat: Boolean, runnable: Runnable): Boolean

Schedules commands for execution.

Link copied to clipboard

Stops the currently active OpMode.

Link copied to clipboard

Removes a condition from the list of mappings.

fun unmap(vararg commands: Command)

Removes commands from the list of mappings.

Link copied to clipboard
fun unregister(vararg components: Component)

Unregisters the given components from this CommandScheduler so that their update functions are no longer called and their default commands are no longer scheduled.

Link copied to clipboard