3 #include <SimoxUtility/json.h>
4 #include <VirtualRobot/Nodes/RobotNode.h>
10 #include <armarx/control/common/mp/aron/MPConfig.aron.generated.h>
23 auto _start = IceUtil::Time::now().toSecondsDouble();
24 ARMARX_INFO <<
"----------------------------------- creating MPs "
25 "-------------------------------------------------";
26 ARMARX_INFO <<
" -- in MPPool, we have " << mpListConfig.mpList.size() <<
" MPs";
29 for (
const MPConfig&
c : mpListConfig.mpList)
31 auto className = mpClass::_from_string_nocase(
c.className.c_str());
33 <<
"\n---- class: " <<
c.className <<
"\n---- type: " <<
c.mpTypeString
34 <<
"\n---- mode: " <<
c.mpMode <<
"\n---- style: " <<
c.mpStyle;
43 mps.insert({
c.name, {jsmp, in, out}});
46 case mpClass::JSVelMP:
53 mps.insert({
c.name, {tsmp, in, out}});
56 case mpClass::KeypointsMP:
61 mps.insert({
c.name, {tsmp, in, out}});
64 case mpClass::TSVelMP:
68 <<
"\nsupported names include: "
69 "JSMP, JSVelMP, TSMP, TSVelMP, KeypointsMP";
73 auto _duration = IceUtil::Time::now().toSecondsDouble() - _start;
74 ARMARX_INFO <<
"---------------------------------- All MPs created in " << _duration
76 "-----------------------------------------------";
91 if (rtSafe or mp.second.mp->isFirstRun())
93 mp.second.mp->run(mp.second.input, mp.second.output);
101 std::string allMPs =
"";
104 allMPs = allMPs + mp.second.mp->getMPName() +
", ";
113 const ::Ice::Current&)
115 for (
auto& pair :
mps)
117 auto it = durationSec.find(pair.first);
118 auto is = startVec.find(pair.first);
119 auto ig = goalVec.find(pair.first);
121 if (it != durationSec.end())
123 if (it->second > 0.0)
125 pair.second.mp->setDurationSec(it->second);
128 if (is != startVec.end())
130 pair.second.mp->setStart(is->second);
132 if (ig != goalVec.end())
134 pair.second.mp->setGoal(ig->second);
147 const DVec& startVec,
150 const Ice::Current& iceCurrent)
152 auto start = IceUtil::Time::now().toSecondsDouble();
155 ARMARX_INFO <<
"--------------------------------------- start all MPs "
156 "---------------------------------------";
157 ARMARX_INFO <<
" -- To start all MPs at once, it's up to the user to configure the "
158 "start, goal and timeduration properly before this call.";
163 mp.second.mp->start();
170 auto search =
mps.find(mpName);
171 if (search !=
mps.end())
173 if (timeDuration < 0.0)
175 search->second.mp->start(goalVec, startVec);
179 search->second.mp->start(goalVec, startVec, timeDuration);
185 <<
" is not in the MP pool. Please check your configuration file";
189 auto duration = IceUtil::Time::now().toSecondsDouble() -
start;
190 ARMARX_INFO <<
"All mp started in " << duration <<
" sec.";
206 mp.second.mp->stop();
211 auto search =
mps.find(mpName);
212 if (search !=
mps.end())
214 search->second.mp->stop();
219 <<
" is not in the MP pool. Please check your configuration file";
237 mp.second.mp->pause();
242 auto search =
mps.find(mpName);
243 if (search !=
mps.end())
245 search->second.mp->pause();
250 <<
" is not in the MP pool. Please check your configuration file";
268 mp.second.mp->resume();
273 auto search =
mps.find(mpName);
274 if (search !=
mps.end())
276 search->second.mp->resume();
281 <<
" is not in the MP pool. Please check your configuration file";
299 mp.second.mp->reset();
304 auto search =
mps.find(mpName);
305 if (search !=
mps.end())
307 search->second.mp->reset();
312 <<
" is not in the MP pool. Please check your configuration file";
328 return std::all_of(
mps.begin(),
330 [](
const auto& pair) { return pair.second.mp->isFinished(); });
333 auto it =
mps.find(mpName);
336 return it->second.mp->isFinished();
339 ARMARX_ERROR << mpName <<
" is not in the MP pool. Please check your configuration file";
346 if (fileNames.size() > 0)
348 ARMARX_WARNING <<
"Be aware that the fileNames ice parameter is not yet used. "
349 <<
"Instead, set the file names in the MPConfig parameter of your "
350 <<
"previous ice interface call.";
352 ARMARX_INFO <<
"--------------------------------------- Train MPs "
353 "----------------------------------------------------";
356 mp.second.mp->learnFromCSV();
359 ARMARX_INFO <<
"--------------------------------------- done "
360 "----------------------------------------------------";
365 const Ice::Current& iceCurrent)
367 auto start = IceUtil::Time::now().toSecondsDouble();
368 ARMARX_INFO <<
"--------------------------------------- Train MPs "
369 "----------------------------------------------------";
372 MultiMPTrajs trajsDict;
373 trajsDict.fromAron(dict);
382 if (trajsDict.data.empty())
384 ARMARX_INFO <<
"Learning from trajectories specified in MPConfig(s) rather than as an "
386 for (
const auto& [mpName, mpInputOutput] :
mps)
388 const auto&
mpConfig = mpInputOutput.mp->getConfig();
390 <<
"For MP " << mpName <<
": No trajectories provided as parameter, "
391 <<
"and not trajectories specified in MPConfig.";
392 mpInputOutput.mp->learnFromTraj(
mpConfig.trajectoryList);
397 for (
const auto& [mpName, trajs] : trajsDict.data)
402 <<
"Trajectories provided for unknown MP " << mpName;
404 <<
"Empty list of trajectories provided for MP " << mpName;
405 mps.at(mpName).mp->learnFromTraj(trajs);
411 auto duration = IceUtil::Time::now().toSecondsDouble() -
start;
412 ARMARX_INFO <<
"--------------------------------------- done in " << duration
414 "----------------------------------------------------";
420 auto start = IceUtil::Time::now().toSecondsDouble();
423 mp.second.mp->trainMP();
426 auto duration = IceUtil::Time::now().toSecondsDouble() -
start;
427 ARMARX_INFO <<
"training finished in " << duration <<
" sec.";
440 mp.second.mp->setStartAndGoal(starts, goals);
468 std::vector<double> test{0.1, 0.1};
475 auto search =
mps.find(mpName);
476 if (search !=
mps.end())
478 return search->second.mp->getCanonicalValue();
483 <<
" is not in the MP pool. Please check your configuration file";
496 const Ice::Current& iceCurrent)
498 ARMARX_WARNING <<
"You should overwrite this method in your concrete MP controllers, and "
499 "call resetMPs(dto, rnsMap)";
504 const std::map<std::string, VirtualRobot::RobotNodeSetPtr>& rnsMap)
506 std::scoped_lock lock(
mtx_mps);
510 "If you want to force reset, please call \n\n"
511 " ctrl->stop('all') \n\n"
512 "before you continue";
516 auto configData = MPListConfig::FromAron(dto);
523 for (
const auto& _mp : configData.mpList)
525 if (rnsMap.find(_mp.nodeSetName) == rnsMap.end())
527 ARMARX_WARNING <<
"You have to make sure the RobotNodeSet " << _mp.nodeSetName
528 <<
" in your MP config "
529 <<
"corresponds to one of the RobotNodeSet in the controllers";
537 ARMARX_INFO <<
"-- successfully updated MP config.";
549 const std::map<std::string, VirtualRobot::RobotNodeSetPtr>& rnsMap)
551 ARMARX_INFO <<
"-- reconfigure MP: reinitialize the mp input output, as well as the rt "
552 "related buffer values";
554 for (
auto& _mp :
mps)
558 VirtualRobot::RobotNodeSetPtr rns = rnsMap.at(_mp.second.mp->getNodeSetName());
560 if (_mp.second.mp->getRole() ==
"taskspace")
564 << _mp.second.mp->getMPName();
565 std::dynamic_pointer_cast<mp::TSMPInput>(_mp.second.input)->pose = currentPose;
566 std::dynamic_pointer_cast<mp::TSMPInput>(_mp.second.input)->vel.setZero();
567 std::dynamic_pointer_cast<mp::TSMPOutput>(_mp.second.output)->pose = currentPose;
568 std::dynamic_pointer_cast<mp::TSMPOutput>(_mp.second.output)->vel.setZero();
570 else if (_mp.second.mp->getRole() ==
"nullspace")
573 << _mp.second.mp->getMPName() <<
" with "
574 << rns->getJointValues().size() <<
" joints";
575 std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angleRadian =
576 rns->getJointValuesEigen();
577 std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angularVel =
578 Eigen::VectorXf::Zero(rns->getJointValues().size());
579 std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angleRadian =
580 rns->getJointValuesEigen();
581 std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angularVel =
582 Eigen::VectorXf::Zero(rns->getJointValues().size());
584 else if (_mp.second.mp->getRole() ==
"hand")
587 << _mp.second.mp->getMPName() <<
" with "
588 << rns->getJointValues().size() <<
" joints";
589 std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angleRadian =
590 rns->getJointValuesEigen();
591 std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angularVel =
592 Eigen::VectorXf::Zero(rns->getJointValues().size());
593 std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angleRadian =
594 rns->getJointValuesEigen();
595 std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angularVel =
596 Eigen::VectorXf::Zero(rns->getJointValues().size());