1 #define BOOST_TEST_MODULE ArmarX::RobotTrajectoryDesigner::DesignerTrajectoryManager
2 #define ARMARX_BOOST_TEST
5 #include "../Manager/DesignerTrajectoryManager.h"
7 #include <VirtualRobot/XML/RobotIO.h>
12 #include <RobotComponents/Test.h>
14 #include "../Interpolation/LinearInterpolation.h"
15 #include "../Util/OrientationConversion.h"
25 QuaternionBasePtr ori;
30 createPosePkg(
float x,
float y,
float z,
float qw,
float qx,
float qy,
float qz)
33 posePkg.
pos = Vector3BasePtr(
new Vector3(x, y, z));
34 posePkg.
ori = QuaternionBasePtr(
new Quaternion(qw, qx, qy, qz));
35 PoseBasePtr tmp = PoseBasePtr(
new Pose(posePkg.
pos, posePkg.
ori));
43 return floor(d * pow10(accuracy)) / pow10(accuracy);
52 if (
roundTo(p1->position->x, accuracy) !=
roundTo(p2->position->x, accuracy))
56 if (
roundTo(p1->position->y, accuracy) !=
roundTo(p2->position->y, accuracy))
60 if (
roundTo(p1->position->z, accuracy) !=
roundTo(p2->position->z, accuracy))
66 if (
roundTo(p1->orientation->qw, accuracy) !=
roundTo(p2->orientation->qw, accuracy))
71 if (
roundTo(p1->orientation->qx, accuracy) !=
roundTo(p2->orientation->qx, accuracy))
76 if (
roundTo(p1->orientation->qy, accuracy) !=
roundTo(p2->orientation->qy, accuracy))
80 if (
roundTo(p1->orientation->qz, accuracy) !=
roundTo(p2->orientation->qz, accuracy))
92 if (t1->dim() != t2->dim())
98 for (
unsigned int dim = 0; dim < t1->dim(); dim++)
100 if (t1->getDimensionData(dim) != t2->getDimensionData(dim))
107 if (t1->getTimestamps() != t2->getTimestamps())
125 if (u1->getJointAngles() != u2->getJointAngles())
131 if (u1->getIKSelection() != u2->getIKSelection())
137 if (u1->getIsTimeOptimalBreakpoint() != u2->getIsTimeOptimalBreakpoint())
143 if (u1->getTimeOptimalTimestamp() != u2->getTimeOptimalTimestamp())
149 if (u1->getUserTimestamp() != u2->getUserTimestamp())
173 if (t1->getTimeOptimalDuration() != t2->getTimeOptimalDuration())
179 if (t1->getUserDuration() != t2->getUserDuration())
185 if (t1->getInterpolationType() != t2->getInterpolationType())
203 std::vector<armarx::TrajectoryPtr> dt1_interBPT = dt1->getInterBreakpointTrajectories();
204 std::vector<armarx::TrajectoryPtr> dt2_interBPT = dt2->getInterBreakpointTrajectories();
205 if (dt1_interBPT.size() != dt2_interBPT.size())
210 for (
unsigned int i = 0; i < dt1_interBPT.size(); i++)
219 std::vector<UserWaypointPtr> dt1_uwp = dt1->getAllUserWaypoints();
220 std::vector<UserWaypointPtr> dt2_uwp = dt2->getAllUserWaypoints();
221 if (dt1_uwp.size() != dt2_uwp.size())
226 for (
unsigned int i = 0; i < dt1_uwp.size(); i++)
237 for (
unsigned int i = 0; i < dt1_uwp.size() - 1; i++)
246 if (dt1->getRns()->getName() != dt2->getRns()->getName())
258 new Pose(robot->getRobotNodeSet(rnsName)->getKinematicRoot()->toLocalCoordinateSystem(
259 (
new Pose(pose->position, pose->orientation))->toEigen())));
289 -0.55030667789183983,
291 0.3146440488984465480);
298 std::string robotFile =
"/RobotAPI/robots/Armar3/ArmarIII.xml";
303 robot = VirtualRobot::RobotIO::loadRobot(finder.
getDataDir() + robotFile);
307 robot = RobotIO::loadRobot(
308 "../../../../../data/RobotTrajectoryDesigner/Resources/ArmarIII.xml");
313 VirtualRobot::RobotNodeSetPtr rns = robot->getRobotNodeSets()[10];
320 vector<double> pp1_r_ja = {0.0540, 0.0398, 0.3851, 0.1253, -0.2440, 0.1100, -0.0342};
325 environment->setRobot(robot);
332 BOOST_CHECK_THROW(m->addWaypoint(pp1_r.
pose), NotInitializedException);
333 BOOST_CHECK_THROW(m->insertWaypoint(0, pp1_r.
pose), NotInitializedException);
334 BOOST_CHECK_THROW(m->editWaypointPoseBase(0, pp1_r.
pose), NotInitializedException);
335 BOOST_CHECK_THROW(m->editWaypointIKSelection(0, ikSelection), NotInitializedException);
336 BOOST_CHECK_THROW(m->deleteWaypoint(0), NotInitializedException);
337 BOOST_CHECK_THROW(m->setTransitionInterpolation(0, interpolationType), NotInitializedException);
338 BOOST_CHECK_THROW(m->setWaypointAsBreakpoint(0,
true), NotInitializedException);
339 BOOST_CHECK_THROW(m->setTransitionUserDuration(0, 10.0), NotInitializedException);
345 std::string robotFile =
"/RobotAPI/robots/Armar3/ArmarIII.xml";
350 robot = VirtualRobot::RobotIO::loadRobot(finder.
getDataDir() + robotFile);
354 robot = RobotIO::loadRobot(
355 "../../../../../data/RobotTrajectoryDesigner/Resources/ArmarIII.xml");
361 VirtualRobot::RobotNodeSetPtr rns = robot->getRobotNodeSets()[10];
365 environment->setRobot(robot);
367 std::make_shared<DesignerTrajectoryManager>(rns->getName(), environment);
370 std::vector<double> p1ja = {
371 0.464789, 0.357171, -0.303694, -0.067161, -0.445988, -0.204292, -0.070153};
402 std::string rnsName = rns->getName();
403 PoseBasePtr p1 =
poseToLocal(kc->doForwardKinematic(rns, p1ja), robot, rnsName);
412 dtm->initializeDesignerTrajectory(p1ja);
416 BOOST_CHECK_EQUAL(p1ja,
dt->getUserWaypoint(0)->getJointAngles());
421 dtm->addWaypoint(p2);
422 dtm->insertWaypoint(1, p3);
423 dtm->insertWaypoint(0, p4);
426 dt = dtm->getDesignerTrajectory();
432 BOOST_CHECK(
dt->getUserWaypoint(0)->getTimeOptimalTimestamp() == 0);
435 BOOST_CHECK(
dt->getUserWaypoint(1)->getTimeOptimalTimestamp() != 0);
436 BOOST_CHECK(
dt->getUserWaypoint(2)->getTimeOptimalTimestamp() != 0);
437 BOOST_CHECK(
dt->getUserWaypoint(3)->getTimeOptimalTimestamp() != 0);
440 BOOST_CHECK(
dt->getUserWaypoint(0)->getJointAngles().size() != 0);
441 BOOST_CHECK(
dt->getUserWaypoint(1)->getJointAngles().size() != 0);
442 BOOST_CHECK(
dt->getUserWaypoint(2)->getJointAngles().size() != 0);
443 BOOST_CHECK(
dt->getUserWaypoint(3)->getJointAngles().size() != 0);
446 BOOST_CHECK_EQUAL(
dt->getTransition(0)->getTimeOptimalDuration(),
447 dt->getTransition(0)->getEnd()->getTimeOptimalTimestamp() -
448 dt->getTransition(0)->getStart()->getTimeOptimalTimestamp());
450 BOOST_CHECK_EQUAL(
dt->getTransition(1)->getTimeOptimalDuration(),
451 dt->getTransition(1)->getEnd()->getTimeOptimalTimestamp() -
452 dt->getTransition(1)->getStart()->getTimeOptimalTimestamp());
454 BOOST_CHECK_EQUAL(
dt->getTransition(2)->getTimeOptimalDuration(),
455 dt->getTransition(2)->getEnd()->getTimeOptimalTimestamp() -
456 dt->getTransition(2)->getStart()->getTimeOptimalTimestamp());
458 BOOST_CHECK(
dt->getTimeOptimalTrajectory()->size() > 1);
461 dtm->setTransitionUserDuration(0, 5.0);
462 dt = dtm->getDesignerTrajectory();
463 BOOST_CHECK(
dt->getUserWaypoint(0)->getUserTimestamp() == 0);
464 BOOST_CHECK(
dt->getUserWaypoint(1)->getUserTimestamp() == 5);
465 BOOST_CHECK(
dt->getUserWaypoint(2)->getUserTimestamp() > 5);
466 BOOST_CHECK(
dt->getUserWaypoint(3)->getUserTimestamp() > 5);
468 dtm->setTransitionUserDuration(1, 10.0);
469 dt = dtm->getDesignerTrajectory();
471 BOOST_CHECK(
dt->getUserWaypoint(0)->getUserTimestamp() == 0.0);
472 BOOST_CHECK(
dt->getUserWaypoint(1)->getUserTimestamp() == 5.0);
473 BOOST_CHECK(
dt->getUserWaypoint(2)->getUserTimestamp() == 15.0);
474 BOOST_CHECK(
dt->getUserWaypoint(3)->getUserTimestamp() > 15.0);
476 dtm->setTransitionUserDuration(2, 15.0);
477 dt = dtm->getDesignerTrajectory();
479 BOOST_CHECK(
dt->getUserWaypoint(0)->getUserTimestamp() == 0.0);
480 BOOST_CHECK(
dt->getUserWaypoint(1)->getUserTimestamp() == 5.0);
481 BOOST_CHECK(
dt->getUserWaypoint(2)->getUserTimestamp() == 15.0);
482 BOOST_CHECK(
dt->getUserWaypoint(3)->getUserTimestamp() == 30.0);
487 dtm->deleteWaypoint(0);
488 dtm->deleteWaypoint(0);
489 dtm->deleteWaypoint(0);
490 dtm->deleteWaypoint(0);
492 BOOST_CHECK(dtm->getIsInitialized() ==
false);
498 std::string robotFile =
"/RobotAPI/robots/Armar3/ArmarIII.xml";
503 robot = VirtualRobot::RobotIO::loadRobot(finder.
getDataDir() + robotFile);
507 robot = RobotIO::loadRobot(
508 "../../../../../data/RobotTrajectoryDesigner/Resources/ArmarIII.xml");
514 VirtualRobot::RobotNodeSetPtr rns = robot->getRobotNodeSets()[10];
518 environment->setRobot(robot);
520 std::make_shared<DesignerTrajectoryManager>(rns->getName(), environment);
523 std::vector<double> p1ja = {
524 0.464789, 0.357171, -0.303694, -0.067161, -0.445988, -0.204292, -0.070153};
555 std::string rnsName = rns->getName();
556 PoseBasePtr p1 =
poseToLocal(kc->doForwardKinematic(rns, p1ja), robot, rnsName);
564 dtm->initializeDesignerTrajectory(p1ja);
569 dtm->addWaypoint(p2);
570 dtm->addWaypoint(p3);
574 dtm->addWaypoint(p4);
591 std::string robotFile =
"/RobotAPI/robots/Armar3/ArmarIII.xml";
596 robot = VirtualRobot::RobotIO::loadRobot(finder.
getDataDir() + robotFile);
600 robot = RobotIO::loadRobot(
601 "../../../../../data/RobotTrajectoryDesigner/Resources/ArmarIII.xml");
607 VirtualRobot::RobotNodeSetPtr rns = robot->getRobotNodeSets()[10];
611 environment->setRobot(robot);
613 std::make_shared<DesignerTrajectoryManager>(rns->getName(), environment);
616 std::vector<double> p1ja = {
617 0.464789, 0.357171, -0.303694, -0.067161, -0.445988, -0.204292, -0.070153};
648 PoseBasePtr p1 = kc->doForwardKinematic(rns, p1ja);
649 std::string rnsName = rns->getName();
658 dtm->initializeDesignerTrajectory(p1ja);
663 dtm->addWaypoint(p2);
666 dtm->addWaypoint(p3);
681 std::string robotFile =
"/RobotAPI/robots/Armar3/ArmarIII.xml";
686 robot = VirtualRobot::RobotIO::loadRobot(finder.
getDataDir() + robotFile);
690 robot = RobotIO::loadRobot(
691 "../../../../../data/RobotTrajectoryDesigner/Resources/ArmarIII.xml");
697 VirtualRobot::RobotNodeSetPtr rns = robot->getRobotNodeSets()[10];
701 environment->setRobot(robot);
703 std::make_shared<DesignerTrajectoryManager>(rns->getName(), environment);
706 std::vector<double> p1ja = {
707 0.464789, 0.357171, -0.303694, -0.067161, -0.445988, -0.204292, -0.070153};
738 std::string rnsName = rns->getName();
739 PoseBasePtr p1 =
poseToLocal(kc->doForwardKinematic(rns, p1ja), robot, rnsName);
748 dtm->initializeDesignerTrajectory(p1ja);
749 dtm->addWaypoint(p2);
750 dtm->addWaypoint(p3);
755 dtm->setWaypointAsBreakpoint(2,
true);
757 BOOST_CHECK_NO_THROW(dtm->addWaypoint(p4));