Nav2 Navigation Stack - jazzy  jazzy
ROS 2 Navigation Stack
goal_reached_condition.hpp
1 // Copyright (c) 2019 Intel Corporation
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef NAV2_BEHAVIOR_TREE__PLUGINS__CONDITION__GOAL_REACHED_CONDITION_HPP_
16 #define NAV2_BEHAVIOR_TREE__PLUGINS__CONDITION__GOAL_REACHED_CONDITION_HPP_
17 
18 #include <string>
19 #include <memory>
20 
21 #include "rclcpp/rclcpp.hpp"
22 #include "behaviortree_cpp/condition_node.h"
23 #include "behaviortree_cpp/json_export.h"
24 #include "tf2_ros/buffer.h"
25 #include "nav2_behavior_tree/bt_utils.hpp"
26 #include "nav2_behavior_tree/json_utils.hpp"
27 
28 namespace nav2_behavior_tree
29 {
30 
40 class GoalReachedCondition : public BT::ConditionNode
41 {
42 public:
49  const std::string & condition_name,
50  const BT::NodeConfiguration & conf);
51 
52  GoalReachedCondition() = delete;
53 
57  ~GoalReachedCondition() override;
58 
63  BT::NodeStatus tick() override;
64 
68  void initialize();
69 
74  bool isGoalReached();
75 
80  static BT::PortsList providedPorts()
81  {
82  // Register JSON definitions for the types used in the ports
83  BT::RegisterJsonDefinition<geometry_msgs::msg::PoseStamped>();
84 
85  return {
86  BT::InputPort<geometry_msgs::msg::PoseStamped>("goal", "Destination"),
87  BT::InputPort<std::string>("global_frame", "Global frame"),
88  BT::InputPort<std::string>("robot_base_frame", "Robot base frame")
89  };
90  }
91 
92 protected:
96  void cleanup()
97  {}
98 
99 private:
100  rclcpp::Node::SharedPtr node_;
101  std::shared_ptr<tf2_ros::Buffer> tf_;
102 
103  double goal_reached_tol_;
104  double transform_tolerance_;
105  std::string robot_base_frame_;
106 };
107 
108 } // namespace nav2_behavior_tree
109 
110 #endif // NAV2_BEHAVIOR_TREE__PLUGINS__CONDITION__GOAL_REACHED_CONDITION_HPP_
A BT::ConditionNode that returns SUCCESS when a specified goal is reached and FAILURE otherwise.
static BT::PortsList providedPorts()
Creates list of BT ports.
void initialize()
Function to read parameters and initialize class variables.
BT::NodeStatus tick() override
The main override required by a BT action.
~GoalReachedCondition() override
A destructor for nav2_behavior_tree::GoalReachedCondition.
bool isGoalReached()
Checks if the current robot pose lies within a given distance from the goal.