Nav2 Navigation Stack - lyrical  lyrical
ROS 2 Navigation Stack
theta_star_planner.hpp
1 // Copyright 2020 Anshumaan Singh
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_THETA_STAR_PLANNER__THETA_STAR_PLANNER_HPP_
16 #define NAV2_THETA_STAR_PLANNER__THETA_STAR_PLANNER_HPP_
17 
18 #include <iostream>
19 #include <cmath>
20 #include <string>
21 #include <chrono>
22 #include <queue>
23 #include <algorithm>
24 #include <memory>
25 #include <vector>
26 #include "rclcpp/rclcpp.hpp"
27 #include "nav2_core/global_planner.hpp"
28 #include "nav2_core/planner_exceptions.hpp"
29 #include "nav_msgs/msg/path.hpp"
30 #include "nav2_util/robot_utils.hpp"
31 #include "nav2_ros_common/lifecycle_node.hpp"
32 #include "nav2_costmap_2d/costmap_2d_ros.hpp"
33 #include "nav2_costmap_2d/cost_values.hpp"
34 #include "nav2_ros_common/node_utils.hpp"
35 #include "nav2_theta_star_planner/theta_star.hpp"
36 #include "nav2_theta_star_planner/parameter_handler.hpp"
37 #include "nav2_util/geometry_utils.hpp"
38 #include "nav2_ros_common/tf2_factories.hpp"
39 
40 using rcl_interfaces::msg::ParameterType;
41 
42 namespace nav2_theta_star_planner
43 {
44 
46 {
47 public:
48  void configure(
49  const nav2::LifecycleNode::WeakPtr & parent,
50  std::string name, nav2::TransformBuffer::SharedPtr tf,
51  std::shared_ptr<nav2_costmap_2d::Costmap2DROS> costmap_ros) override;
52 
53  void cleanup() override;
54 
55  void activate() override;
56 
57  void deactivate() override;
58 
66  nav_msgs::msg::Path createPlan(
67  const geometry_msgs::msg::PoseStamped & start,
68  const geometry_msgs::msg::PoseStamped & goal,
69  const std::vector<geometry_msgs::msg::PoseStamped> & viapoints,
70  std::function<bool()> cancel_checker) override;
71 
72 protected:
73  nav2::TransformBuffer::SharedPtr tf_;
74  rclcpp::Clock::SharedPtr clock_;
75  rclcpp::Logger logger_{rclcpp::get_logger("ThetaStarPlanner")};
76  std::string global_frame_, name_;
77 
78  // parent node weak ptr
79  nav2::LifecycleNode::WeakPtr parent_node_;
80 
81  std::unique_ptr<ThetaStar> planner_;
82 
83  Parameters * params_;
84  std::unique_ptr<nav2_theta_star_planner::ParameterHandler> param_handler_;
85 
91  void getPlan(nav_msgs::msg::Path & global_path, std::function<bool()> cancel_checker);
92 
99  static nav_msgs::msg::Path linearInterpolation(
100  const std::vector<coordsW> & raw_path,
101  const double & dist_bw_points);
102 };
103 } // namespace nav2_theta_star_planner
104 
105 #endif // NAV2_THETA_STAR_PLANNER__THETA_STAR_PLANNER_HPP_
Abstract interface for global planners to adhere to with pluginlib.
nav_msgs::msg::Path createPlan(const geometry_msgs::msg::PoseStamped &start, const geometry_msgs::msg::PoseStamped &goal, const std::vector< geometry_msgs::msg::PoseStamped > &viapoints, std::function< bool()> cancel_checker) override
Creating a plan from start and goal poses.
void getPlan(nav_msgs::msg::Path &global_path, std::function< bool()> cancel_checker)
the function responsible for calling the algorithm and retrieving a path from it
void cleanup() override
Method to cleanup resources used on shutdown.
static nav_msgs::msg::Path linearInterpolation(const std::vector< coordsW > &raw_path, const double &dist_bw_points)
interpolates points between the consecutive waypoints of the path
void deactivate() override
Method to deactivate planner and any threads involved in execution.
void configure(const nav2::LifecycleNode::WeakPtr &parent, std::string name, nav2::TransformBuffer::SharedPtr tf, std::shared_ptr< nav2_costmap_2d::Costmap2DROS > costmap_ros) override
void activate() override
Method to active planner and any threads involved in execution.