HomePose.cpp
Go to the documentation of this file.
1 #include "HomePose.h"
2 
4 
5 #include <armarx/control/skills/aron/MoveJointsToNamedConfigurationParams.aron.generated.h>
6 #include <armarx/control/skills/aron/ShapeHandParams.aron.generated.h>
9 
11 {
12 
13  HomePose::HomePose() : SimpleSpecializedSkill(GetSkillDescription())
14  {
15  }
16 
19  {
20  ParamType defaultParams;
21 
22  std::stringstream desc;
23  desc << "Move all joints to a natural idle position that also allows "
24  "safe movement and safe bus crashes."
25  << "\n\n"
26  << "The `enable*` parameters can be used to enable/disable movement for different "
27  "body parts of the robot.";
28 
31  .description = desc.str(),
32  .rootProfileDefaults = defaultParams.toAron(),
33  .timeout = ::armarx::Duration::Seconds(30),
34  .parametersType = ParamType::ToAronType(),
35  };
36  }
37 
39  HomePose::main(const SpecializedMainInput& in)
40  {
41  auto moveToConfiguration = armarx::skills::SpecializedSkillProxy<
42  armarx::control::skills::arondto::MoveJointsToNamedConfigurationParams>(
43  this->manager,
47  });
48 
50  armarx::control::skills::arondto::ShapeHandParams>(
51  this->manager,
55  });
56 
57  auto subParams = moveToConfiguration.getRootProfileParameters();
58  subParams.configuration = "Home";
59 
60  subParams.enableHead =
61  true; // should be via gaze controller, but due to dependency chain, this skill would have to be moved
62  subParams.enableLeftHand = false; // via hand unit
63  subParams.enableRightHand = false; // via hand unit
64 
65  copy_params(in.parameters, subParams);
66 
67  auto openHandParams = openHand.getRootProfileParameters();
68  openHandParams.shapeName = "Open";
69 
70  auto openHandParamsLeft = openHandParams;
71  openHandParamsLeft.hand = armarx::control::skills::arondto::Hand::Left;
72 
73  auto openHandParamsRight = openHandParams;
74  openHandParamsLeft.hand = armarx::control::skills::arondto::Hand::Right;
75 
76  this->callSubskill(openHand, openHandParamsLeft.toAron());
77  this->callSubskill(openHand, openHandParamsRight.toAron());
78  this->callSubskill(moveToConfiguration, subParams.toAron());
79 
80  return MakeSucceededResult();
81  }
82 
83 } // namespace armarx::control::skills::skills::meta
armarx::skills::Skill::manager
manager::dti::SkillManagerInterfacePrx manager
Definition: Skill.h:291
armarx::skills::SimpleSpecializedSkill< arondto::NamedConfigurationParams >::ParamType
arondto::NamedConfigurationParams 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::skills::SkillID::providerId
std::optional< ProviderID > providerId
Definition: SkillID.h:40
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::copy_params
void copy_params(const arondto::MoveJointsParams &from, arondto::MoveJointsToPositionParams &to)
Definition: param_conversions.h:12
constants.h
armarx::core::time::Duration::Seconds
static Duration Seconds(std::int64_t seconds)
Constructs a duration in seconds.
Definition: Duration.cpp:72
armarx::control::skills::constants::HOME_POSE_SKILL_NAME
std::string HOME_POSE_SKILL_NAME
Definition: constants.cpp:16
armarx::control::skills::skills::meta::HomePose::GetSkillDescription
::armarx::skills::SkillDescription GetSkillDescription()
Definition: HomePose.cpp:18
armarx::skills::SpecializedSkillProxy
Definition: SpecializedSkillProxy.h:10
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
HomePose.h
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::constants::SHAPE_HAND_SKILL_NAME
std::string SHAPE_HAND_SKILL_NAME
Definition: constants.cpp:12
armarx::skills::SimpleSpecializedSkill< arondto::NamedConfigurationParams >::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::meta
Definition: HomePose.cpp:10
armarx::skills::SkillID
Definition: SkillID.h:14
armarx::control::skills::skills::meta::HomePose::HomePose
HomePose()
Definition: HomePose.cpp:13
Left
bool Left(const point2d &a, const point2d &b, const point2d &c)
Definition: gdiam.cpp:1570
armarx::skills::Skill::getSkillId
SkillID getSkillId() const
Get the id of the skill.
Definition: Skill.cpp:497