behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange

behaviortree_cpp package from behaviortree_cpp repo

behaviortree_cpp

Package Summary

Tags No category tags.
Version 4.5.2
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/BehaviorTree/BehaviorTree.CPP.git
VCS Type git
VCS Version master
Last Updated 2024-04-05
Dev Status DEVELOPED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package provides the Behavior Trees core library.

Additional Links

No additional links.

Maintainers

  • Davide Faconti

Authors

  • Davide Faconti

License MIT Version conan Ubuntu conan Windows ros1 ros2 pixi (Conda)

BehaviorTree.CPP 4.5

This C++ 17 library provides a framework to create BehaviorTrees. It was designed to be flexible, easy to use, reactive and fast.

Even if our main use-case is robotics, you can use this library to build AI for games, or to replace Finite State Machines.

There are few features which make BehaviorTree.CPP unique, when compared to other implementations:

  • It makes asynchronous Actions, i.e. non-blocking, a first-class citizen.

  • You can build reactive behaviors that execute multiple Actions concurrently (orthogonality).

  • Trees are defined using a Domain Specific scripting language (based on XML), and can be loaded at run-time; in other words, even if written in C++, the morphology of the Trees is not hard-coded.

  • You can statically link your custom TreeNodes or convert them into plugins and load them at run-time.

  • It provides a type-safe and flexible mechanism to do Dataflow between Nodes of the Tree.

  • It includes a logging/profiling infrastructure that allows the user to visualize, record, replay and analyze state transitions.

Documentation and Community

You can learn about the main concepts, the API and the tutorials here: https://www.behaviortree.dev/

If the documentation doesn't answer your questions and/or you want to connect with the other BT.CPP users, visit our forum

Previous version

Version 3.8 of the software can be found in the branch v3.8.

That branch might receive bug fixes, but the new features will be implemented only in the master branch.

GUI Editor

Editing a BehaviorTree is as simple as editing an XML file in your favorite text editor.

If you are looking for a more fancy graphical user interface (and I know you do) check Groot2 out.

Groot screenshot

How to compile

BT.CPP requires a compile that supports c++17.

Three build systems are supported:

  • catkin, if you use ROS
  • colcon (ament), if you use ROS2
  • conan otherwise (Linux/Windows).
  • straight cmake if you want to be personally responsible for dependencies :)

Compiling with conan:

Assuming that you are in the parent directory of BehaviorTree.CPP:

mkdir build; cd build
conan install ../BehaviorTree.CPP --output-folder=. --build=missing
cmake ../BehaviorTree.CPP -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
cmake --build . --parallel

If you have dependencies such as ZeroMQ and SQlite already installed and you don't want to use conan, simply type:

mkdir build; cd build
cmake ../BehaviorTree.CPP
cmake --build . --parallel

If you want to build in a pixi project (conda virtual environment).

pixi run build

If you want to use BT.CPP in your application, please refer to the example here: https://github.com/BehaviorTree/btcpp_sample .

Commercial support

Are you using BT.CPP in your commercial product and do you need technical support / consulting? You can contact the primary author, dfaconti@aurynrobotics.com, to discuss your use case and needs.

Star History

Star History Chart

License

The MIT License (MIT)

Copyright (c) 2019-2023 Davide Faconti

Copyright (c) 2018-2019 Davide Faconti, Eurecat

Copyright (c) 2014-2018 Michele Colledanchise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

CHANGELOG

Changelog for package behaviortree_cpp

4.5.2 (2024-03-07)

  • bugfix: string to enum/integer/boolean in scripts
  • bug fix in scripting comparison
  • added more pretty-prints to demangler
  • fixes and checks in default values, based on PR #773
  • Initialize std::atomic_bool (#772)
  • Fix issue #767 and #768
  • updated default port syntax: \"{=}\"
  • new default port capability: blackbard entries
  • fix issue #757 : skipped nodes should not call post-condition ALWAYS
  • Merge pull request #756 from imere/imere-patch-1
  • fix(test): Typo in gtest_blackboard.cpp
  • Contributors: Davide Faconti, Lu Z, Marq Rasmussen

4.5.1 (2024-01-23)

  • Support enums and real numbers in Node Switch
  • improve Any::castPtr and add example
  • fix issue #748 : static error messages
  • Merge pull request #746 from galou/snprintf Use snprintf instead of sprintf
  • Use snprintf instead of sprintf
    • Augment the buffer size on doc error.
    • Let sprintf in switch_node.h since the max. string length is known.
  • Contributors: Davide Faconti, Ga

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged behaviortree_cpp at Robotics Stack Exchange