CommandScheduler

public class CommandScheduler implements OpModeManagerNotifier.Notifications

The main orchestrator for Commands and Components.

Properties

Link copied to clipboard
private final static MultipleGamepad gamepad

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

Link copied to clipboard
private final static HardwareMap hMap

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

Link copied to clipboard
public final static CommandScheduler INSTANCE
Link copied to clipboard
private final static Boolean isInAutonomous

Whether the current OpMode is an autonomous OpMode.

Link copied to clipboard
private final static Boolean isInTeleOp

Whether the current OpMode is a teleop OpMode.

Link copied to clipboard
private final static OpMode opMode

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

Link copied to clipboard
private static Boolean schedulePolicy

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
public final static SuperTelemetry telem

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

Link copied to clipboard
public final static SuperTelemetry telemetry

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

Functions

Link copied to clipboard
@OnCreateEventLoop()
public final static Unit attachEventLoop(Context context, FtcEventLoop eventLoop)

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
public final static Unit cancel(Command commands)

Cancels commands. Ignores whether a command is interruptable.

Link copied to clipboard
public final static Unit cancelAll()

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

Link copied to clipboard
public final static MultipleGamepad gamepad()
Link copied to clipboard
public final static HardwareMap getHMap()
Link copied to clipboard
public final static OpMode getOpMode()

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

Link copied to clipboard
public final static Boolean getSchedulePolicy()

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
public final static Boolean isAvailable(Command command)

Returns whether a command can currently be scheduled.

Link copied to clipboard
public final static Boolean isInAutonomous()
Link copied to clipboard
public final static Boolean isInTeleOp()
Link copied to clipboard
public final static Boolean isRegistered(Component components)

Returns whether the given components are registered with this CommandScheduler.

Link copied to clipboard
public final static Boolean isScheduled(Command commands)

Returns whether all the given commands are scheduled.

Link copied to clipboard
public final static Unit map(BooleanSupplier condition, 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.

public final static Unit map(BooleanSupplier condition, Command commands)

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
public Unit onOpModePostStop(OpMode opMode)
Link copied to clipboard
public Unit onOpModePreInit(OpMode opMode)
Link copied to clipboard
public Unit onOpModePreStart(OpMode opMode)
Link copied to clipboard
public final static Unit register(Component components)

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

Link copied to clipboard
public final static Command requiring(Component component)

Returns the command currently requiring a given component.

Link copied to clipboard
public final static Unit reset()

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

Link copied to clipboard
public final static Unit resetTelemetry()

Resets telem.

Link copied to clipboard
public final static Boolean schedule(Runnable runnable)
public final static Boolean schedule(Command commands)
public final static Boolean schedule(Boolean repeat, Runnable runnable)

Schedules commands for execution.

Link copied to clipboard
public final static Unit setSchedulePolicy(static Boolean schedulePolicy)

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
public final static Unit stopOpMode()

Stops the currently active OpMode.

Link copied to clipboard
public final static Unit unmap(BooleanSupplier condition)

Removes a condition from the list of mappings.

public final static Unit unmap(Command commands)

Removes commands from the list of mappings.

Link copied to clipboard
public final static Unit unregister(Component components)

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
public final static Unit update()