SMACC2
Loading...
Searching...
No Matches
cb_navigate_global_position.hpp
Go to the documentation of this file.
1// Copyright 2025 Robosoft 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<std::string> goalChecker_;
33
34 std::optional<std::string> controllerName_;
35};
36
38{
39public:
40 float goalYaw;
41
43 geometry_msgs::msg::Point goalPosition;
44
46
48 float x, float y, float yaw /*radians*/,
49 std::optional<CbNavigateGlobalPositionOptions> options = std::nullopt);
50
51 void setGoal(const geometry_msgs::msg::Pose & pose);
52
53 virtual void onEntry() override;
54
55 // This is the substate destructor. This code will be executed when the
56 // workflow exits from this substate (that is according to statechart the moment when this object is destroyed)
57 void onExit() override;
58
59 // auxiliary function that defines the motion that is requested to the navigation2 action server
60 void execute();
61
62private:
63 void readStartPoseFromParameterServer(nav2_msgs::action::NavigateToPose::Goal & goal);
64};
65} // namespace cl_nav2z
void setGoal(const geometry_msgs::msg::Pose &pose)
void readStartPoseFromParameterServer(nav2_msgs::action::NavigateToPose::Goal &goal)