21 static uint16_t uid = 1;
26 name_(
std::move(name)),
29 config_(
std::move(config))
41 new_status = res.value();
55 new_status = res.value();
71 if (prev_status != new_status)
75 prev_status, new_status);
137 throw std::logic_error(
StrCat(
"getInput() failed because " 138 "NodeConfiguration::input_ports " 139 "does not contain the key: [",
142 return remap_it->second;
147 const auto size = str.size();
148 if (size >= 3 && str.back() ==
'}')
154 if (size >= 4 && str[0] ==
'$' && str[1] ==
'{')
164 const auto size = str.size();
165 if (size >= 3 && str.back() ==
'}')
169 return str.substr(1, size - 2);
171 if (str[0] ==
'$' && str[1] ==
'{')
173 return str.substr(2, size - 3);
182 if (remapping_value ==
"=")
190 return nonstd::make_unexpected(
"Not a blackboard pointer");
213 for (
const auto& new_it : new_remapping)
218 it->second = new_it.second;
223 it->second = new_it.second;
void resetStatus()
Equivalent to setStatus(NodeStatus::IDLE)
std::string registration_ID_
std::condition_variable state_condition_variable_
NodeConfiguration config_
StatusChangeSignal::Subscriber StatusChangeSubscriber
PostTickOverrideCallback post_condition_callback_
const NodeConfiguration & config() const
void notify(CallableArgs... args)
StatusChangeSignal::CallableFunction StatusChangeCallback
NodeStatus status() const
std::shared_ptr< WakeUpSignal > wake_up_
void setWakeUpInstance(std::shared_ptr< WakeUpSignal > instance)
StatusChangeSubscriber subscribeToStatusChange(StatusChangeCallback callback)
subscribeToStatusChange is used to attach a callback to a status change. When StatusChangeSubscriber ...
const std::string & name() const
Name of the instance, not the type.
TreeNode(std::string name, NodeConfiguration config)
TreeNode main constructor.
PreTickOverrideCallback pre_condition_callback_
nonstd::string_view StringView
const std::string & registrationName() const
registrationName is the ID used by BehaviorTreeFactory to create an instance.
void modifyPortsRemapping(const PortsRemapping &new_remapping)
PortsRemapping output_ports
StatusChangeSignal state_change_signal_
static StringView stripBlackboardPointer(StringView str)
nonstd::expected< T, std::string > Optional
void setRegistrationID(StringView ID)
static bool isBlackboardPointer(StringView str)
StringView getRawPortValue(const std::string &key) const
virtual BT::NodeStatus executeTick()
The method that should be used to invoke tick() and setStatus();.
Subscriber subscribe(CallableFunction func)
BT::NodeStatus waitValidStatus()
virtual BT::NodeStatus tick()=0
Method to be implemented by the user.
void setStatus(NodeStatus new_status)
PortsRemapping input_ports
static Optional< StringView > getRemappedKey(StringView port_name, StringView remapping_value)
std::unordered_map< std::string, std::string > PortsRemapping