HandControlBase.cpp
Go to the documentation of this file.
1 #include "HandControlBase.h"
2 
3 #include <VirtualRobot/Robot.h>
4 #include <VirtualRobot/RobotNodeSet.h>
5 
7 
9 {
10 
12  const HandConfigDict& cfg)
13  {
14  for (auto& pair : cfg)
15  {
16  auto handNodeSet = rtRobot->getRobotNodeSet(pair.first);
17  hands.emplace(pair.first, std::make_unique<HandData>(handNodeSet, pair.second));
18  }
19  }
20 
21  void
22  HandControlBase::appendDevice(const std::string& handNodeSet,
23  const SensorValueBase* sv,
25  const std::string& jointName)
26  {
28  hands.at(handNodeSet)->sensorDevices.append(sv, jointName);
29 
31  auto* casted_ct = ct->asA<ControlTarget1DoFActuatorPosition>();
32  ARMARX_CHECK_EXPRESSION(casted_ct);
33  hands.at(handNodeSet)->targets.push_back(casted_ct);
34  }
35 
36  void
38  {
39  for (auto& pair : hands)
40  {
41  auto& hand = pair.second;
42  hand->bufferNonRTToRT.getWriteBuffer() = hand->targetNonRT;
43  hand->bufferNonRTToRT.commitWrite();
44  }
45  }
46 
47  void
49  {
50  for (auto& pair : hands)
51  {
52  auto& hand = pair.second;
53  hand->targetNonRT = hand->bufferUserToNonRT.getUpToDateReadBuffer();
54  hand->rtsInNonRT = hand->bufferRTToNonRT.getUpToDateReadBuffer();
55  }
56  }
57 
58  void
59  HandControlBase::updateRTStatus(const double deltaT)
60  {
61  for (auto& pair : hands)
62  {
63  pair.second->rts.deltaT = deltaT;
64  pair.second->rts.accumulateTime += deltaT;
65  pair.second->sensorDevices.getJointAngles(pair.second->rts.jointPosition.value());
66  pair.second->bufferRTToNonRT.getWriteBuffer() = pair.second->rts;
67  pair.second->bufferRTToNonRT.commitWrite();
68  }
69  }
70 
71  void
73  {
74  for (auto& pair : hands)
75  {
76  pair.second->setTarget();
77  }
78  }
79 
80  void
82  {
83  for (auto& pair : cfg)
84  {
85  if (pair.second.jointPosition.has_value())
86  {
87  auto& target = hands.at(pair.first)->bufferUserToNonRT.getWriteBuffer();
88  target.jointPosition = pair.second.jointPosition;
89  hands.at(pair.first)->bufferUserToNonRT.commitWrite();
90  }
91  }
92  }
93 
94  void
96  {
97  for (auto& pair : hands)
98  {
99  cfgToUpdate.at(pair.first) = pair.second->bufferNonRTToRT.getUpToDateReadBuffer();
100  }
101  }
102 
103  void
105  {
106  for (auto& pair : hands)
107  {
108  cfgToUpdate.at(pair.first) = pair.second->targetNonRT;
109  pair.second->bufferNonRTToRT.reinitAllBuffers(pair.second->targetNonRT);
110  pair.second->bufferUserToNonRT.reinitAllBuffers(pair.second->targetNonRT);
111  }
112  }
113 
114  void
116  {
117  StringVariantBaseMap datafields;
118  auto rtData = hand->bufferConfigRTToOnPublish.getUpToDateReadBuffer();
119 
120  if (rtData.jointPosition.has_value())
121  {
122  common::debugEigenVec(datafields, "kpImpedance", rtData.jointPosition.value());
123  debugObs->setDebugChannel("hand_" + hand->kinematicChainName, datafields);
124  }
125  }
126 
127  void
129  {
130  for (auto& pair : hands)
131  {
132  limbPublish(pair.second, debugObs);
133  }
134  }
135 
136  void
138  {
139  for (auto& pair : hands)
140  {
141  ARMARX_INFO << "rtPreActivate for hand " << pair.first;
142  pair.second->rtPreActivate();
143  }
144  }
145 
146  void
148  {
149  }
150 
151  /// ------------------------------------- HandData ---------------------------------------------
152  void
154  {
155  ARMARX_CHECK_EQUAL(targetRT.jointPosition.value().size(), jointLimMin.size());
156  ARMARX_CHECK_EQUAL(targetRT.jointPosition.value().size(), jointLimMax.size());
157  targetRT.jointPosition.value() =
158  targetRT.jointPosition.value().cwiseMax(jointLimMin).cwiseMin(jointLimMax);
159  }
160 
161  void
163  {
164  targetRT = bufferNonRTToRT.getUpToDateReadBuffer();
165  if (targetRT.jointPosition.has_value())
166  {
167  validate();
168  for (size_t i = 0; i < targets.size(); i++)
169  {
170  targets[i]->position = targetRT.jointPosition.value()(i);
171  }
172  }
173  bufferConfigRTToOnPublish.getWriteBuffer() = targetRT;
174  bufferConfigRTToOnPublish.commitWrite();
175  }
176 
177  HandControlBase::HandData::HandData(const VirtualRobot::RobotNodeSetPtr& robotNodeSet,
178  const HandConfig& cfg) :
179  kinematicChainName(robotNodeSet->getName()),
180  jointNames(robotNodeSet->getNodeNames()),
181  nJoints(robotNodeSet->getSize()),
182  targetRT(cfg),
183  targetNonRT(cfg)
184  {
185  rts.deltaT = 0.0;
186  rts.jointPosition = Eigen::VectorXf::Zero(nJoints);
187  rtsInNonRT = rts;
188  jointLimMin = Eigen::Map<Eigen::VectorXf>(robotNodeSet->getNodeLimitsLo().data(), nJoints);
189  jointLimMax = Eigen::Map<Eigen::VectorXf>(robotNodeSet->getNodeLimitsHi().data(), nJoints);
190  ARMARX_CHECK_EQUAL(static_cast<size_t>(jointLimMin.size()), nJoints);
191  ARMARX_CHECK_EQUAL(static_cast<size_t>(jointLimMax.size()), nJoints);
192  }
193 
194  void
196  {
197  ARMARX_CHECK_EQUAL(sensorDevices.positionSensors.size(), nJoints)
198  << "In your class constructor, did you forget to call HandControlBase::appendDevice( "
199  "... )?";
200  ARMARX_CHECK_EQUAL(targets.size(), nJoints);
201  sensorDevices.getJointAngles(rts.jointPosition.value());
202  rts.jointPosition.value() =
203  rts.jointPosition.value().cwiseMax(jointLimMin).cwiseMin(jointLimMax);
204 
205  if (not targetRT.jointPosition.has_value())
206  {
207  targetRT.jointPosition = rts.jointPosition;
208  targetNonRT = targetRT;
209  }
210  rtsInNonRT = rts;
211  nonRTAccumulateTime = 0.0;
212  nonRTDeltaT = 0.0;
213  ARMARX_CHECK_EQUAL(static_cast<size_t>(targetRT.jointPosition.value().size()), nJoints);
214  bufferNonRTToRT.reinitAllBuffers(targetRT);
215  bufferRTToNonRT.reinitAllBuffers(rts);
216  bufferUserToNonRT.reinitAllBuffers(targetRT);
217  bufferRTToUser.reinitAllBuffers(targetRT);
218  bufferConfigRTToOnPublish.reinitAllBuffers(targetRT);
219  ARMARX_INFO_S << kinematicChainName << " joints " << targetRT.jointPosition.value();
220  }
221 
222 
223 } // namespace armarx::control::njoint_controller::core
armarx::control::njoint_controller::core::HandControlBase::setTargets
void setTargets()
Definition: HandControlBase.cpp:72
armarx::ControlTargetBase::asA
const T * asA() const
Definition: ControlTargetBase.h:76
HandControlBase.h
armarx::StringVariantBaseMap
std::map< std::string, VariantBasePtr > StringVariantBaseMap
Definition: ManagedIceObject.h:110
armarx::SensorValueBase
The SensorValueBase class.
Definition: SensorValueBase.h:40
armarx::control::njoint_controller::core::HandControlBase::nonRTUpdateStatus
void nonRTUpdateStatus()
Definition: HandControlBase.cpp:48
armarx::ControlTargetBase
Brief description of class JointControlTargetBase.
Definition: ControlTargetBase.h:47
armarx::control::njoint_controller::core::HandControlBase::HandData::rtPreActivate
void rtPreActivate()
Definition: HandControlBase.cpp:195
armarx::control::njoint_controller::core::HandControlBase::limbPublish
void limbPublish(HandPtr &hand, const DebugObserverInterfacePrx &debugObs)
Definition: HandControlBase.cpp:115
boost::target
Vertex target(const detail::edge_base< Directed, Vertex > &e, const PCG &)
Definition: point_cloud_graph.h:668
armarx::control::njoint_controller::core
This file is part of ArmarX.
Definition: CollisionAvoidanceCore.cpp:14
armarx::control::njoint_controller::core::HandControlBase::nonRTSetTarget
void nonRTSetTarget()
Definition: HandControlBase.cpp:37
armarx::control::njoint_controller::core::HandControlBase::hands
std::map< std::string, HandPtr > hands
Definition: HandControlBase.h:124
armarx::control::njoint_controller::core::HandControlBase::rtPreActivate
void rtPreActivate()
Definition: HandControlBase.cpp:137
armarx::control::njoint_controller::core::HandControlBase::HandControlBase
HandControlBase(const VirtualRobot::RobotPtr &rtRobot, const HandConfigDict &cfg)
Definition: HandControlBase.cpp:11
armarx::control::njoint_controller::core::HandControlBase::HandData::jointLimMax
Eigen::VectorXf jointLimMax
Definition: HandControlBase.h:77
armarx::control::njoint_controller::core::HandControlBase::HandPtr
std::unique_ptr< HandData > HandPtr
Definition: HandControlBase.h:99
armarx::control::njoint_controller::core::HandControlBase::HandData::validate
void validate()
----------------------------------— HandData ------------------------------------------—
Definition: HandControlBase.cpp:153
armarx::control::njoint_controller::core::HandControlBase::rtPostDeactivate
void rtPostDeactivate()
Definition: HandControlBase.cpp:147
armarx::control::njoint_controller::core::HandControlBase::HandData::rtsInNonRT
RTStatus rtsInNonRT
Definition: HandControlBase.h:82
armarx::control::njoint_controller::core::HandControlBase::HandData::setTarget
void setTarget()
Definition: HandControlBase.cpp:162
armarx::control::njoint_controller::core::HandControlBase::HandData::HandData
HandData(const VirtualRobot::RobotNodeSetPtr &robotNodeSet, const HandConfig &cfg)
Definition: HandControlBase.cpp:177
armarx::control::njoint_controller::core::HandControlBase::HandData::rts
RTStatus rts
Definition: HandControlBase.h:81
armarx::control::njoint_controller::core::HandControlBase::HandData::nJoints
size_t nJoints
Definition: HandControlBase.h:63
armarx::control::common::debugEigenVec
void debugEigenVec(StringVariantBaseMap &datafields, const std::string &name, Eigen::VectorXf vec)
Definition: utils.cpp:125
armarx::control::njoint_controller::core::HandControlBase::updateConfig
void updateConfig(const HandConfigDict &cfg)
Definition: HandControlBase.cpp:81
utils.h
armarx::control::njoint_controller::core::HandControlBase::appendDevice
void appendDevice(const std::string &handNodeSet, const SensorValueBase *sv, ControlTargetBase *ct, const std::string &jointName)
Definition: HandControlBase.cpp:22
armarx::control::njoint_controller::core::HandControlBase::HandData::targetRT
HandConfig targetRT
Definition: HandControlBase.h:79
armarx::navigation::client::validate
void validate(const std::vector< WaypointTarget > &path)
Definition: ice_conversions.h:70
armarx::control::njoint_controller::core::HandControlBase::HandData::jointLimMin
Eigen::VectorXf jointLimMin
Definition: HandControlBase.h:76
ARMARX_CHECK_EXPRESSION
#define ARMARX_CHECK_EXPRESSION(expression)
This macro evaluates the expression and if it turns out to be false it will throw an ExpressionExcept...
Definition: ExpressionException.h:73
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
IceInternal::ProxyHandle<::IceProxy::armarx::DebugObserverInterface >
armarx::control::njoint_controller::core::HandControlBase::HandData::RTStatus::deltaT
double deltaT
Definition: HandControlBase.h:72
armarx::control::njoint_controller::core::HandControlBase::HandConfigDict
std::map< std::string, HandConfig > HandConfigDict
Definition: HandControlBase.h:56
armarx::control::njoint_controller::core::HandControlBase::updateRTStatus
void updateRTStatus(const double deltaT)
Definition: HandControlBase.cpp:59
ARMARX_INFO_S
#define ARMARX_INFO_S
Definition: Logging.h:202
ARMARX_CHECK_EQUAL
#define ARMARX_CHECK_EQUAL(lhs, rhs)
This macro evaluates whether lhs is equal (==) rhs and if it turns out to be false it will throw an E...
Definition: ExpressionException.h:130
armarx::control::njoint_controller::core::HandControlBase::getConfig
void getConfig(HandConfigDict &cfgToUpdate)
Definition: HandControlBase.cpp:95
armarx::control::njoint_controller::core::HandControlBase::onPublish
void onPublish(const DebugObserverInterfacePrx &debugObs)
Definition: HandControlBase.cpp:128
armarx::control::njoint_controller::core::HandControlBase::HandConfig
law::arondto::HandStatus HandConfig
Definition: HandControlBase.h:55
armarx::control::njoint_controller::core::HandControlBase::reinitBuffer
void reinitBuffer(HandConfigDict &cfgToUpdate)
Definition: HandControlBase.cpp:104
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19