Bonsai ç›†æ ½
Rust implementation of Behavior Trees
Contents
Using Bonsai
Bonsai is available on crates.io. The recommended way to use it is to add a line into your Cargo.toml such as:
[dependencies]
bonsai-bt = "*"
What is a Behavior Tree?
A Behavior Tree (BT) is a data structure in which we can set the rules of how certain behavior's can occur, and the order in which they would execute. BTs are a very efficient way of creating complex systems that are both modular and reactive. These properties are crucial in many applications, which has led to the spread of BT from computer game programming to many branches of AI and Robotics.
How to use a Behavior tree?
A Behavior Tree forms a tree structure where each node represents a process. When the process terminates, it signals Success
or Failure
. This can then be used by the parent node to select the next process. A signal Running
is used to tell the process is not done yet.
For example, if you have a state A
and a state B
:
- Move from state
A
to stateB
ifA
succeeds:Sequence([A, B])
- Try
A
first and then tryB
ifA
fails:Select([A, B])
- If
condition
succeedes doA
, else doB
:If(condition, A, B)
- If
A
succeeds, return failure (and vice-versa):Invert(A)
- Do
B
repeatedly whileA
runs:While(A, [B])
- Do
A
,B
forever:While(WaitForever, [A, B])
- Run
A
andB
in parallell and wait for both to succeed:WhenAll([A, B])
- Run
A
andB
in parallell and wait for any to succeed:WhenAny([A, B])
- Run
A
andB
in parallell, butA
has to succeed beforeB
:After([A, B])
See the Behavior
enum for more information.
Calling long-running tasks in behavior tree
To make sure that the behavior tree is always responsive, it is important that the actions that are created executes instantly so that they do not block the tree traversal. If you have long-running tasks/functions that can take seconds or minutes to execute - either async
or sync
- then we can dispatch those jobs into background threads, and get status of the task through a channel.
see async drone example in the /examples
folder for more details.
Example of use
This is a enemy NPC (non-player-character) behavior mock-up which decides if the AI should shoot while running for nearby cover, rush in to attack the player up close or stand its ground while firing at the player.
Tree vizualization
Implementation
use std::{collections::HashMap, thread::sleep, time::Duration};
use bonsai_bt::{
Behavior::{Action, Select, Sequence},
Event, Status, Running, Timer, UpdateArgs, BT,
};
type Damage = u32;
type Distance = f64;
#[derive(serde::Deserialize, serde::Serialize, Clone, Debug, PartialEq)]
enum EnemyNPC {
/// Run
Run,
/// Cover
GetInCover,
/// Blind fire
BlindFire(Damage),
/// When player is close -> melee attack
///
/// distance [m], damage
MeleeAttack(Distance, Damage),
/// When player is far away -> fire weapon
FireWeapon(Damage),
}
use game::{Enemy, Player}; // fictive game imports
fn game_tick(timer: &mut Timer, bt: &mut BT<EnemyNPC, String, serde_json::Value>) {
// how much time should the bt advance into the future
let dt = timer.get_dt();
// proceed to next iteration in event loop
let e: Event = UpdateArgs { dt }.into();
#[rustfmt::skip]
bt.state.tick(&e,&mut |args: bonsai_bt::ActionArgs<Event, EnemyNPC>| {
match *args.action {
EnemyNPC::Run => {
Enemy::run_away_from_player(); // you must implement these methods
(bonsai_bt::Running, 0.0)
},
EnemyNPC::GetInCover => {
let in_cover: Bool = Enemy::get_in_cover();
if in_cover {
(bonsai_bt::Success, dt)
} else {
(bonsai_bt::Running, 0.0)
}
},
EnemyNPC::BlindFire(damage) => {
let has_ammo: Bool = Enemy::has_ammo();
if has_ammo {
Enemy::shoot_in_direction();
(bonsai_bt::Success, dt)
} else {
(bonsai_bt::Failure, dt)
}
},
EnemyNPC::MeleeAttack(dist, damage) => {
let player = Player::get_player();
let pos = Enemy::get_pos();
let diff = sub(*pos, player.pos);
if len(diff) < dist {
let &mut player_health = Player::get_health();
*player_health = Player::decrease_health(damage);
(bonsai_bt::Success, dt)
} else {
(bonsai_bt::Failure, dt)
}
},
EnemyNPC::FireWeapon(damage) => {
let has_ammo: Bool = Enemy::has_ammo();
if has_ammo {
Enemy::shoot_at_player();
(bonsai_bt::Success, dt)
} else {
(bonsai_bt::Failure, dt)
}
},
}
});
}
fn main() {
use crate::EnemyNPC::{BlindFire, FireWeapon, GetInCover, MeleeAttack, Run};
// define blackboard (even though we're not using it)
let blackboard: HashMap<String, serde_json::Value> = HashMap::new();
// create ai behavior
let run = Action(Run);
let cover = Action(GetInCover);
let run_for_five_secs = While(Box::new(Wait(5.0)), vec![run]);
let run_and_shoot = While(Box::new(run_for_five_secs), vec![Action(BlindFire(50))]);
let run_cover = Sequence(vec![run_and_shoot, cover]);
let player_close = Select(vec![Action(MeleeAttack(1.0, 100)), Action(FireWeapon(50))]);
let under_attack_behavior = Select(vec![run_cover, player_close]);
let bt_serialized = serde_json::to_string_pretty(&under_attack_behavior).unwrap();
println!("creating bt: \n {} \n", bt_serialized);
let mut bt = BT::new(under_attack_behavior, blackboard);
// create a monotonic timer
let mut timer = Timer::init_time();
loop {
// decide bt frequency by sleeping the loop
sleep(Duration::new(0, 0.1e+9 as u32));
// tick the bt
game_tick(&mut timer, &mut bt);
}
}
Compile the behavior tree into a graphviz compatible DiGraph.
let mut bt = BT::new(under_attack_behavior, blackboard);
// produce a string DiGraph compatible with graphviz
// paste the contents in graphviz, e.g: https://dreampuf.github.io/GraphvizOnline/#
let g = bt.get_graphviz();
println!("{}", g);
Similar Crates
Bonsai is inspired by many other crates out there, here's a few worth mentioning:
- ai_behavior (bonsai is a continuation of this crate)
- aspen
- behavior-tree
- stackbt