GuidingWithCollAvoidance.cpp
Go to the documentation of this file.
1
#include "
GuidingWithCollAvoidance.h
"
2
3
#include <SimoxUtility/json/json.hpp>
4
5
#include <
armarx/control/common/aron_conversions.h
>
6
#include <
armarx/control/njoint_controller/controller_descriptions.h
>
7
#include <
armarx/control/skills/skills/ShapeHand.h
>
8
9
namespace
armarx::control::skills::skills
10
{
11
12
GuidingWithCollAvoidance::GuidingWithCollAvoidance
(
const
Services
& srv) :
13
::
armarx
::
skills
::SimpleSpecializedSkill<
ParamType
>(GetSkillDescription()), srv_(srv)
14
{
15
}
16
17
::armarx::skills::Skill::ExitResult
18
GuidingWithCollAvoidance::exit
(
const
SpecializedExitInput& in)
19
{
20
21
return
{::armarx::skills::TerminatedSkillStatus::Succeeded};
22
}
23
24
::armarx::skills::Skill::MainResult
25
GuidingWithCollAvoidance::main
(
const
SpecializedMainInput& in)
26
{
27
ARMARX_INFO
<<
"in main of execute trajectory"
;
28
ARMARX_TRACE
;
29
30
// create controller
31
std::string controllerNamePrefix =
"Guiding"
;
32
const
auto
controllerType =
armarx::control::common::ControllerType::TSMixImpVelCol
;
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
56
ARMARX_CHECK_NOT_NULL
(ctrl);
57
throwIfSkillShouldTerminate
();
58
while
(not
shouldSkillTerminate
())
59
{
60
armarx::Clock::WaitFor
(
armarx::Duration::MilliSeconds
(100));
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
armarx
control
skills
skills
GuidingWithCollAvoidance.cpp
Generated on Sat Mar 29 2025 09:17:35 for armarx_documentation by
1.8.17