15 #ifndef NAV2_ROTATION_SHIM_CONTROLLER__NAV2_ROTATION_SHIM_CONTROLLER_HPP_
16 #define NAV2_ROTATION_SHIM_CONTROLLER__NAV2_ROTATION_SHIM_CONTROLLER_HPP_
25 #include "rclcpp/rclcpp.hpp"
26 #include "pluginlib/class_loader.hpp"
27 #include "pluginlib/class_list_macros.hpp"
28 #include "nav2_core/controller.hpp"
29 #include "nav2_core/controller_exceptions.hpp"
30 #include "nav2_costmap_2d/footprint_collision_checker.hpp"
31 #include "nav2_rotation_shim_controller/parameter_handler.hpp"
32 #include "nav2_ros_common/tf2_factories.hpp"
34 namespace nav2_rotation_shim_controller
62 const nav2::LifecycleNode::WeakPtr & parent,
63 std::string name, nav2::TransformBuffer::SharedPtr tf,
64 std::shared_ptr<nav2_costmap_2d::Costmap2DROS> costmap_ros)
override;
91 const geometry_msgs::msg::PoseStamped & pose,
92 const geometry_msgs::msg::Twist & velocity,
94 const nav_msgs::msg::Path & transformed_global_plan,
95 const geometry_msgs::msg::PoseStamped & global_goal)
override;
101 void newPathReceived(
const nav_msgs::msg::Path & raw_global_path)
override;
110 void setSpeedLimit(
const double & speed_limit,
const bool & percentage)
override;
115 void reset()
override;
125 const geometry_msgs::msg::PoseStamped & global_goal);
142 const double & angular_distance,
143 const geometry_msgs::msg::PoseStamped & pose,
144 const geometry_msgs::msg::Twist & velocity);
153 const geometry_msgs::msg::TwistStamped & cmd_vel,
154 const double & angular_distance_to_heading,
155 const geometry_msgs::msg::PoseStamped & pose);
162 bool isGoalChanged(
const geometry_msgs::msg::PoseStamped & goal);
164 nav2::LifecycleNode::WeakPtr node_;
165 nav2::TransformBuffer::SharedPtr tf_;
166 std::string plugin_name_;
167 rclcpp::Logger logger_ {rclcpp::get_logger(
"RotationShimController")};
168 rclcpp::Clock::SharedPtr clock_;
169 std::shared_ptr<nav2_costmap_2d::Costmap2DROS> costmap_ros_;
170 std::unique_ptr<nav2_costmap_2d::FootprintCollisionChecker<nav2_costmap_2d::Costmap2D *>>
173 pluginlib::ClassLoader<nav2_core::Controller> lp_loader_;
174 nav2_core::Controller::Ptr primary_controller_;
176 nav_msgs::msg::Path current_path_;
177 geometry_msgs::msg::PoseStamped current_goal_;
180 double last_angular_vel_ = std::numeric_limits<double>::max();
181 std::unique_ptr<nav2_rotation_shim_controller::ParameterHandler> param_handler_;
controller interface that acts as a virtual base class for all controller plugins
Function-object for checking whether a goal has been reached.
Rotate to rough path heading controller shim plugin.
void deactivate() override
Deactivate controller state machine.
geometry_msgs::msg::Pose transformPoseToBaseFrame(const geometry_msgs::msg::PoseStamped &pt)
Uses TF to find the location of the sampled path point in base frame.
geometry_msgs::msg::PoseStamped getSampledPathPt(const geometry_msgs::msg::PoseStamped &global_goal)
Finds the point on the path that is roughly the sampling point distance away from the robot for use....
void cleanup() override
Cleanup controller state machine.
geometry_msgs::msg::TwistStamped computeRotateToHeadingCommand(const double &angular_distance, const geometry_msgs::msg::PoseStamped &pose, const geometry_msgs::msg::Twist &velocity)
Rotates the robot to the rough heading.
void activate() override
Activate controller state machine.
void setSpeedLimit(const double &speed_limit, const bool &percentage) override
Limits the maximum linear speed of the robot.
~RotationShimController() override=default
Destrructor for nav2_rotation_shim_controller::RotationShimController.
RotationShimController()
Constructor for nav2_rotation_shim_controller::RotationShimController.
bool isGoalChanged(const geometry_msgs::msg::PoseStamped &goal)
Checks if the goal has changed based on the given path.
void configure(const nav2::LifecycleNode::WeakPtr &parent, std::string name, nav2::TransformBuffer::SharedPtr tf, std::shared_ptr< nav2_costmap_2d::Costmap2DROS > costmap_ros) override
Configure controller state machine.
void isCollisionFree(const geometry_msgs::msg::TwistStamped &cmd_vel, const double &angular_distance_to_heading, const geometry_msgs::msg::PoseStamped &pose)
Checks if rotation is safe.
geometry_msgs::msg::TwistStamped computeVelocityCommands(const geometry_msgs::msg::PoseStamped &pose, const geometry_msgs::msg::Twist &velocity, nav2_core::GoalChecker *, const nav_msgs::msg::Path &transformed_global_plan, const geometry_msgs::msg::PoseStamped &global_goal) override
Compute the best command given the current pose and velocity.
void newPathReceived(const nav_msgs::msg::Path &raw_global_path) override
nav2_core newPathReceived - Receives a new plan from the Planner Server
void reset() override
Reset the state of the controller.