xml_parsing.h
Go to the documentation of this file.
1 #ifndef XML_PARSING_BT_H
2 #define XML_PARSING_BT_H
3 
5 
6 #include <unordered_map>
7 
8 namespace BT
9 {
15 class XMLParser : public Parser
16 {
17 public:
18  XMLParser(const BehaviorTreeFactory& factory);
19 
20  ~XMLParser() override;
21 
22  XMLParser(const XMLParser& other) = delete;
23  XMLParser& operator=(const XMLParser& other) = delete;
24 
25  void loadFromFile(const std::string& filename, bool add_includes = true) override;
26 
27  void loadFromText(const std::string& xml_text, bool add_includes = true) override;
28 
29  std::vector<std::string> registeredBehaviorTrees() const override;
30 
31  Tree instantiateTree(const Blackboard::Ptr& root_blackboard,
32  std::string main_tree_to_execute = {}) override;
33 
34  void clearInternalState() override;
35 
36 private:
37  struct Pimpl;
38  Pimpl* _p;
39 };
40 
41 void VerifyXML(const std::string& xml_text,
42  const std::unordered_map<std::string, NodeType>& registered_nodes);
43 
44 std::string writeTreeNodesModelXML(const BehaviorTreeFactory& factory,
45  bool include_builtin = false);
46 
47 } // namespace BT
48 
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...
Definition: bt_parser.h:25
~XMLParser() override
Definition: xml_parsing.cpp:93
Pimpl * _p
Definition: xml_parsing.h:37
void loadFromFile(const std::string &filename, bool add_includes=true) override
Definition: xml_parsing.cpp:98
void VerifyXML(const std::string &xml_text, const std::unordered_map< std::string, NodeType > &registered_nodes)
std::shared_ptr< Blackboard > Ptr
Definition: blackboard.h:25
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.
Definition: bt_factory.h:251
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.
Definition: bt_factory.h:125
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...
Definition: xml_parsing.h:15
XMLParser(const BehaviorTreeFactory &factory)
Definition: xml_parsing.cpp:90
std::string writeTreeNodesModelXML(const BehaviorTreeFactory &factory, bool include_builtin=false)
XMLParser & operator=(const XMLParser &other)=delete


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