passchaos / behavior-tree

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

behavior-tree

This behavior tree is fully event-based, largely following the definitions of Unreal Engine. The events are implemented using the actor model crate.

Some unique decorators have been added. The BlockingAction prevents stopping the specific action, and allows it to finish. The BlockingCheck is a condition that does not fail when no value actor value is set, but instead awaits its first value. Thereafter, it always succeeds.

Conditions and Actions can be implemented using the Evaluator and Executor trait respectively.

Feature requests:

  • Loop until success / failure
  • General node type composing overlapping code
  • Remove Ok(msg) from select statement to guarantee that all messages are processed
  • Condition without handle

About


Languages

Language:Rust 99.9%Language:Dockerfile 0.1%