19 ARMARX_ERROR <<
"Exactly one of the parameters 'shapeName' and 'jointAngles' must be "
20 "set. However, neither has been set.";
25 ARMARX_ERROR <<
"Exactly one of the parameters 'shapeName' and 'jointAngles' must be "
26 "set. However, both have been set.";
40 const auto defShapes =
41 ::armarx::SingleTypeVariantListPtr::dynamicCast(handUnit->getShapeNames())
42 ->toStdVector<std::string>();
44 if (not std::any_of(defShapes.begin(),
46 [&shape](
const auto& defShape) { return shape == defShape; }))
49 <<
"' not defined. Defined shapes: " << defShapes;
54 ARMARX_INFO <<
"Setting shape of hand '" << handUnit->getHandName() <<
"' to '" << shape
57 handUnit->setShape(shape);
61 return waitUntilFinished(handUnit->getShapeJointValues(shape));
69 ARMARX_INFO <<
"Setting joint angles of hand '" << handUnit->getHandName()
83 ShapeHand::waitUntilFinished(
const NameValueMap& targetAngles)
86 const auto movementTimeout =
getParameters().waitUntilFinished->movementTimeout;
88 ARMARX_INFO <<
"Waiting until target position is reached"
89 << (movementTimeout ?
" or movement times out" :
"");
95 } pastJointAngles{handUnit->getCurrentJointValues(),
DateTime::Now()};
100 bool reached =
false;
101 bool movementTimedOut =
false;
105 const auto currentAngles = handUnit->getCurrentJointValues();
109 for (
const auto& [jointName, targetAngle] : targetAngles)
111 if (
std::abs(targetAngle - currentAngles.at(jointName)) > getAccuracy(jointName))
116 <<
"' is: " <<
std::abs(targetAngle - currentAngles.at(jointName)) <<
" > "
117 << getAccuracy(jointName) <<
"(accuracy)";
123 if (movementTimeout and (
DateTime::Now() - pastJointAngles.time).toSecondsDouble() >=
124 movementTimeout.value())
126 movementTimedOut =
true;
127 for (
const auto& [jointName, targetAngle] : targetAngles)
129 if (
std::abs(currentAngles.at(jointName) -
130 pastJointAngles.angles.at(jointName)) > getAccuracy(jointName))
132 movementTimedOut =
false;
134 <<
deactivateSpam(1) <<
"Joint '" << jointName <<
"' still moving: "
135 <<
std::abs(currentAngles.at(jointName) -
136 pastJointAngles.angles.at(jointName))
137 <<
" > " << getAccuracy(jointName) <<
"(accuracy)"
138 <<
"in the last " << movementTimeout.value() <<
"s (movement timeout)";
145 clock.waitFor(sleepTime);
152 else if (movementTimedOut)
154 ARMARX_INFO <<
"Movement timed out! Joints stopped moving. Not waiting anymore until "
155 "target postion is reached";
160 <<
"Skill aborted. Not waiting anymore until target position is reached";
168 ShapeHand::getAccuracy(
const std::string& jointName)
170 const auto accuracy =
getParameters().waitUntilFinished->accuracy;
171 const auto accuracyOverride =
getParameters().waitUntilFinished->accuracyOverride;
173 return accuracyOverride.count(jointName) > 0 ? accuracyOverride.at(jointName) : accuracy;
188 arondto::ShapeHandParams params;
190 params.shapeName =
"Open";
191 params.waitUntilFinished =
getParameters().waitUntilFinished;
208 arondto::ShapeHandParams params;
210 params.shapeName =
"Close";
211 params.waitUntilFinished =
getParameters().waitUntilFinished;