MovePlatformToPose.cpp
Go to the documentation of this file.
1 #include "MovePlatformToPose.h"
2 
4 
5 #include "util/PlatformUtil.h"
6 
7 namespace armarx::skills
8 {
9  namespace
10  {
11  platform_control::arondto::MovePlatformToPoseAcceptedType
12  GetDefaultParameterization()
13  {
14  platform_control::arondto::MovePlatformToPoseAcceptedType ret;
15  ret.orientationalAccuracy = 0.1;
16  ret.positionalAccuracy = 100;
17  return ret;
18  }
19  } // namespace
20 
21  SkillDescription MovePlatformToPose::Description = skills::SkillDescription{
22  "MovePlatformToPosition",
23  "Move a platform unit to target pos.",
24  {},
26  platform_control::arondto::MovePlatformToPoseAcceptedType::ToAronType(),
27  GetDefaultParameterization().toAron()};
28 
30  armarx::viz::Client& arviz,
31  PlatformControlSkillContext& context) :
32  PlatformControlSkill(mns, arviz, Description.skillName, context),
33  mixin::RobotReadingSkillMixin(mns),
34  PeriodicSimpleSpecializedSkill<ArgType>(Description,
35  armarx::core::time::Frequency::Hertz(10))
36  {
37  }
38 
40  MovePlatformToPose::init(const SpecializedInitInput& in)
41  {
42  // setup memory reader
44 
45  return {.status = TerminatedSkillStatus::Succeeded};
46  }
47 
48  Skill::ExitResult
49  MovePlatformToPose::exit(const SpecializedExitInput& in)
50  {
52  clearLayer();
53 
54  return {.status = TerminatedSkillStatus::Succeeded};
55  }
56 
57  PeriodicSkill::StepResult
58  MovePlatformToPose::step(const SpecializedMainInput& in)
59  {
60  clearLayer();
61 
62  {
63  auto l = arviz.layer(layerName);
64  auto a = armarx::viz::Sphere("MovePlatformToPose::targetPose");
65  a.pose(in.parameters.pose);
66  a.radius(40);
67  a.color(viz::Color::yellow());
68  l.add(a);
69  arviz.commit(l);
70  }
71 
72  auto robot =
73  robotReader.getSynchronizedRobot(in.parameters.robotName,
75  VirtualRobot::RobotIO::RobotDescription::eStructure);
76  if (!robot)
77  {
78  ARMARX_WARNING << "Unable to get robot from robotstatememory. Abort.";
79  return {ActiveOrTerminatedSkillStatus::Failed, nullptr};
80  }
81 
82  FramedPosePtr robotPose = new FramedPose(robot->getRootNode()->getPoseInRootFrame(),
83  robot->getRootNode()->getName(),
84  robot->getName());
85  auto robotPoseGlobalEigen = robotPose->toGlobalEigen(robot);
86 
87  float targetX = in.parameters.pose(0, 3);
88  float targetY = in.parameters.pose(1, 3);
89 
90  Eigen::Matrix3f targetRotMat = in.parameters.pose.block<3, 3>(0, 0);
91  Eigen::Vector3f targetRotMatX = targetRotMat * Eigen::Vector3f::UnitX();
92  float targetOri = atan2(targetRotMatX[1], targetRotMatX[0]);
93  if (targetOri > M_PI) // normalize
94  {
95  targetOri = -2 * M_PI + targetOri;
96  }
97 
98  float robotX = robotPoseGlobalEigen(0, 3);
99  float robotY = robotPoseGlobalEigen(1, 3);
100 
101  Eigen::Matrix3f robotRotMat = robotPoseGlobalEigen.block<3, 3>(0, 0);
102  Eigen::Vector3f robotRotMatX = robotRotMat * Eigen::Vector3f::UnitX();
103  float robotOri = atan2(robotRotMatX[1], robotRotMatX[0]);
104  if (robotOri > M_PI) // normalize
105  {
106  robotOri = -2 * M_PI + robotOri;
107  }
108 
109  ARMARX_INFO << deactivateSpam() << "Platform current pose: (" << robotX << ", " << robotY
110  << ", " << robotOri << ")";
111  ARMARX_INFO << deactivateSpam() << "Platform target: (" << targetX << ", " << targetY
112  << ", " << targetOri << ")";
113 
114  float translationalError =
115  (robotPoseGlobalEigen.block<3, 1>(0, 3) - Eigen::Vector3f(targetX, targetY, 0)).norm();
116  float orientationalError = targetOri - robotOri;
117 
118  // transform alpha to [-pi, pi)
119  while (orientationalError < -M_PI)
120  {
121  orientationalError += 2 * M_PI;
122  }
123 
124  while (orientationalError >= M_PI)
125  {
126  orientationalError -= 2 * M_PI;
127  }
128 
129  ARMARX_INFO << deactivateSpam() << "Platform target position error: (" << translationalError
130  << ")";
131  ARMARX_INFO << deactivateSpam() << "Platform target orientation error: ("
132  << orientationalError << ")";
133 
134  if (translationalError > in.parameters.positionalAccuracy or
135  orientationalError > in.parameters.orientationalAccuracy)
136  {
137  ARMARX_INFO << deactivateSpam() << "Platform position accuracy ("
138  << in.parameters.positionalAccuracy << ")";
139  ARMARX_INFO << deactivateSpam() << "Platform orientation accuracy: ("
140  << in.parameters.orientationalAccuracy << ")";
141  context.platformUnitPrx->moveTo(targetX,
142  targetY,
143  targetOri,
144  in.parameters.positionalAccuracy * 0.8,
145  in.parameters.orientationalAccuracy * 0.8);
146  return {ActiveOrTerminatedSkillStatus::Running, nullptr};
147  }
149  }
150 } // namespace armarx::skills
armarx::viz::Client::commit
CommitResult commit(StagedCommit const &commit)
Definition: Client.cpp:89
armarx::skills::SimpleSpecializedSkill< platform_control::arondto::MovePlatformToPoseAcceptedType >::init
Skill::InitResult init() final
Definition: SimpleSpecializedSkill.h:62
armarx::aron::ret
ReaderT::InputType T & ret
Definition: rw.h:13
armarx::skills::TerminatedSkillStatus::Succeeded
@ Succeeded
armarx::skills::ActiveOrTerminatedSkillStatus::Succeeded
@ Succeeded
armarx::skills::ActiveOrTerminatedSkillStatus::Failed
@ Failed
armarx::VariantType::FramedPose
const VariantTypeId FramedPose
Definition: FramedPose.h:36
armarx::skills
This file is part of ArmarX.
Definition: PeriodicUpdateWidget.cpp:11
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
armarx::skills::mixin::RobotReadingSkillMixin::robotReader
armem::robot_state::VirtualRobotReader robotReader
Definition: RobotReadingSkillMixin.h:11
armarx::FramedPosePtr
IceInternal::Handle< FramedPose > FramedPosePtr
Definition: FramedPose.h:272
armarx::skills::MovePlatformToPose::Description
static SkillDescription Description
Definition: MovePlatformToPose.h:66
armarx::core::time::Frequency
Represents a frequency.
Definition: Frequency.h:16
armarx::armem::robot_state::RobotReader::connect
virtual void connect(armem::client::MemoryNameSystem &memoryNameSystem)
Definition: RobotReader.cpp:49
armarx::skills::MovePlatformToPose::ArgType
platform_control::arondto::MovePlatformToPoseAcceptedType ArgType
Definition: MovePlatformToPose.h:53
armarx::viz::Sphere
Definition: Elements.h:133
MovePlatformToPose.h
armarx::skills::mixin::ArvizSkillMixin::arviz
armarx::viz::Client arviz
Definition: ArvizSkillMixin.h:11
armarx::skills::SimpleSpecializedSkill< platform_control::arondto::MovePlatformToPoseAcceptedType >::exit
Skill::ExitResult exit() final
Definition: SimpleSpecializedSkill.h:81
armarx::ctrlutil::a
double a(double t, double a0, double j)
Definition: CtrlUtil.h:45
armarx::skills::MovePlatformToPose::MovePlatformToPose
MovePlatformToPose(armem::client::MemoryNameSystem &mns, armarx::viz::Client &arviz, PlatformControlSkillContext &context)
Definition: MovePlatformToPose.cpp:29
M_PI
#define M_PI
Definition: MathTools.h:17
FramedPose.h
armarx::skills::PlatformControlSkill
Definition: PlatformControlSkill.h:58
armarx::viz::Color::yellow
static Color yellow(int y=255, int a=255)
Red + Green.
Definition: Color.h:116
armarx::skills::PlatformControlSkill::context
PlatformControlSkillContext & context
Definition: PlatformControlSkill.h:78
armarx::skills::mixin::ArvizSkillMixin::layerName
std::string layerName
Definition: ArvizSkillMixin.h:12
armarx::armem::robot_state::VirtualRobotReader::getSynchronizedRobot
VirtualRobot::RobotPtr getSynchronizedRobot(const std::string &name, const VirtualRobot::RobotIO::RobotDescription &loadMode=VirtualRobot::RobotIO::RobotDescription::eStructure, bool blocking=true)
armarx::skills::PlatformControlSkillContext
Definition: PlatformControlSkill.h:44
PlatformUtil.h
armarx::skills::ActiveOrTerminatedSkillStatus::Running
@ Running
armarx::skills::PlatformControlSkill::stopPlatformMovement
TerminatedSkillStatus stopPlatformMovement()
Definition: PlatformControlSkill.h:71
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::skills::mixin::ArvizSkillMixin::clearLayer
void clearLayer()
Definition: ArvizSkillMixin.h:20
armarx::skills::Skill::InitResult
A result struct for skill initialization.
Definition: Skill.h:27
armarx::armem::client::MemoryNameSystem
The memory name system (MNS) client.
Definition: MemoryNameSystem.h:68
armarx::skills::PlatformControlSkillContext::platformUnitPrx
PlatformUnitInterfacePrx platformUnitPrx
Definition: PlatformControlSkill.h:47
armarx::Logging::deactivateSpam
SpamFilterDataPtr deactivateSpam(float deactivationDurationSec=10.0f, const std::string &identifier="", bool deactivate=true) const
disables the logging for the current line for the given amount of seconds.
Definition: Logging.cpp:99
GfxTL::Matrix3f
MatrixXX< 3, 3, float > Matrix3f
Definition: MatrixXX.h:649
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx::viz::Client::layer
Layer layer(std::string const &name) const
Definition: Client.cpp:80
armarx::viz::Client
Definition: Client.h:117
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48
norm
double norm(const Point &a)
Definition: point.hpp:102