Skip to main content

Pythonic Behavior Trees

Project description

misbehave

Misbehave is a Python behavior tree implementation. A behavior tree is a design pattern that breaks complex state-based actions into their component parts to improve readability and re-usability for autonomous agents. A good starting place to understand them is here.

Misbehave focused on python language features not available in other languages, so some of the common features of AI design are missing by default. The rest of this document is lightly hedged in its language as behavior trees can be useful for video games or robots.

How to use Misbehave

A node in a Misbehave behavior tree is simply a callable. While the ones provided with this library are classes, you can use functions or closures to define them.

The signature of a node's function is simple:

def MyNode(actor: Any, context: Any) -> misbehave.State
    # Perform actions here.

An actor is an object representing the thing the behavior tree is controlling. In a video game, this would be the mob object.

The context is available for providing access to things like sensors, controls, other code objects representing things in space. If you don't need them, you can pass None here.

An example of a tree might look like this in your code:

class MyActor():
    tree = misbehave.selector.Sequence(
        misbehave.action.IncreaseValue("behavior_tree_runs"),
        my_actions.MoveForward(10),
        my_actions.Rotate(90)
    )
    behavior_tree_runs = 0

This simple tree keeps track of how many times the entire tree was run, and then moves the actor in a square. You must implement the specifics of the actions here.

Development

Misbehave requires Python 3.6 or later.

To work on misbehave, after forking and cloning locally, you'll want to setup a virtual environment. You'll notice we don't have any requirement files: all requirements are listed in setup.cfg either as setup_requires or as extras.

In your project directory, with your virtual environment active:

python -m pip install -e .[dev, tests]

If you do not do an editable install of misbehave, misbehave.version will be missing and the library will fail to work.

Other than that, we are ready for PEP 518 and 517, so if you're using a build tool that supports them, feel free!

It is strongly encouraged that you run black on the misbehave directory and then pytest before commiting to any working branch. Failure to lint will disqualify a PR.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

misbehave-0.1.2.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

misbehave-0.1.2-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file misbehave-0.1.2.tar.gz.

File metadata

  • Download URL: misbehave-0.1.2.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for misbehave-0.1.2.tar.gz
Algorithm Hash digest
SHA256 2fb452b3cd9196a772408e747b67802a83ad0e19fefe3c16e23076f35f9fca00
MD5 e29cbc4e908d03b6b5b4b9908de851f4
BLAKE2b-256 91bb081de7f8b3e4acab72348333e3ba004c3e81882f0b04ca3238795f44e5f9

See more details on using hashes here.

File details

Details for the file misbehave-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: misbehave-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 10.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2

File hashes

Hashes for misbehave-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1fa24e0e935b04ea2e1de484753fc5ea7a66fb28b8619bc79c50e3625f11ec6b
MD5 d2b2bbfd6f03ae43f3a45b236a53d1df
BLAKE2b-256 70fb5c1c8cf678c68cb2db32281ad29a1c4f5e224a08e03092e7a82423622273

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page