SMACC2
Loading...
Searching...
No Matches
cb_navigate_global_position.hpp
Go to the documentation of this file.
1// Copyright 2021 RobosoftAI Inc.
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/*****************************************************************************************************************
16 *
17 * Authors: Pablo Inigo Blasco, Brett Aldrich
18 *
19 ******************************************************************************************************************/
20#pragma once
21
22#include <geometry_msgs/msg/point.hpp>
23#include <geometry_msgs/msg/pose.hpp>
24#include <nav2_msgs/action/navigate_to_pose.hpp>
25
27
28namespace cl_nav2z
29{
31{
32 // std::optional<float> yawTolerance;
33 // std::optional<float> yawToleranceX;
34 // std::optional<float> yawToleranceY;
35
36 std::optional<std::string> goalChecker_;
37
38 std::optional<std::string> controllerName_;
39};
40
42{
43public:
44 float goalYaw;
45
47 geometry_msgs::msg::Point goalPosition;
48
50
52 float x, float y, float yaw /*radians*/,
53 std::optional<CbNavigateGlobalPositionOptions> options = std::nullopt);
54
55 void setGoal(const geometry_msgs::msg::Pose & pose);
56
57 virtual void onEntry() override;
58
59 // This is the substate destructor. This code will be executed when the
60 // workflow exits from this substate (that is according to statechart the moment when this object is destroyed)
61 void onExit() override;
62
63 // auxiliary function that defines the motion that is requested to the navigation2 action server
64 void execute();
65
66private:
67 void readStartPoseFromParameterServer(nav2_msgs::action::NavigateToPose::Goal & goal);
68};
69} // namespace cl_nav2z
void setGoal(const geometry_msgs::msg::Pose &pose)
void readStartPoseFromParameterServer(nav2_msgs::action::NavigateToPose::Goal &goal)