-
Notifications
You must be signed in to change notification settings - Fork 815
Expand file tree
/
Copy pathbehavior_tree.cpp
More file actions
130 lines (113 loc) · 4.01 KB
/
behavior_tree.cpp
File metadata and controls
130 lines (113 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* Copyright (C) 2018-2025 Davide Faconti, Eurecat - All Rights Reserved
*
* 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.
*/
#include "behaviortree_cpp/behavior_tree.h"
namespace BT
{
void applyRecursiveVisitor(const TreeNode* node,
const std::function<void(const TreeNode*)>& visitor)
{
if(node == nullptr)
{
throw LogicError("One of the children of a DecoratorNode or ControlNode is nullptr");
}
visitor(node);
if(auto control = dynamic_cast<const BT::ControlNode*>(node))
{
for(const auto& child : control->children())
{
applyRecursiveVisitor(static_cast<const TreeNode*>(child), visitor);
}
}
else if(auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
{
applyRecursiveVisitor(decorator->child(), visitor);
}
}
void applyRecursiveVisitor(TreeNode* node, const std::function<void(TreeNode*)>& visitor)
{
if(node == nullptr)
{
throw LogicError("One of the children of a DecoratorNode or ControlNode is nullptr");
}
visitor(node);
if(auto control = dynamic_cast<BT::ControlNode*>(node))
{
for(const auto& child : control->children())
{
applyRecursiveVisitor(child, visitor);
}
}
else if(auto decorator = dynamic_cast<BT::DecoratorNode*>(node))
{
if(decorator->child() != nullptr)
{
applyRecursiveVisitor(decorator->child(), visitor);
}
}
}
void printTreeRecursively(const TreeNode* root_node, std::ostream& stream)
{
std::function<void(unsigned, const BT::TreeNode*)> recursivePrint;
recursivePrint = [&recursivePrint, &stream](unsigned indent, const BT::TreeNode* node) {
for(unsigned i = 0; i < indent; i++)
{
stream << " ";
}
if(node == nullptr)
{
stream << "!nullptr!" << std::endl;
return;
}
stream << node->name() << std::endl;
indent++;
if(auto control = dynamic_cast<const BT::ControlNode*>(node))
{
for(const auto& child : control->children())
{
recursivePrint(indent, child);
}
}
else if(auto decorator = dynamic_cast<const BT::DecoratorNode*>(node))
{
recursivePrint(indent, decorator->child());
}
};
stream << "----------------" << std::endl;
recursivePrint(0, root_node);
stream << "----------------" << std::endl;
}
void buildSerializedStatusSnapshot(const TreeNode* root_node,
SerializedTreeStatus& serialized_buffer)
{
serialized_buffer.clear();
auto visitor = [&serialized_buffer](const TreeNode* node) {
serialized_buffer.push_back(
std::make_pair(node->UID(), static_cast<uint8_t>(node->status())));
};
applyRecursiveVisitor(root_node, visitor);
}
int LibraryVersionNumber()
{
static int number = -1;
if(number == -1)
{
auto const parts = splitString(BTCPP_LIBRARY_VERSION, '.');
number = std::stoi(std::string(parts[0])) * 10000 +
std::stoi(std::string(parts[1])) * 100 + std::stoi(std::string(parts[2]));
}
return number;
}
const char* LibraryVersionString()
{
return BTCPP_LIBRARY_VERSION;
}
} // namespace BT