GuideHumanToRoom.cpp
Go to the documentation of this file.
1 #include "GuideHumanToRoom.h"
2 
3 #include <math.h>
4 
5 #include <cmath>
6 #include <string>
7 
8 #include <Eigen/Core>
9 #include <Eigen/Geometry>
10 
11 #include <VirtualRobot/VirtualRobot.h>
12 
17 
20 
33 
35 {
36  GuideHumanToRoom::GuideHumanToRoom(const Services& srv) : Base(DefaultSkillDescription())
37  {
38  srv_.emplace(srv);
39  }
40 
42  GuideHumanToRoom::init(const Base::SpecializedInitInput& in)
43  {
44  ARMARX_CHECK(srv_.has_value());
45 
46  // parameterize the navigation stack
52 
53  const std::string configId = DefaultSkillDescription().skillId.skillName;
54 
55  // configure the `navigator` which provides a simplified and typed interface to the navigation server
56  memorySubscriber.emplace(configId, srv_->memoryNameSystem);
57 
58  // register our config
59  ARMARX_INFO << "Registering config";
60  srv_->iceNavigator.createConfig(cfg, configId);
61 
62  navigator.emplace(client::Navigator::InjectedServices{
63  .navigator = &srv_->iceNavigator, .subscriber = &memorySubscriber.value()});
64 
65  return ::armarx::skills::Skill::InitResult{
66  .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
67  }
68 
70  GuideHumanToRoom::main(const Base::SpecializedMainInput& in)
71  {
72  const core::Pose globalTarget = getTargetInFrontOfRoom(in.parameters.room);
73 
74  ARMARX_INFO << "moving to target " << VAROUT(globalTarget.matrix());
75 
76  // execute
77  ARMARX_INFO << "Sending navigation request";
78  navigator->moveTo(globalTarget, core::NavigationFrame::Absolute);
79 
80  // Wait until goal is reached
81  ARMARX_INFO << "Waiting until goal is reached.";
82  client::StopEvent se = navigator->waitForStop();
83  if (se)
84  {
85  ARMARX_INFO << "Goal `" << globalTarget.translation() << "`reached.";
86  }
87  else
88  {
89  if (se.isSafetyStopTriggeredEvent())
90  {
91  ARMARX_ERROR << "Safety stop was triggered!";
92 
93  return ::armarx::skills::Skill::MainResult{
94  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
95  }
96  if (se.isUserAbortTriggeredEvent())
97  {
98  ARMARX_ERROR << "Aborted by user!";
99 
100  return ::armarx::skills::Skill::MainResult{
101  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
102  }
103  if (se.isInternalErrorEvent())
104  {
105  ARMARX_ERROR << "Unknown internal error occured! "
106  << se.toInternalErrorEvent().message;
107 
108  return ::armarx::skills::Skill::MainResult{
109  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
110  }
111  }
112 
113 
114  return ::armarx::skills::Skill::MainResult{
115  .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
116  }
117 
118  void
119  GuideHumanToRoom::onStopRequested()
120  {
121  if (navigator.has_value())
122  {
123  ARMARX_CHECK(navigator.has_value());
124  navigator->stop();
125  }
126  }
127 
128  core::Pose
129  GuideHumanToRoom::getTargetInFrontOfRoom(const std::string& roomName) const
130  {
131  const algorithms::Costmap costmap = [&]
132  {
133  const memory::client::costmap::Reader::Query costmapQuery{
134  .providerName = properties.distanceToObstacleCostmapProvider,
135  .name = "distance_to_obstacles",
136  .timestamp = Clock::Now()};
137 
138  const auto result = srv_->costmapReader.query(costmapQuery);
139  ARMARX_CHECK(result) << result.errorMessage;
140  ARMARX_CHECK(result.costmap.has_value());
141  return result.costmap.value();
142  }();
143 
144  const armarx::navigation::algorithms::Room room = [&]
145  {
146  const memory::client::rooms::Reader::Query roomQuery{.providerName =
147  properties.roomsProvider,
148  .name = roomName,
149  .timestamp = Clock::Now()};
150 
151  const auto result = srv_->roomsReader.query(roomQuery);
152  ARMARX_CHECK(result) << "Failed to query room `" << roomName << "` from provider `"
153  << properties.roomsProvider
154  << "`. Reason: " << result.errorMessage;
155  ARMARX_CHECK_NOT_EMPTY(result.rooms);
156  ARMARX_CHECK_EQUAL(result.rooms.size(), 1);
157 
158  return result.rooms.front();
159  }();
160 
161  const VirtualRobot::RobotPtr robot =
162  srv_->virtualRobotReader.getRobotWaiting(properties.robotName);
163  ARMARX_CHECK_NOT_NULL(robot);
164  ARMARX_CHECK(srv_->virtualRobotReader.synchronizeRobot(*robot, Clock::Now()));
165 
166  const core::Pose global_T_robot(robot->getGlobalPose());
167 
168  rooms::RoomNavigationTargetCreator::Params algoParams;
169  rooms::RoomNavigationTargetCreator algo(algoParams);
170  auto result = algo.getClosestPositionOutsideOfRoom(
171  costmap, room, global_T_robot.translation(), &srv_->arviz);
172 
173  const core::Direction dirToRoom = result.global_P_roomEntry - result.global_P_robot;
174 
175  // the robot should point to the room entry
176  const float yaw = std::atan2(dirToRoom.y(), dirToRoom.x()) - M_PI_2f32;
177 
178  // TODO maybe rotate robot a bit towards the human?
179 
180  core::Pose global_T_robot_target = core::Pose::Identity();
181  global_T_robot_target.translation() = result.global_P_robot;
182  global_T_robot_target.linear() =
183  Eigen::AngleAxisf(yaw, Eigen::Vector3f::UnitZ()).toRotationMatrix();
184 
185  return global_T_robot_target;
186  }
187 
188 
189 } // namespace armarx::navigation::skills
armarx::skills::SimpleSpecializedSkill< arondto::GuideHumanToRoomParams >::init
Skill::InitResult init() final
Definition: SimpleSpecializedSkill.h:62
SPFA.h
Navigator.h
SkillStatusUpdate.h
armarx::navigation::traj_ctrl::local::TrajectoryFollowingControllerParams
Definition: TrajectoryFollowingController.h:40
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
basic_types.h
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
armarx::navigation::skills::GuideHumanToRoom::GuideHumanToRoom
GuideHumanToRoom(const Services &srv)
Definition: GuideHumanToRoom.cpp:36
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
RoomNavigationTargetCreator.h
Reader.h
ARMARX_CHECK_NOT_EMPTY
#define ARMARX_CHECK_NOT_EMPTY(c)
Definition: ExpressionException.h:224
armarx::navigation::client::NavigationStackConfig
Definition: NavigationStackConfig.h:49
armarx::navigation::client::NavigationStackConfig::globalPlanner
NavigationStackConfig & globalPlanner(const global_planning::GlobalPlannerParams &params)
Definition: NavigationStackConfig.cpp:68
StringHelpers.h
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
Clock.h
Costmap.h
GuideHumanToRoom.h
armarx::navigation::core::NavigationFrame::Absolute
@ Absolute
armarx::navigation::skills::GuideHumanToRoom::DefaultSkillDescription
static armarx::skills::SkillDescription DefaultSkillDescription()
Definition: GuideHumanToRoom.h:90
GfxTL::Identity
void Identity(MatrixXX< N, N, T > *a)
Definition: MatrixXX.h:570
NavigationStackConfig.h
Skill.h
armarx::navigation::algorithms::Room
Definition: Room.h:33
IceNavigator.h
TrajectoryFollowingController.h
Reader.h
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
armarx::skills::SimpleSpecializedSkill
Definition: SimpleSpecializedSkill.h:10
armarx::navigation::skills::GuideHumanToRoom::Properties::roomsProvider
std::string roomsProvider
Definition: GuideHumanToRoom.h:72
armarx::navigation::skills::GuideHumanToRoom::Properties::distanceToObstacleCostmapProvider
std::string distanceToObstacleCostmapProvider
Definition: GuideHumanToRoom.h:70
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
ExpressionException.h
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::skills::SimpleSpecializedSkill< arondto::GuideHumanToRoomParams >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::navigation::core::Direction
Eigen::Vector3f Direction
Definition: basic_types.h:39
armarx::skills::Skill::InitResult
A result struct for skill initialization.
Definition: Skill.h:27
armarx::core::time::Clock::Now
static DateTime Now()
Current time on the virtual clock.
Definition: Clock.cpp:93
Logging.h
ARMARX_CHECK_EQUAL
#define ARMARX_CHECK_EQUAL(lhs, rhs)
This macro evaluates whether lhs is equal (==) rhs and if it turns out to be false it will throw an E...
Definition: ExpressionException.h:130
Room.h
armarx::navigation::skills::GuideHumanToRoom::Properties::robotName
std::string robotName
Definition: GuideHumanToRoom.h:73
armarx::navigation::client::GeneralConfig
Definition: NavigationStackConfig.h:36
types.h
armarx::navigation::skills::GuideHumanToRoom::Services
Definition: GuideHumanToRoom.h:53
armarx::navigation::skills
Definition: constants.cpp:25
armarx::navigation::global_planning::SPFAParams
Parameters for AStar.
Definition: SPFA.h:41
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
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