11 #include <Eigen/Geometry>
42 std::future_status
status = f.wait_for(std::chrono::seconds(0));
43 if (
status == std::future_status::ready)
47 else if (
status == std::future_status::deferred)
63 defaultParameters.location =
"";
64 defaultParameters.enableSafetyGuard =
false;
65 defaultParameters.velocityLimitAngular = std::nullopt;
66 defaultParameters.velocityLimitLinear = std::nullopt;
70 <<
"Retrieve the location `location` from the memory and navigate to it."
71 <<
"\n\nThe `location` is specified by its provider segment name and entity name"
72 " in the format `providerSegmentName/entityName` .";
79 .parametersType = Params::ToAronType(),
84 Base(DefaultSkillDescription()), properties_(properties)
93 trajControllerParams{};
96 client::GeneralConfig generalParams{};
98 if (in.parameters.velocityLimitLinear.has_value())
100 trajControllerParams.limits.linear = in.parameters.velocityLimitLinear.value();
101 globalPlannerParams.
linearVelocity = in.parameters.velocityLimitLinear.value();
102 generalParams.maxVel.linear = in.parameters.velocityLimitLinear.value();
105 if (in.parameters.velocityLimitAngular.has_value())
107 trajControllerParams.limits.angular = in.parameters.velocityLimitAngular.value();
108 globalPlannerParams.angularVelocity = in.parameters.velocityLimitAngular.value();
109 generalParams.maxVel.angular = in.parameters.velocityLimitAngular.value();
112 ARMARX_INFO <<
"Configuring navigator to respect the velocity limits:";
113 ARMARX_INFO <<
"linear: " << trajControllerParams.limits.linear;
114 ARMARX_INFO <<
"angular: " << trajControllerParams.limits.angular;
128 client::NavigationStackConfig cfg;
129 cfg.general(generalParams);
130 cfg.globalPlanner(globalPlannerParams);
131 cfg.trajectoryController(trajControllerParams);
132 if (in.parameters.enableSafetyGuard)
134 cfg.safetyGuard(safetyGuardParams);
141 memorySubscriber.reset();
144 memorySubscriber.emplace(configId, srv_->memoryNameSystem);
148 srv_->iceNavigator.createConfig(cfg, configId);
150 navigator.emplace(client::Navigator::InjectedServices{
151 .navigator = &srv_->iceNavigator, .subscriber = &memorySubscriber.value()});
153 return ::armarx::skills::Skill::InitResult{
154 .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
160 const std::string& location = in.parameters.location;
170 navigator->moveToLocation(location);
174 auto future = std::async(std::launch::async, [
this]() {
return navigator->waitForStop(); });
185 auto se = future.get();
188 ARMARX_INFO <<
"Goal `" << location <<
"`reached.";
189 return ::armarx::skills::Skill::MainResult{
190 .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
194 if (se.isSafetyStopTriggeredEvent())
198 return ::armarx::skills::Skill::MainResult{
199 .status = ::armarx::skills::TerminatedSkillStatus::Failed};
201 if (se.isUserAbortTriggeredEvent())
205 return ::armarx::skills::Skill::MainResult{
206 .status = ::armarx::skills::TerminatedSkillStatus::Aborted};
208 if (se.isInternalErrorEvent())
211 << se.toInternalErrorEvent().message;
213 return ::armarx::skills::Skill::MainResult{
214 .status = ::armarx::skills::TerminatedSkillStatus::Failed};
218 return ::armarx::skills::Skill::MainResult{
219 .status = ::armarx::skills::TerminatedSkillStatus::Failed};
223 NavigateToLocation::onStopRequested()
225 if (navigator.has_value())