GuidingWithCollAvoidance.cpp
Go to the documentation of this file.
2 
3 #include <SimoxUtility/json/json.hpp>
4 
8 
10 {
11 
13  ::armarx::skills::SimpleSpecializedSkill<ParamType>(GetSkillDescription()), srv_(srv)
14  {
15  }
16 
18  GuidingWithCollAvoidance::exit(const SpecializedExitInput& in)
19  {
20 
21  return {::armarx::skills::TerminatedSkillStatus::Succeeded};
22  }
23 
25  GuidingWithCollAvoidance::main(const SpecializedMainInput& in)
26  {
27  ARMARX_INFO << "in main of execute trajectory";
29 
30  // create controller
31  std::string controllerNamePrefix = "Guiding";
33  const std::string controllerClassName = common::ControllerTypeNames.to_name(controllerType);
34  auto builder = srv_.controlComponentPluginUser->createControllerBuilder<controllerType>();
35 
36  std::string suffix;
37  if (in.parameters.mode == arondto::GuidingMode::left_arm)
38  {
39  suffix = "_left";
40  }
41  else if (in.parameters.mode == arondto::GuidingMode::right_arm)
42  {
43  suffix = "_right";
44  }
45  else
46  {
47  suffix = "";
48  }
49 
50  auto const configFileName = "/default_a7" + suffix + "_zero_torque.json";
51  const armarx::PackagePath configPath(
52  "armarx_control", "controller_config/" + controllerClassName + configFileName);
53  auto ctrl = builder.createGetTSComplianceCtrl(
54  controllerNamePrefix, nullptr, configPath.toSystemPath());
55 
58  while (not shouldSkillTerminate())
59  {
61  }
62  ctrl->deactivateAndDeleteController();
63 
64  return MakeSucceededResult();
65  }
66 
67 
68 } // namespace armarx::control::skills::skills
skills
This file is part of ArmarX.
armarx::skills::SimpleSpecializedSkill< arondto::GuidingWithCollAvoidanceParams >::ParamType
arondto::GuidingWithCollAvoidanceParams ParamType
Definition: SimpleSpecializedSkill.h:14
armarx::core::time::Clock::WaitFor
static void WaitFor(const Duration &duration)
Wait for a certain duration on the virtual clock.
Definition: Clock.cpp:99
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
aron_conversions.h
armarx::control::skills::skills::GuidingWithCollAvoidance::GuidingWithCollAvoidance
GuidingWithCollAvoidance(const Services &)
Definition: GuidingWithCollAvoidance.cpp:12
armarx::skills::SimpleSpecializedSkill< arondto::GuidingWithCollAvoidanceParams >::exit
Skill::ExitResult exit() final
Definition: SimpleSpecializedSkill.h:81
armarx::control::common::ControllerTypeNames
const simox::meta::EnumNames< ControllerType > ControllerTypeNames
Definition: type.h:111
ARMARX_TRACE
#define ARMARX_TRACE
Definition: trace.h:77
armarx::control::common::ControllerType::TSMixImpVelCol
@ TSMixImpVelCol
armarx::control::client::ComponentPlugin::createControllerBuilder
auto createControllerBuilder(Args... args)
Definition: ComponentPlugin.h:81
armarx::control::skills::skills::GuidingWithCollAvoidance::Services
Definition: GuidingWithCollAvoidance.h:26
ShapeHand.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
GuidingWithCollAvoidance.h
armarx::skills::Skill::ExitResult
A result struct for skill exit function.
Definition: Skill.h:46
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::skills::SimpleSpecializedSkill< arondto::GuidingWithCollAvoidanceParams >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
armarx::control::skills::skills
Definition: ExecuteTrajectory.cpp:18
armarx::skills::Skill::shouldSkillTerminate
bool shouldSkillTerminate() const
Returns whether the skill should terminate as soon as possible.
Definition: Skill.cpp:385
armarx::skills::Skill::throwIfSkillShouldTerminate
void throwIfSkillShouldTerminate(const std::string &abortedMessage="")
Definition: Skill.cpp:305
armarx::PackagePath
Definition: PackagePath.h:52
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
armarx::control::skills::skills::GuidingWithCollAvoidance::Services::controlComponentPluginUser
::armarx::control::client::ComponentPlugin * controlComponentPluginUser
Definition: GuidingWithCollAvoidance.h:28
controller_descriptions.h