movebase_node.h
Go to the documentation of this file.
1 #ifndef MOVEBASE_BT_NODES_H
2 #define MOVEBASE_BT_NODES_H
3 
5 
6 // Custom type
7 struct Pose2D
8 {
9  double x, y, theta;
10 };
11 
12 namespace BT
13 {
14 // This template specialization is needed only if you want
15 // to AUTOMATICALLY convert a NodeParameter into a Pose2D
16 // In other words, implement it if you want to be able to do:
17 //
18 // TreeNode::getInput<Pose2D>(key, ...)
19 //
20 template <> inline
22 {
23  // three real numbers separated by semicolons
24  auto parts = BT::splitString(key, ';');
25  if (parts.size() != 3)
26  {
27  throw BT::RuntimeError("invalid input)");
28  }
29  else
30  {
31  Pose2D output;
32  output.x = convertFromString<double>(parts[0]);
33  output.y = convertFromString<double>(parts[1]);
34  output.theta = convertFromString<double>(parts[2]);
35  return output;
36  }
37 }
38 } // end namespace BT
39 
40 // This is an asynchronous operation that will run in a separate thread.
41 // It requires the input port "goal".
42 
44 {
45  public:
46  // Any TreeNode with ports must have a constructor with this signature
47  MoveBaseAction(const std::string& name, const BT::NodeConfiguration& config)
48  : AsyncActionNode(name, config)
49  {
50  }
51 
52  // It is mandatory to define this static method.
54  {
55  return{ BT::InputPort<Pose2D>("goal") };
56  }
57 
58  BT::NodeStatus tick() override;
59 
60  virtual void halt() override;
61 
62  private:
63  std::atomic_bool _halt_requested;
64 };
65 
66 #endif // MOVEBASE_BT_NODES_H
The AsyncActionNode uses a different thread, where the action will be executed.
Definition: action_node.h:114
double x
std::vector< StringView > splitString(const StringView &strToSplit, char delimeter)
nonstd::string_view StringView
Definition: basic_types.h:55
double theta
std::atomic_bool _halt_requested
Definition: movebase_node.h:63
MoveBaseAction(const std::string &name, const BT::NodeConfiguration &config)
Definition: movebase_node.h:47
std::unordered_map< std::string, PortInfo > PortsList
Definition: basic_types.h:333
NodeStatus
Definition: basic_types.h:35
double y
Pose2D convertFromString(StringView key)
Definition: movebase_node.h:21
static BT::PortsList providedPorts()
Definition: movebase_node.h:53
double convertFromString< double >(StringView str)


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