diff --git a/source/RobotAPI/components/units/HandUnit.cpp b/source/RobotAPI/components/units/HandUnit.cpp index 907b0990c2c8e50df3ba5fd38eff268d1ffc38cb..8c8eb50c02ac931bae337fe8dafcdeb0dc730ce5 100644 --- a/source/RobotAPI/components/units/HandUnit.cpp +++ b/source/RobotAPI/components/units/HandUnit.cpp @@ -150,6 +150,16 @@ NameValueMap HandUnit::getShapeJointValues(const std::string &shapeName, const I return rc->getRobotNodeJointValueMap(); } +NameValueMap HandUnit::getCurrentJointValues(const Ice::Current &c) +{ + NameValueMap result; + for (auto j : handJoints) + { + result[j.first] = 0.0f; + } + return result; +} + void HandUnit::setObjectGrasped(const std::string &objectName, const Ice::Current &) { ARMARX_INFO << "Object grasped " << objectName << flush; diff --git a/source/RobotAPI/components/units/HandUnit.h b/source/RobotAPI/components/units/HandUnit.h index db2c3d6b13bf837ee2158aec4f80561f387f8650..3df2d52bc68e0cf2088f9e1445a8d7504931f65f 100644 --- a/source/RobotAPI/components/units/HandUnit.h +++ b/source/RobotAPI/components/units/HandUnit.h @@ -121,6 +121,7 @@ namespace armarx virtual SingleTypeVariantListBasePtr getShapeNames(const Ice::Current& c = ::Ice::Current()); NameValueMap getShapeJointValues(const std::string &shapeName, const Ice::Current & c = ::Ice::Current()); + virtual NameValueMap getCurrentJointValues(const Ice::Current & c = ::Ice::Current()); void setObjectGrasped(const std::string& objectName, const Ice::Current &); void setObjectReleased(const std::string& objectName, const Ice::Current &); diff --git a/source/RobotAPI/components/units/HandUnitSimulation.h b/source/RobotAPI/components/units/HandUnitSimulation.h index e37f66e510c7730a8bebeb5d91e4685527242c1b..36a4d8a8359e500c21cc65bbb2f4c4369b6a328e 100644 --- a/source/RobotAPI/components/units/HandUnitSimulation.h +++ b/source/RobotAPI/components/units/HandUnitSimulation.h @@ -81,7 +81,6 @@ namespace armarx * \warning Not implemented yet! */ virtual void setJointAngles(const NameValueMap& jointAngles, const Ice::Current& c = ::Ice::Current()); - }; } diff --git a/source/RobotAPI/components/units/TCPControlUnit.cpp b/source/RobotAPI/components/units/TCPControlUnit.cpp index aa6741a0afbc81db4707103af0cd8a33a4b9a3ec..07ebe712c319827c8bc4e2d46f731937124c3f73 100644 --- a/source/RobotAPI/components/units/TCPControlUnit.cpp +++ b/source/RobotAPI/components/units/TCPControlUnit.cpp @@ -164,10 +164,11 @@ namespace armarx ScopedLock lock(dataMutex); ARMARX_CHECK_EXPRESSION_W_HINT(jointExistenceCheckRobot->hasRobotNodeSet(nodeSetName), "The robot does not have the node set: " + nodeSetName); + if(translationVelocity) - ARMARX_VERBOSE << "Setting new Velocity for " << nodeSetName << " in frame " << translationVelocity->frame << ":\n" << FramedDirectionPtr::dynamicCast(translationVelocity)->toEigen(); + ARMARX_DEBUG << "Setting new Velocity for " << nodeSetName << " in frame " << translationVelocity->frame << ":\n" << FramedDirectionPtr::dynamicCast(translationVelocity)->toEigen(); if(orientationVelocityRPY) - ARMARX_VERBOSE << "Orientation Velo in frame " << orientationVelocityRPY->frame << ": \n" << FramedDirectionPtr::dynamicCast(orientationVelocityRPY)->toEigen(); + ARMARX_DEBUG << "Orientation Velo in frame " << orientationVelocityRPY->frame << ": \n" << FramedDirectionPtr::dynamicCast(orientationVelocityRPY)->toEigen(); TCPVelocityData data; data.nodeSetName = nodeSetName; diff --git a/source/RobotAPI/interface/units/HandUnitInterface.ice b/source/RobotAPI/interface/units/HandUnitInterface.ice index 8f989f0cf45a14185645c6c97dc89e5f8b5b1699..0f6d1a861cd015ecaf0d8064ef9e493530a5ec36 100644 --- a/source/RobotAPI/interface/units/HandUnitInterface.ice +++ b/source/RobotAPI/interface/units/HandUnitInterface.ice @@ -51,6 +51,7 @@ module armarx */ SingleTypeVariantListBase getShapeNames(); NameValueMap getShapeJointValues(string shapeName); + NameValueMap getCurrentJointValues(); string getHandName();