1 #ifndef XML_PARSING_BT_H 2 #define XML_PARSING_BT_H 6 #include <unordered_map> 25 void loadFromFile(
const std::string& filename,
bool add_includes =
true)
override;
32 std::string main_tree_to_execute = {})
override;
42 const std::unordered_map<std::string, NodeType>& registered_nodes);
45 bool include_builtin =
false);
49 #endif // XML_PARSING_BT_H The BehaviorTreeParser is a class used to read the model of a BehaviorTree from file or text and inst...
void loadFromFile(const std::string &filename, bool add_includes=true) override
void VerifyXML(const std::string &xml_text, const std::unordered_map< std::string, NodeType > ®istered_nodes)
std::shared_ptr< Blackboard > Ptr
static const char * xml_text
void clearInternalState() override
Tree instantiateTree(const Blackboard::Ptr &root_blackboard, std::string main_tree_to_execute={}) override
The BehaviorTreeFactory is used to create instances of a TreeNode at run-time.
void loadFromText(const std::string &xml_text, bool add_includes=true) override
Struct used to store a tree. If this object goes out of scope, the tree is destroyed.
std::vector< std::string > registeredBehaviorTrees() const override
The XMLParser is a class used to read the model of a BehaviorTree from file or text and instantiate t...
XMLParser(const BehaviorTreeFactory &factory)
std::string writeTreeNodesModelXML(const BehaviorTreeFactory &factory, bool include_builtin=false)
XMLParser & operator=(const XMLParser &other)=delete