SMACC2
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
26
27namespace cl_nav2z
28{
30{
31public:
32 geometry_msgs::msg::Point goalPosition;
33 float goalYaw;
34
35 std::optional<float> yawTolerance;
36 std::optional<float> yawToleranceX;
37 std::optional<float> yawToleranceY;
38
39 std::optional<std::string> goalChecker_;
40
42
43 CbNavigateGlobalPosition(float x, float y, float yaw /*radians*/);
44
45 void setGoal(const geometry_msgs::msg::Pose & pose);
46
47 virtual void onEntry() override;
48
49 // This is the substate destructor. This code will be executed when the
50 // workflow exits from this substate (that is according to statechart the moment when this object is destroyed)
51 void onExit() override;
52
53 // auxiliary function that defines the motion that is requested to the navigation2 action server
54 void execute();
55
56private:
58};
59} // namespace cl_nav2z
void setGoal(const geometry_msgs::msg::Pose &pose)
void readStartPoseFromParameterServer(ClNav2Z::Goal &goal)