MoveJointsToNamedConfiguration.cpp
Go to the documentation of this file.
2 
3 #include <set>
4 
5 #include <VirtualRobot/RobotNodeSet.h>
6 
8 
10 
11 #include <armarx/control/skills/aron/MoveJointsToPositionParams.aron.generated.h>
14 
16 {
17 
19  SimpleSpecializedSkill(GetSkillDescription()), remote(remote)
20  {
21  }
22 
25  {
26  ParamType defaultParams;
27  // - arms
28  defaultParams.enableLeftArm = true;
29  defaultParams.enableRightArm = true;
30  // - hands
31  defaultParams.enableLeftHand = false;
32  defaultParams.enableRightHand = false;
33  // - torso
34  defaultParams.enableTorso = true;
35  // - head (-> should be controlled by GazeController)
36  defaultParams.enableHead = false;
37 
38  std::stringstream desc;
39  desc << "Move all joints to a named configuration of the robot model."
40  << "\n\n"
41  << "The `enable*` parameters can be used to enable/disable movement for different "
42  "body parts of the robot.";
43 
46  .description = desc.str(),
47  .rootProfileDefaults = defaultParams.toAron(),
48  .timeout = ::armarx::Duration::Seconds(30),
49  .parametersType = ParamType::ToAronType(),
50  };
51  }
52 
54  MoveJointsToNamedConfiguration::main(const SpecializedMainInput& in)
55  {
56  const VirtualRobot::RobotPtr robot =
58  if (not robot)
59  {
60  ARMARX_ERROR << "Could not get robot '" << remote.robotName << "'";
61  return MakeFailedResult();
62  }
63 
64  const auto configuration = robot->getConfiguration(in.parameters.configuration);
65  if (not configuration)
66  {
67  ARMARX_ERROR << "Robot '" << remote.robotName << "' does not have configuration '"
68  << in.parameters.configuration << "'.";
69  return MakeFailedResult();
70  }
71 
72  // for every enabled robot part, the nodes of the corresponding RobotNodeSet are enabled
73  std::set<std::string> enabledJoints;
74  const auto addJoints = [&](const std::string& nodeSetName)
75  {
76  if (not robot->hasRobotNodeSet(nodeSetName))
77  {
78  ARMARX_ERROR << "Robot '" << remote.robotName << "' does not have a RobotNodeSet '"
79  << in.parameters.configuration << "'.";
80  }
81  else
82  {
83  const auto robotNodes = robot->getRobotNodeSet(nodeSetName)->getNodeNames();
84  enabledJoints.insert(robotNodes.cbegin(), robotNodes.cend());
85  }
86  };
87 
88  if (in.parameters.enableLeftArm)
89  {
90  addJoints("LeftArm");
91  }
92  if (in.parameters.enableRightArm)
93  {
94  addJoints("RightArm");
95  }
96  if (in.parameters.enableLeftHand)
97  {
98  addJoints("LeftHand");
99  }
100  if (in.parameters.enableRightHand)
101  {
102  addJoints("RightHand");
103  }
104  if (in.parameters.enableTorso)
105  {
106  addJoints("Torso");
107  }
108  if (in.parameters.enableHead)
109  {
110  addJoints("Head");
111  }
112 
113  auto moveJoints =
115  this->manager,
119  });
120  auto subParams = moveJoints.getRootProfileParameters();
121  copy_params(in.parameters, subParams);
122 
123  // apply configuration for all enabled joints
124  for (const auto& [node, value] : *configuration)
125  {
126  if (enabledJoints.count(node))
127  {
128  subParams.jointsTargetValues[node] = value;
129  }
130  }
131 
132  this->callSubskill(moveJoints, subParams.toAron());
133 
134  return MakeSucceededResult();
135  }
136 
137 } // namespace armarx::control::skills::skills
armarx::skills::Skill::manager
manager::dti::SkillManagerInterfacePrx manager
Definition: Skill.h:291
armarx::skills::SimpleSpecializedSkill< arondto::MoveJointsToNamedConfigurationParams >::ParamType
arondto::MoveJointsToNamedConfigurationParams ParamType
Definition: SimpleSpecializedSkill.h:14
SpecializedSkillProxy.h
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
param_conversions.h
armarx::skills::SkillDescription
Definition: SkillDescription.h:17
armarx::control::skills::skills::MoveJointsToNamedConfiguration::Services::virtualRobotReader
::armarx::armem::robot_state::VirtualRobotReader virtualRobotReader
Definition: MoveJointsToNamedConfiguration.h:26
armarx::skills::SkillID::providerId
std::optional< ProviderID > providerId
Definition: SkillID.h:40
armarx::control::skills::constants::MOVE_JOINTS_TO_POSITION_SKILL_NAME
std::string MOVE_JOINTS_TO_POSITION_SKILL_NAME
Definition: constants.cpp:8
armarx::skills::SpecializedSkillProxy::getRootProfileParameters
AronT getRootProfileParameters()
Definition: SpecializedSkillProxy.h:30
armarx::skills::Skill::callSubskill
std::optional< TerminatedSkillStatusUpdate > callSubskill(const skills::SkillProxy &proxy)
Call a subskill with default parameters and block until the subskill terminates.
Definition: Skill.cpp:32
armarx::control::skills::skills::MoveJointsToNamedConfiguration::Services
Definition: MoveJointsToNamedConfiguration.h:24
armarx::control::skills::skills::copy_params
void copy_params(const arondto::MoveJointsParams &from, arondto::MoveJointsToPositionParams &to)
Definition: param_conversions.h:12
MoveJointsToNamedConfiguration.h
armarx::skills::Skill::MakeFailedResult
static MainResult MakeFailedResult()
Definition: Skill.cpp:338
constants.h
armarx::core::time::Duration::Seconds
static Duration Seconds(std::int64_t seconds)
Constructs a duration in seconds.
Definition: Duration.cpp:72
cxxopts::value
std::shared_ptr< Value > value()
Definition: cxxopts.hpp:855
armarx::control::skills::skills::MoveJointsToNamedConfiguration::GetSkillDescription
::armarx::skills::SkillDescription GetSkillDescription()
Definition: MoveJointsToNamedConfiguration.cpp:24
armarx::skills::SpecializedSkillProxy
Definition: SpecializedSkillProxy.h:10
armarx::armem::robot_state::VirtualRobotReader::getRobotWaiting
VirtualRobot::RobotPtr getRobotWaiting(const std::string &name, const armem::Time &timestamp=armem::Time::Invalid(), const VirtualRobot::RobotIO::RobotDescription &loadMode=VirtualRobot::RobotIO::RobotDescription::eStructure)
In contrast to getRobot(), this function will retry to query the robot until it exists.
Definition: VirtualRobotReader.cpp:105
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::skills::Skill::MakeSucceededResult
static MainResult MakeSucceededResult(aron::data::DictPtr data=nullptr)
Definition: Skill.cpp:329
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
armarx::control::skills::skills::MoveJointsToNamedConfiguration::MoveJointsToNamedConfiguration
MoveJointsToNamedConfiguration(const Services &remote)
Definition: MoveJointsToNamedConfiguration.cpp:18
armarx::skills::SimpleSpecializedSkill< arondto::MoveJointsToNamedConfigurationParams >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
armarx::control::skills::constants::MOVE_JOINTS_TO_NAMED_CONFIGURATION_SKILL_NAME
std::string MOVE_JOINTS_TO_NAMED_CONFIGURATION_SKILL_NAME
Definition: constants.cpp:10
armarx::control::skills::skills
Definition: ExecuteTrajectory.cpp:18
armarx::control::skills::skills::MoveJointsToNamedConfiguration::Services::robotName
std::string robotName
Definition: MoveJointsToNamedConfiguration.h:27
Logging.h
armarx::skills::SkillID
Definition: SkillID.h:14
armarx::skills::Skill::getSkillId
SkillID getSkillId() const
Get the id of the skill.
Definition: Skill.cpp:497
VirtualRobot::RobotPtr
std::shared_ptr< class Robot > RobotPtr
Definition: Bus.h:19