16 #include <condition_variable> 28 #pragma warning(disable : 4127) 58 typedef std::shared_ptr<TreeNode>
Ptr;
79 virtual void halt() = 0;
81 bool isHalted()
const;
86 const std::string& name()
const;
133 void setPostTickOverrideFunction(PostTickOverrideCallback callback);
136 uint16_t UID()
const;
139 const std::string& registrationName()
const;
152 template <
typename T>
153 Result getInput(
const std::string& key, T& destination)
const;
158 template <
typename T>
162 auto res = getInput(key, out);
163 return (res) ?
Optional<T>(out) : nonstd::make_unexpected(res.error());
166 template <
typename T>
167 Result setOutput(
const std::string& key,
const T& value);
171 StringView getRawPortValue(
const std::string& key)
const;
175 static bool isBlackboardPointer(
StringView str);
183 void emitStateChanged();
197 void setWakeUpInstance(std::shared_ptr<WakeUpSignal> instance);
199 void modifyPortsRemapping(
const PortsRemapping& new_remapping);
201 void setStatus(NodeStatus new_status);
231 template <
typename T>
234 auto remap_it = config_.input_ports.find(key);
235 if (remap_it == config_.input_ports.end())
237 return nonstd::make_unexpected(
StrCat(
"getInput() failed because " 238 "NodeConfiguration::input_ports " 239 "does not contain the key: [",
242 auto remapped_res = getRemappedKey(key, remap_it->second);
247 destination = convertFromString<T>(remap_it->second);
250 const auto& remapped_key = remapped_res.value();
252 if (!config_.blackboard)
254 return nonstd::make_unexpected(
"getInput() trying to access a Blackboard(BB) " 256 "but BB is invalid");
259 std::unique_lock<std::mutex> entry_lock(config_.blackboard->entryMutex());
260 const Any* val = config_.blackboard->getAny(static_cast<std::string>(remapped_key));
264 return nonstd::make_unexpected(
StrCat(
"getInput() failed because it was unable to " 265 "find the port [", key,
266 "] remapped to BB [", remapped_key,
"]"));
271 return nonstd::make_unexpected(
StrCat(
"getInput() failed because the port [", key,
272 "] remapped to BB [", remapped_key,
"] was found," 273 "but its content was not initialized correctly"));
276 if (!std::is_same<T, std::string>::value && val->type() ==
typeid(std::string))
278 destination = convertFromString<T>(val->cast<std::string>());
282 destination = val->cast<T>();
286 catch (std::exception& err)
288 return nonstd::make_unexpected(err.what());
292 template <
typename T>
295 if (!config_.blackboard)
297 return nonstd::make_unexpected(
"setOutput() failed: trying to access a " 298 "Blackboard(BB) entry, but BB is invalid");
301 auto remap_it = config_.output_ports.find(key);
302 if (remap_it == config_.output_ports.end())
304 return nonstd::make_unexpected(
StrCat(
"setOutput() failed: " 305 "NodeConfiguration::output_ports " 307 "contain the key: [",
311 if (remapped_key ==
"=")
315 if (isBlackboardPointer(remapped_key))
317 remapped_key = stripBlackboardPointer(remapped_key);
319 config_.blackboard->set(static_cast<std::string>(remapped_key), value);
325 template <
typename T>
328 for (
const auto& it : getProvidedPorts<T>())
330 const auto& port_name = it.first;
331 const auto direction = it.second.direction();
std::string registration_ID_
std::condition_variable state_condition_variable_
NodeConfiguration config_
StatusChangeSignal::Subscriber StatusChangeSubscriber
PostTickOverrideCallback post_condition_callback_
Optional< T > getInput(const std::string &key) const
StatusChangeSignal::CallableFunction StatusChangeCallback
std::shared_ptr< WakeUpSignal > wake_up_
static pthread_mutex_t mutex
std::shared_ptr< Blackboard > Ptr
This information is used mostly by the XMLParser.
Result setOutput(const std::string &key, const T &value)
Blackboard::Ptr blackboard
std::shared_ptr< CallableFunction > Subscriber
The BehaviorTreeFactory is used to create instances of a TreeNode at run-time.
PreTickOverrideCallback pre_condition_callback_
nonstd::string_view StringView
std::string registration_ID
std::function< Optional< NodeStatus >(TreeNode &, NodeStatus, NodeStatus)> PostTickOverrideCallback
Result getInput(const std::string &key, T &destination) const
PortsRemapping output_ports
Struct used to store a tree. If this object goes out of scope, the tree is destroyed.
Abstract base class for Behavior Tree Nodes.
std::unordered_map< std::string, PortInfo > PortsList
StatusChangeSignal state_change_signal_
std::function< Optional< NodeStatus >(TreeNode &, NodeStatus)> PreTickOverrideCallback
nonstd::expected< T, std::string > Optional
std::shared_ptr< TreeNode > Ptr
NodeType
Enumerates the possible types of nodes.
PortsRemapping input_ports
void assignDefaultRemapping(NodeConfiguration &config)
std::unordered_map< std::string, std::string > PortsRemapping