behavior_tree.cpp
Go to the documentation of this file.
1 /* Copyright (C) 2018-2020 Davide Faconti, Eurecat - All Rights Reserved
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
5 * 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:
6 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9 * 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,
10 * 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.
11 */
12 
14 #include <cstring>
15 
16 namespace BT
17 {
19  const std::function<void(const TreeNode*)>& visitor)
20 {
21  if (!node)
22  {
23  throw LogicError("One of the children of a DecoratorNode or ControlNode is "
24  "nullptr");
25  }
26 
27  visitor(node);
28 
29  if (auto control = dynamic_cast<const BT::ControlNode*>(node))
30  {
31  for (const auto& child : control->children())
32  {
33  applyRecursiveVisitor(static_cast<const TreeNode*>(child), visitor);
34  }
35  }
36  else if (auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
37  {
38  applyRecursiveVisitor(decorator->child(), visitor);
39  }
40 }
41 
42 void applyRecursiveVisitor(TreeNode* node, const std::function<void(TreeNode*)>& visitor)
43 {
44  if (!node)
45  {
46  throw LogicError("One of the children of a DecoratorNode or ControlNode is "
47  "nullptr");
48  }
49 
50  visitor(node);
51 
52  if (auto control = dynamic_cast<BT::ControlNode*>(node))
53  {
54  for (const auto& child : control->children())
55  {
56  applyRecursiveVisitor(child, visitor);
57  }
58  }
59  else if (auto decorator = dynamic_cast<BT::DecoratorNode*>(node))
60  {
61  if (decorator->child())
62  {
63  applyRecursiveVisitor(decorator->child(), visitor);
64  }
65  }
66 }
67 
68 void printTreeRecursively(const TreeNode* root_node, std::ostream& stream)
69 {
70  std::function<void(unsigned, const BT::TreeNode*)> recursivePrint;
71 
72  recursivePrint = [&recursivePrint, &stream](unsigned indent, const BT::TreeNode* node) {
73  for (unsigned i = 0; i < indent; i++)
74  {
75  stream << " ";
76  }
77  if (!node)
78  {
79  stream << "!nullptr!" << std::endl;
80  return;
81  }
82  stream << node->name() << std::endl;
83  indent++;
84 
85  if (auto control = dynamic_cast<const BT::ControlNode*>(node))
86  {
87  for (const auto& child : control->children())
88  {
89  recursivePrint(indent, child);
90  }
91  }
92  else if (auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
93  {
94  recursivePrint(indent, decorator->child());
95  }
96  };
97 
98  stream << "----------------" << std::endl;
99  recursivePrint(0, root_node);
100  stream << "----------------" << std::endl;
101 }
102 
104  SerializedTreeStatus& serialized_buffer)
105 {
106  serialized_buffer.clear();
107 
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())));
111  };
112 
113  applyRecursiveVisitor(root_node, visitor);
114 }
115 
116 } // namespace BT
uint16_t UID() const
Definition: tree_node.cpp:117
NodeStatus status() const
Definition: tree_node.cpp:84
std::vector< std::pair< uint16_t, uint8_t > > SerializedTreeStatus
Definition: behavior_tree.h:64
const std::string & name() const
Name of the instance, not the type.
Definition: tree_node.cpp:101
void printTreeRecursively(const TreeNode *root_node, std::ostream &stream=std::cout)
Abstract base class for Behavior Tree Nodes.
Definition: tree_node.h:55
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)


behaviortree_cpp_v3
Author(s): Michele Colledanchise, Davide Faconti
autogenerated on Mon Jul 3 2023 02:50:14