19 const std::function<
void(
const TreeNode*)>& visitor)
23 throw LogicError(
"One of the children of a DecoratorNode or ControlNode is " 29 if (
auto control = dynamic_cast<const BT::ControlNode*>(node))
31 for (
const auto& child : control->children())
36 else if (
auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
46 throw LogicError(
"One of the children of a DecoratorNode or ControlNode is " 52 if (
auto control = dynamic_cast<BT::ControlNode*>(node))
54 for (
const auto& child : control->children())
59 else if (
auto decorator = dynamic_cast<BT::DecoratorNode*>(node))
61 if (decorator->child())
70 std::function<void(unsigned, const BT::TreeNode*)> recursivePrint;
72 recursivePrint = [&recursivePrint, &stream](
unsigned indent,
const BT::TreeNode* node) {
73 for (
unsigned i = 0; i < indent; i++)
79 stream <<
"!nullptr!" << std::endl;
82 stream << node->
name() << std::endl;
85 if (
auto control = dynamic_cast<const BT::ControlNode*>(node))
87 for (
const auto& child : control->children())
89 recursivePrint(indent, child);
92 else if (
auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
94 recursivePrint(indent, decorator->child());
98 stream <<
"----------------" << std::endl;
99 recursivePrint(0, root_node);
100 stream <<
"----------------" << std::endl;
106 serialized_buffer.clear();
108 auto visitor = [&serialized_buffer](
const TreeNode* node) {
109 serialized_buffer.push_back(
110 std::make_pair(node->
UID(),
static_cast<uint8_t
>(node->
status())));
NodeStatus status() const
std::vector< std::pair< uint16_t, uint8_t > > SerializedTreeStatus
const std::string & name() const
Name of the instance, not the type.
void printTreeRecursively(const TreeNode *root_node, std::ostream &stream=std::cout)
Abstract base class for Behavior Tree Nodes.
void buildSerializedStatusSnapshot(const TreeNode *root_node, SerializedTreeStatus &serialized_buffer)
buildSerializedStatusSnapshot can be used to create a buffer that can be stored (or sent to a client ...
void applyRecursiveVisitor(const TreeNode *root_node, const std::function< void(const TreeNode *)> &visitor)