Source code for py_trees.demos.selector

#!/usr/bin/env python
#
# License: BSD
#   https://raw.githubusercontent.com/splintered-reality/py_trees/devel/LICENSE
#
##############################################################################
# Documentation
##############################################################################

"""
A py_trees demo.

.. argparse::
   :module: py_trees.demos.selector
   :func: command_line_argument_parser
   :prog: py-trees-demo-selector

.. graphviz:: dot/demo-selector.dot

.. image:: images/selector.gif

"""
##############################################################################
# Imports
##############################################################################

import argparse
import sys
import time
import typing

import py_trees
import py_trees.console as console

##############################################################################
# Classes
##############################################################################


[docs]def description() -> str: """ Print description and usage information about the program. Returns: the program description string """ content = ( "Higher priority switching and interruption in the children of a selector.\n" ) content += "\n" content += "In this example the higher priority child is setup to fail initially,\n" content += "falling back to the continually running second child. On the third\n" content += ( "tick, the first child succeeds and cancels the hitherto running child.\n" ) if py_trees.console.has_colours: banner_line = console.green + "*" * 79 + "\n" + console.reset s = banner_line s += console.bold_white + "Selectors".center(79) + "\n" + console.reset s += banner_line s += "\n" s += content s += "\n" s += banner_line else: s = content return s
[docs]def epilog() -> typing.Optional[str]: """ Print a noodly epilog for --help. Returns: the noodly message """ if py_trees.console.has_colours: return ( console.cyan + "And his noodly appendage reached forth to tickle the blessed...\n" + console.reset ) else: return None
[docs]def command_line_argument_parser() -> argparse.ArgumentParser: """ Process command line arguments. Returns: the argument parser """ parser = argparse.ArgumentParser( description=description(), epilog=epilog(), formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument( "-r", "--render", action="store_true", help="render dot tree to file" ) return parser
[docs]def create_root() -> py_trees.behaviour.Behaviour: """ Create the root behaviour and it's subtree. Returns: the root behaviour """ root = py_trees.composites.Selector(name="Selector", memory=False) ffs = py_trees.behaviours.StatusQueue( name="FFS", queue=[ py_trees.common.Status.FAILURE, py_trees.common.Status.FAILURE, py_trees.common.Status.SUCCESS, ], eventually=py_trees.common.Status.SUCCESS, ) always_running = py_trees.behaviours.Running(name="Running") root.add_children([ffs, always_running]) return root
############################################################################## # Main ##############################################################################
[docs]def main() -> None: """Entry point for the demo script.""" args = command_line_argument_parser().parse_args() print(description()) py_trees.logging.level = py_trees.logging.Level.DEBUG root = create_root() #################### # Rendering #################### if args.render: py_trees.display.render_dot_tree(root) sys.exit() #################### # Execute #################### root.setup_with_descendants() for i in range(1, 4): try: print("\n--------- Tick {0} ---------\n".format(i)) root.tick_once() print("\n") print(py_trees.display.unicode_tree(root=root, show_status=True)) time.sleep(1.0) except KeyboardInterrupt: break print("\n")