RobotHand.cpp
Go to the documentation of this file.
1 #include "RobotHand.h"
2 
4 
5 namespace armarx::viz
6 {
7 
8  RobotHand&
9  RobotHand::fileBySide(const std::string& side, RobotInfoNodePtr robotInfo)
10  {
11  ARMARX_CHECK_NOT_NULL(robotInfo);
12  RobotNameHelperPtr nh = RobotNameHelper::Create(robotInfo, nullptr);
13  return this->fileBySide(side, *nh);
14  }
15 
16  RobotHand&
17  RobotHand::fileBySide(const std::string& side, const RobotNameHelper& nameHelper)
18  {
19  RobotNameHelper::Arm arm = nameHelper.getArm(side);
20  return this->fileByArm(arm);
21  }
22 
23  RobotHand&
25  {
26  this->arm = arm;
27  this->file(arm.getHandModelPackage(), arm.getHandModelPath());
28  return *this;
29  }
30 
31  RobotHand&
33  {
34  return this->fileByArm(arm.getArm());
35  }
36 
37  RobotHand&
39  {
40  ARMARX_CHECK(arm) << "Set RobotHand::side() before setting the TCP pose.";
41  RobotNameHelper::RobotArm robotArm = arm->addRobot(robot);
42  this->pose(tcpPose * robotArm.getTcp2HandRootTransform());
43  return *this;
44  }
45 } // namespace armarx::viz
armarx::viz::RobotHand::fileBySide
RobotHand & fileBySide(const std::string &side, RobotInfoNodePtr robotInfo)
Set the robot file according the desired side.
Definition: RobotHand.cpp:9
armarx::viz::RobotHand::fileByArm
RobotHand & fileByArm(const RobotNameHelper::Arm &arm)
Definition: RobotHand.cpp:24
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
armarx::viz::Robot::file
Robot & file(std::string const &project, std::string const &filename)
Definition: Robot.h:16
armarx::Arm::getHandModelPackage
std::string getHandModelPackage() const
Definition: RobotNameHelper.cpp:308
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
armarx::RobotNameHelper
Definition: RobotNameHelper.h:143
RobotHand.h
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::viz::ElementOps< Robot, data::ElementRobot >::pose
Eigen::Matrix4f pose() const
Definition: ElementOps.h:200
armarx::RobotNameHelperPtr
std::shared_ptr< class RobotNameHelper > RobotNameHelperPtr
Definition: RobotNameHelper.h:32
armarx::RobotArm::getTcp2HandRootTransform
Eigen::Matrix4f getTcp2HandRootTransform() const
Definition: RobotNameHelper.cpp:405
armarx::RobotArm
Definition: RobotNameHelper.h:99
ExpressionException.h
armarx::viz::RobotHand
Left or right hand of a robot.
Definition: RobotHand.h:18
armarx::RobotNameHelper::Create
static RobotNameHelperPtr Create(const RobotInfoNodePtr &robotInfo, const StatechartProfilePtr &profile)
Definition: RobotNameHelper.cpp:107
armarx::Arm
Definition: RobotNameHelper.h:39
armarx::RobotArm::getArm
const Arm & getArm() const
Definition: RobotNameHelper.cpp:422
armarx::viz::RobotHand::fileByArm
RobotHand & fileByArm(const RobotNameHelper::RobotArm &arm)
Definition: RobotHand.cpp:32
armarx::viz::RobotHand::arm
std::optional< RobotNameHelper::Arm > arm
The arm name helper. Set by fileBySide().
Definition: RobotHand.h:46
armarx::viz
This file is part of ArmarX.
Definition: ArVizStorage.cpp:418
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19
armarx::RobotNameHelper::getArm
Arm getArm(const std::string &side) const
Definition: RobotNameHelper.cpp:143
armarx::viz::RobotHand::tcpPose
RobotHand & tcpPose(const Eigen::Matrix4f &tcpPose, VirtualRobot::RobotPtr robot)
Set the pose of robotViz according to the given TCP pose.
Definition: RobotHand.cpp:38