HandControlSkillProvider.cpp
Go to the documentation of this file.
1
#include "
HandControlSkillProvider.h
"
2
3
#include <
RobotAPI/libraries/aron/core/type/variant/container/Object.h
>
4
#include <
RobotAPI/libraries/aron/core/type/variant/primitive/String.h
>
5
#include <
RobotAPI/libraries/aron/converter/json/NLohmannJSONConverter.h
>
6
7
//#include <RobotAPI/libraries/armem/client/MemoryNameSystem.h>
8
#include <
RobotAPI/libraries/armem/client.h
>
9
10
namespace
armarx::skills::provider
11
{
12
armarx::PropertyDefinitionsPtr
HandControlSkillProvider::createPropertyDefinitions
()
13
{
14
armarx::PropertyDefinitionsPtr
defs =
new
ComponentPropertyDefinitions
(
getConfigIdentifier
());
15
16
handControlSkillContext.
defineProperties
(defs,
"handControlSkills."
);
17
18
return
defs;
19
}
20
21
std::string
HandControlSkillProvider::getDefaultName
()
const
22
{
23
return
"HandControlSkillProvider"
;
24
}
25
26
void
HandControlSkillProvider::onInitComponent
()
27
{
28
handControlSkillContext.
onInit
(*
this
);
29
}
30
31
void
HandControlSkillProvider::onConnectComponent
()
32
{
33
handControlSkillContext.
onConnected
(*
this
);
34
35
// Add move skill
36
addSkill(std::make_unique<OpenHand>(handControlSkillContext));
37
addSkill(std::make_unique<CloseHand>(handControlSkillContext));
38
39
}
40
41
void
HandControlSkillProvider::onDisconnectComponent
()
42
{
43
44
}
45
46
void
HandControlSkillProvider::onExitComponent
()
47
{}
48
}
client.h
armarx::skills::provider::HandControlSkillProvider::onConnectComponent
void onConnectComponent() override
Pure virtual hook for the subclass.
Definition:
HandControlSkillProvider.cpp:31
String.h
armarx::skills::SkillContext::onInit
virtual void onInit(armarx::Component &parent)
Definition:
SkillContext.h:21
armarx::skills::SkillContext::onConnected
virtual void onConnected(armarx::Component &parent)
Definition:
SkillContext.h:22
NLohmannJSONConverter.h
armarx::skills::provider::HandControlSkillProvider::onExitComponent
void onExitComponent() override
Hook for subclass.
Definition:
HandControlSkillProvider.cpp:46
armarx::skills::provider::HandControlSkillProvider::onDisconnectComponent
void onDisconnectComponent() override
Hook for subclass.
Definition:
HandControlSkillProvider.cpp:41
Object.h
armarx::skills::provider
Definition:
BusyWaiting.cpp:6
armarx::skills::provider::HandControlSkillProvider::onInitComponent
void onInitComponent() override
Pure virtual hook for the subclass.
Definition:
HandControlSkillProvider.cpp:26
armarx::skills::provider::HandControlSkillProvider::getDefaultName
std::string getDefaultName() const override
Definition:
HandControlSkillProvider.cpp:21
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition:
Component.cpp:74
armarx::ComponentPropertyDefinitions
Default component property definition container.
Definition:
Component.h:70
armarx::skills::provider::HandControlSkillProvider::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition:
HandControlSkillProvider.cpp:12
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::skills::HandControlSkillContext::defineProperties
void defineProperties(const armarx::PropertyDefinitionsPtr &defs, const std::string &prefix) final
Definition:
HandControlSkill.h:50
HandControlSkillProvider.h
RobotSkillTemplates
components
HandControlSkillProvider
HandControlSkillProvider.cpp
Generated on Sat Oct 12 2024 09:14:13 for armarx_documentation by
1.8.17