5 #include <VirtualRobot/RobotNodeSet.h>
11 #include <armarx/control/skills/aron/MoveJointsToPositionParams.aron.generated.h>
19 SimpleSpecializedSkill(GetSkillDescription()), remote(remote)
28 defaultParams.enableLeftArm =
true;
29 defaultParams.enableRightArm =
true;
31 defaultParams.enableLeftHand =
false;
32 defaultParams.enableRightHand =
false;
34 defaultParams.enableTorso =
true;
36 defaultParams.enableHead =
false;
38 std::stringstream desc;
39 desc <<
"Move all joints to a named configuration of the robot model."
41 <<
"The `enable*` parameters can be used to enable/disable movement for different "
42 "body parts of the robot.";
46 .description = desc.str(),
47 .rootProfileDefaults = defaultParams.toAron(),
49 .parametersType = ParamType::ToAronType(),
64 const auto configuration = robot->getConfiguration(in.parameters.configuration);
65 if (not configuration)
68 << in.parameters.configuration <<
"'.";
73 std::set<std::string> enabledJoints;
74 const auto addJoints = [&](
const std::string& nodeSetName)
76 if (not robot->hasRobotNodeSet(nodeSetName))
79 << in.parameters.configuration <<
"'.";
83 const auto robotNodes = robot->getRobotNodeSet(nodeSetName)->getNodeNames();
84 enabledJoints.insert(robotNodes.cbegin(), robotNodes.cend());
88 if (in.parameters.enableLeftArm)
92 if (in.parameters.enableRightArm)
94 addJoints(
"RightArm");
96 if (in.parameters.enableLeftHand)
98 addJoints(
"LeftHand");
100 if (in.parameters.enableRightHand)
102 addJoints(
"RightHand");
104 if (in.parameters.enableTorso)
108 if (in.parameters.enableHead)
124 for (
const auto& [node,
value] : *configuration)
126 if (enabledJoints.count(node))
128 subParams.jointsTargetValues[node] =
value;