MoveRelativePlanar.cpp
Go to the documentation of this file.
1 #include "MoveRelativePlanar.h"
2 
3 #include <optional>
4 #include <sstream>
5 #include <string>
6 
7 #include <SimoxUtility/math/convert/deg_to_rad.h>
8 #include <VirtualRobot/VirtualRobot.h>
9 
11 
13 #include <RobotAPI/libraries/aron/common/aron/framed.aron.generated.h>
16 
17 #include <armarx/navigation/skills/aron/MoveRelativePlanar.aron.generated.h>
19 
21 {
22 
25  {
26  ParamType defaultParams;
27  defaultParams.translationCartesian = std::nullopt;
28  defaultParams.translationPolar = std::nullopt;
29  defaultParams.rotationRadians = std::nullopt;
30  defaultParams.rotationDegrees = std::nullopt;
31 
32  static const std::string nl = "\n\n";
33 
34  std::stringstream desc;
35  desc << "**Move the robot relatively to its current pose in the horizontal plane.**";
36 
37  desc << nl
38  << "The parameters `translationCartesian` and `translationPolar` specify the "
39  "translation of the robot. (If both are given, `translationCartesian` takes "
40  "precedence over `translationPolar`.)";
41 
42  desc << nl
43  << "`translationCartesian` specifies the relative translation in Cartesian"
44  " coordinates (x, y). The corresponding coordinate system is specified by its "
45  "`frameID`. If `frameID` is not given, the robot's root coordinate system is used."
46  "To define a translation in the global frame, set `frame` to `Global` (and leave "
47  "`agent` empty).";
48 
49  desc << nl
50  << "`translationPolar` specifies the relative translation in polar coordinates"
51  " (direction, distance), where"
52  << nl << "- `direction = 0` moves the robot forward," << nl
53  << "- `direction > 0` moves the robot to the left," << nl
54  << "- `direction < 0` moves the robot to the right." << nl
55  << " (Generally, `forward` is defined as the +y axis of the robot root frame.)";
56 
57  desc << nl
58  << "`rotationRadians` and `rotationDegrees` specify the rotation around the +z axis"
59  " (up). "
60  << nl
61  << "(If both are given, `rotationRadians` takes precedence over `rotationDegrees`.)"
62  << nl << "- `directionDegrees = 0` does not turn the robot," << nl
63  << "- `directionDegrees > 0` turns the robot to the left," << nl
64  << "- `directionDegrees < 0` turns the robot to the right.";
65 
68  .description = desc.str(),
69  .rootProfileDefaults = defaultParams.toAron(),
71  .parametersType = ParamType::ToAronType(),
72  };
73  }
74 
76  Base(
77  Base::Services{
79  .memoryNameSystem = srv.memoryNameSystem,
80  },
81  DefaultSkillDescription()),
82  properties{properties},
83  services{.robotReader = srv.robotReader}
84  {
85  }
86 
87  Eigen::Vector3f
88  makeTranslation(const arondto::FramedCartesian2D& cartesian,
90  const std::string& defaultRobotName)
91  {
92  Eigen::Vector3f translation;
93  translation << cartesian.translationCartesian.cast<float>(), 0;
94 
95  // Target translation must be given in root frame of robot.
96  if (cartesian.frameID.has_value())
97  {
98  armarx::arondto::FrameID frameID = cartesian.frameID.value();
99 
100  if (frameID.agent.empty())
101  {
102  // If frame == armarx::GlobalFrame, the agent is ignored, so we can set it anyway.
103  frameID.agent = defaultRobotName;
104  }
105 
106  VirtualRobot::RobotPtr robot = robotReader.getSynchronizedRobot(frameID.agent);
107 
108  if (frameID.frame.empty())
109  {
110  frameID.frame = robot->getRootNode()->getName();
111  }
112 
113  armarx::FramedDirection dir(translation, frameID.frame, frameID.agent);
114 
115  return dir.toRootFrame(robot)->toEigen();
116  }
117  else
118  {
119  // If not given, we fall back to the robot root frame => no transformation necessary.
120  return translation;
121  }
122  }
123 
124  Eigen::Vector3f
125  makeTranslation(const arondto::Polar& polar,
126  const Eigen::Vector3f forward,
127  const Eigen::Vector3f up)
128  {
129  const Eigen::AngleAxisf rotation(simox::math::deg_to_rad(polar.directionDegrees), up);
130  const Eigen::Vector3f translation = polar.distanceMillimeters * (rotation * forward);
131 
132  return translation;
133  }
134 
135  Eigen::AngleAxisf
136  makeRotation(float rotationRadians, const Eigen::Vector3f up)
137  {
138  return Eigen::AngleAxisf(rotationRadians, up);
139  }
140 
141  Eigen::Isometry3f
142  MoveRelativePlanar::relativeTarget(const Base::SpecializedMainInput& in)
143  {
144  // Note: In theory, it depends on the robot.
145  static const Eigen::Vector3f forward = Eigen::Vector3f::UnitY();
146  static const Eigen::Vector3f up = Eigen::Vector3f::UnitZ();
147 
148  const ParamType& parameters = in.parameters;
149 
150  Eigen::Isometry3f relativeTarget = Eigen::Isometry3f::Identity();
151 
152  // Translation.
153  if (parameters.translationCartesian.has_value())
154  {
155  relativeTarget.translation() = makeTranslation(parameters.translationCartesian.value(),
156  services.robotReader,
157  properties.robotName);
158  }
159  else if (parameters.translationPolar.has_value())
160  {
161  relativeTarget.translation() =
162  makeTranslation(parameters.translationPolar.value(), forward, up);
163  }
164 
165  // Rotation.
166  std::optional<float> rotationRadians = parameters.rotationRadians;
167  if (not rotationRadians.has_value() and parameters.rotationDegrees.has_value())
168  {
169  rotationRadians = simox::math::deg_to_rad(parameters.rotationDegrees.value());
170  }
171  if (rotationRadians.has_value())
172  {
173  relativeTarget.linear() =
174  relativeTarget.linear() * makeRotation(rotationRadians.value(), up);
175  }
176 
177  return relativeTarget;
178  }
179 
180 } // namespace armarx::navigation::skills
constants.h
armarx::armem::robot_state::VirtualRobotReader
The VirtualRobotReader class.
Definition: VirtualRobotReader.h:39
armarx::navigation::skills::MoveRelativePlanar::DefaultSkillDescription
static armarx::skills::SkillDescription DefaultSkillDescription()
Definition: MoveRelativePlanar.cpp:24
armarx::navigation::skills::MoveRelativePlanar::Properties::robotName
std::string robotName
Definition: MoveRelativePlanar.h:31
armarx::navigation::skills::constants::skill_names::MoveRelativePlanar
const std::string MoveRelativePlanar
Definition: constants.h:36
armarx::navigation::skills::MoveRelativePlanar::Services::iceNavigator
client::IceNavigator & iceNavigator
Definition: MoveRelativePlanar.h:24
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
armarx::skills::SkillDescription
Definition: SkillDescription.h:17
armarx::navigation::skills::NavigateRelativeSkill< arondto::MoveRelativePlanarParams >
Duration.h
armarx::FramedDirection::toRootFrame
FramedDirectionPtr toRootFrame(const SharedRobotInterfacePrx &referenceRobot) const
Definition: FramedPose.cpp:262
GfxTL::Identity
void Identity(MatrixXX< N, N, T > *a)
Definition: MatrixXX.h:570
armarx::navigation::skills::MoveRelativePlanar::Properties
Definition: MoveRelativePlanar.h:29
armarx::navigation::skills::makeRotation
Eigen::AngleAxisf makeRotation(float rotationRadians, const Eigen::Vector3f up)
Definition: MoveRelativePlanar.cpp:136
FramedPose.h
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
VirtualRobotReader.h
armarx::core::time::Duration::Minutes
static Duration Minutes(std::int64_t minutes)
Constructs a duration in minutes.
Definition: Duration.cpp:96
armarx::armem::robot_state::VirtualRobotReader::getSynchronizedRobot
VirtualRobot::RobotPtr getSynchronizedRobot(const std::string &name, const VirtualRobot::RobotIO::RobotDescription &loadMode=VirtualRobot::RobotIO::RobotDescription::eStructure, bool blocking=true)
armarx::FramedDirection
FramedDirection is a 3 dimensional direction vector with a reference frame. The reference frame can b...
Definition: FramedPose.h:86
MoveRelativePlanar.h
armarx::navigation::skills::MoveRelativePlanar::Services
Definition: MoveRelativePlanar.h:22
armarx::navigation::skills::MoveRelativePlanar::Services::memoryNameSystem
armem::client::MemoryNameSystem & memoryNameSystem
Definition: MoveRelativePlanar.h:25
armarx::navigation::skills::makeTranslation
Eigen::Vector3f makeTranslation(const arondto::FramedCartesian2D &cartesian, armem::robot_state::VirtualRobotReader &robotReader, const std::string &defaultRobotName)
Definition: MoveRelativePlanar.cpp:88
armarx::navigation::skills
Definition: constants.cpp:25
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
SkillDescription.h
armarx::navigation::skills::MoveRelativePlanar::MoveRelativePlanar
MoveRelativePlanar(const Properties &properties, const Services &srv)
Definition: MoveRelativePlanar.cpp:75