Skip to content

Commit

Permalink
Merge pull request #64 from ArchdukeTim/startRun
Browse files Browse the repository at this point in the history
Add startRun command factory
  • Loading branch information
virtuald authored May 6, 2024
2 parents e2a83dd + 3a4f77b commit 4a953ab
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
16 changes: 16 additions & 0 deletions commands2/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,22 @@ def runEnd(
)


def startRun(
start: Callable[[], Any], run: Callable[[], Any], *requirements: Subsystem
) -> Command:
"""
Constructs a command that runs an action once and another action every iteration until interrupted.
:param start: the action to run on start
:param run: the action to run every iteration
:param requirements: subsystems the action requires
:returns: the command
"""
return FunctionalCommand(
start, run, lambda interrupt: None, lambda: False, *requirements
)


def print_(message: str) -> Command:
"""
Constructs a command that prints a message and finishes.
Expand Down
12 changes: 12 additions & 0 deletions commands2/subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,18 @@ def runEnd(self, run: Callable[[], None], end: Callable[[], None]) -> Command:

return runEnd(run, end, self)

def startRun(self, start: Callable[[], None], run: Callable[[], None]) -> Command:
"""
Constructs a command that runs an action once and another action every iteration until interrupted. Requires this subsystem.
:param start: the action to run on start
:param run: the action to run every iteration
:returns: the command
"""
from .cmd import startRun

return startRun(start, run, self)

#
# From SubsystemBase
#
Expand Down

0 comments on commit 4a953ab

Please sign in to comment.