NavigateTo.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package navigation::NavigationGroup
17  * @author Markus Grotz ( Markus Grotz <markus dot grotz at kit dot edu> )
18  * @date 2022
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "NavigateTo.h"
24 
25 #include <Eigen/Geometry>
26 
28 
32 
42 
43 //#include <ArmarXCore/core/time/TimeUtil.h>
44 //#include <ArmarXCore/observers/variant/DatafieldRef.h>
45 
47 {
48  // DO NOT EDIT NEXT LINE
49  NavigateTo::SubClassRegistry NavigateTo::Registry(NavigateTo::GetName(),
51 
52  void
54  {
55  // put your user code for the enter-point here
56  // execution time should be short (<100ms)
57  }
58 
59  void
61  {
62  const auto v = in.getTargetPosition();
63 
64 
65  ARMARX_INFO << VAROUT(v);
66 
68  target.linear() = Eigen::AngleAxisf(v->z, Eigen::Vector3f::UnitZ()).toRotationMatrix();
69  target.translation().head<2>() = Eigen::Vector2f(v->x, v->y);
70 
71  ARMARX_INFO << "moving to target " << VAROUT(target.matrix());
72 
73  // parameterize the navigation stack
78 
79  // configure the `navigator` which provides a simplified and typed interface to the navigation server
80  client::IceNavigator iceNavigator(getNavigator());
81 
82  armem::client::MemoryNameSystem mns(getMemoryNameSystem());
83 
84  client::MemoryPolling memoryEventPolling(GetName(), mns);
85 
86  // register our config
87  ARMARX_INFO << "Registering config";
88  iceNavigator.createConfig(cfg, GetName());
89 
91  .navigator = &iceNavigator, .subscriber = &memoryEventPolling}};
92 
93  // assemble the path, which might consist of waypoints and a goal (the goal is just the last `waypoint`)
94 
95  // execute
96  ARMARX_INFO << "Sending navigation request";
97  navigator.moveTo(target, core::NavigationFrame::Absolute);
98 
99  // Wait until goal is reached
100  ARMARX_INFO << "Waiting until goal is reached.";
101  client::StopEvent se = navigator.waitForStop();
102  if (se)
103  {
104  ARMARX_INFO << "Goal `" << in.getTargetPosition() << "`reached.";
105  }
106  else
107  {
109  {
110  ARMARX_ERROR << "Safety stop was triggered!";
111  emitFailure();
112  }
113  else if (se.isUserAbortTriggeredEvent())
114  {
115  ARMARX_ERROR << "Aborted by user!";
116  emitFailure();
117  }
118  else if (se.isInternalErrorEvent())
119  {
120  ARMARX_ERROR << "Unknown internal error occured! "
122  emitFailure();
123  }
124  }
125 
126  emitSuccess();
127  }
128 
129  //void NavigateTo::onBreak()
130  //{
131  // // put your user code for the breaking point here
132  // // execution time should be short (<100ms)
133  //}
134 
135  void
137  {
138  // put your user code for the exit point here
139  // execution time should be short (<100ms)
140  }
141 
142  // DO NOT EDIT NEXT FUNCTION
145  {
146  return XMLStateFactoryBasePtr(new NavigateTo(stateData));
147  }
148 } // namespace armarx::navigation::statecharts::navigation_group
SPFA.h
Navigator.h
armarx::navigation::client::Navigator
Definition: Navigator.h:116
armarx::navigation::client::Navigator::InjectedServices
Definition: Navigator.h:120
armarx::navigation::traj_ctrl::local::TrajectoryFollowingControllerParams
Definition: TrajectoryFollowingController.h:40
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
types.h
armarx::navigation::statecharts::navigation_group
This file is part of ArmarX.
Definition: NavigateRelative.cpp:39
armarx::navigation::client::StopEvent::isInternalErrorEvent
bool isInternalErrorEvent() const
Definition: Navigator.h:89
armarx::navigation::client::StopEvent::toInternalErrorEvent
core::InternalErrorEvent & toInternalErrorEvent()
Definition: Navigator.h:95
armarx::XMLStateConstructorParams
Definition: XMLState.h:49
boost::target
Vertex target(const detail::edge_base< Directed, Vertex > &e, const PCG &)
Definition: point_cloud_graph.h:668
MemoryPolling.h
MemoryNameSystem.h
armarx::navigation::client::NavigationStackConfig
Definition: NavigationStackConfig.h:49
armarx::navigation::client::IceNavigator
Definition: IceNavigator.h:17
armarx::navigation::client::Navigator::InjectedServices::navigator
core::NavigatorInterface * navigator
Definition: Navigator.h:122
armarx::navigation::client::NavigationStackConfig::globalPlanner
NavigationStackConfig & globalPlanner(const global_planning::GlobalPlannerParams &params)
Definition: NavigationStackConfig.cpp:68
armarx::navigation::statecharts::navigation_group::NavigateTo::run
void run() override
Definition: NavigateTo.cpp:60
armarx::XMLStateFactoryBasePtr
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition: XMLState.h:64
IceInternal::Handle
Definition: forward_declarations.h:8
armarx::navigation::statecharts::navigation_group::NavigateTo::onEnter
void onEnter() override
Definition: NavigateTo.cpp:53
armarx::navigation::core::NavigationFrame::Absolute
@ Absolute
armarx::navigation::client::StopEvent
Definition: Navigator.h:43
armarx::navigation::client::StopEvent::isUserAbortTriggeredEvent
bool isUserAbortTriggeredEvent() const
Definition: Navigator.h:77
GfxTL::Identity
void Identity(MatrixXX< N, N, T > *a)
Definition: MatrixXX.h:570
armarx::navigation::client::StopEvent::isSafetyStopTriggeredEvent
bool isSafetyStopTriggeredEvent() const
Definition: Navigator.h:65
NavigationStackConfig.h
ManagedIceObject.h
PathBuilder.h
armarx::navigation::statecharts::navigation_group::NavigateTo::NavigateTo
NavigateTo(const XMLStateConstructorParams &stateData)
Definition: NavigateTo.h:31
FramedPose.h
IceNavigator.h
TrajectoryFollowingController.h
SimpleEventHandler.h
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::ctrlutil::v
double v(double t, double v0, double a0, double j)
Definition: CtrlUtil.h:39
NavigateTo.h
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::navigation::client::MemoryPolling
Definition: MemoryPolling.h:25
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::navigation::client::IceNavigator::createConfig
void createConfig(const client::NavigationStackConfig &config, const std::string &configId)
Definition: IceNavigator.cpp:52
armarx::armem::client::MemoryNameSystem
The memory name system (MNS) client.
Definition: MemoryNameSystem.h:68
armarx::navigation::core::InternalErrorEvent::message
std::string message
Definition: events.h:107
armarx::navigation::statecharts::navigation_group::NavigateTo::CreateInstance
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
Definition: NavigateTo.cpp:144
MemoryNameSystem.h
armarx::navigation::client::GeneralConfig
Definition: NavigationStackConfig.h:36
armarx::navigation::global_planning::SPFAParams
Parameters for AStar.
Definition: SPFA.h:41
armarx::navigation::statecharts::navigation_group::NavigateTo::onExit
void onExit() override
Definition: NavigateTo.cpp:136
armarx::navigation::client::NavigationStackConfig::trajectoryController
NavigationStackConfig & trajectoryController(const traj_ctrl::local::TrajectoryControllerParams &params)
Definition: NavigationStackConfig.cpp:97
armarx::navigation::client::NavigationStackConfig::general
NavigationStackConfig & general(const GeneralConfig &cfg)
Definition: NavigationStackConfig.cpp:61
armarx::navigation::statecharts::navigation_group::NavigateTo::Registry
static SubClassRegistry Registry
Definition: NavigateTo.h:44