7 #include <SimoxUtility/math/convert/deg_to_rad.h>
8 #include <VirtualRobot/VirtualRobot.h>
13 #include <RobotAPI/libraries/aron/common/aron/framed.aron.generated.h>
17 #include <armarx/navigation/skills/aron/MoveRelativePlanar.aron.generated.h>
26 ParamType defaultParams;
27 defaultParams.translationCartesian = std::nullopt;
28 defaultParams.translationPolar = std::nullopt;
29 defaultParams.rotationRadians = std::nullopt;
30 defaultParams.rotationDegrees = std::nullopt;
32 static const std::string nl =
"\n\n";
34 std::stringstream desc;
35 desc <<
"**Move the robot relatively to its current pose in the horizontal plane.**";
38 <<
"The parameters `translationCartesian` and `translationPolar` specify the "
39 "translation of the robot. (If both are given, `translationCartesian` takes "
40 "precedence over `translationPolar`.)";
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 "
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.)";
58 <<
"`rotationRadians` and `rotationDegrees` specify the rotation around the +z axis"
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.";
68 .description = desc.str(),
69 .rootProfileDefaults = defaultParams.toAron(),
71 .parametersType = ParamType::ToAronType(),
81 DefaultSkillDescription()),
82 properties{properties},
83 services{.robotReader = srv.robotReader}
90 const std::string& defaultRobotName)
92 Eigen::Vector3f translation;
93 translation << cartesian.translationCartesian.cast<
float>(), 0;
96 if (cartesian.frameID.has_value())
98 armarx::arondto::FrameID frameID = cartesian.frameID.value();
100 if (frameID.agent.empty())
103 frameID.agent = defaultRobotName;
108 if (frameID.frame.empty())
110 frameID.frame = robot->getRootNode()->getName();
126 const Eigen::Vector3f forward,
127 const Eigen::Vector3f up)
129 const Eigen::AngleAxisf rotation(simox::math::deg_to_rad(polar.directionDegrees), up);
130 const Eigen::Vector3f translation = polar.distanceMillimeters * (rotation * forward);
138 return Eigen::AngleAxisf(rotationRadians, up);
142 MoveRelativePlanar::relativeTarget(
const Base::SpecializedMainInput& in)
145 static const Eigen::Vector3f forward = Eigen::Vector3f::UnitY();
146 static const Eigen::Vector3f up = Eigen::Vector3f::UnitZ();
148 const ParamType& parameters = in.parameters;
153 if (parameters.translationCartesian.has_value())
155 relativeTarget.translation() =
makeTranslation(parameters.translationCartesian.value(),
156 services.robotReader,
159 else if (parameters.translationPolar.has_value())
161 relativeTarget.translation() =
166 std::optional<float> rotationRadians = parameters.rotationRadians;
167 if (not rotationRadians.has_value() and parameters.rotationDegrees.has_value())
169 rotationRadians = simox::math::deg_to_rad(parameters.rotationDegrees.value());
171 if (rotationRadians.has_value())
173 relativeTarget.linear() =
174 relativeTarget.linear() *
makeRotation(rotationRadians.value(), up);
177 return relativeTarget;