29 #include <ArmarXCore/interface/observers/ConditionHandlerInterface.h>
31 #include <ArmarXSimulation/interface/simulator/SimulatorInterface.h>
33 #include <MemoryX/interface/components/PriorKnowledgeInterface.h>
34 #include <MemoryX/interface/components/WorkingMemoryInterface.h>
35 #include <MemoryX/interface/observers/ObjectMemoryObserverInterface.h>
45 defineRequiredProperty<std::string>(
46 "SceneModificationType",
47 "Possible modes are 'addObject', 'removeObject', and 'moveObject'. No object "
48 "manipulation with 'none'.");
49 defineRequiredProperty<std::string>(
"ObjectClassName",
50 "Name of object class in PriorKnowledge");
51 defineRequiredProperty<std::string>(
"ObjectInstanceName",
52 "Name of object instance in working memory");
53 defineOptionalProperty<float>(
"PositionX", 0.0f,
"Position of object (x)");
54 defineOptionalProperty<float>(
"PositionY", 0.0f,
"Position of object (y)");
55 defineOptionalProperty<float>(
"PositionZ", 0.0f,
"Position of object (z)");
56 defineOptionalProperty<float>(
"OrientationRoll", 0.0f,
"Orientation of object (roll)");
57 defineOptionalProperty<float>(
58 "OrientationPitch", 0.0f,
"Orientation of object (pitch)");
59 defineOptionalProperty<float>(
"OrientationYaw", 0.0f,
"Orientation of object (yaw)");
60 defineOptionalProperty<bool>(
"StaticObject",
62 "Specify if the object is static (fixed in the world) or "
63 "dynamic (can move in the world)");
64 defineOptionalProperty<std::string>(
67 "Name of the WorkingMemory component that should be used");
68 defineOptionalProperty<std::string>(
71 "Name of the PriorKnowledge component that should be used");
72 defineOptionalProperty<std::string>(
75 "Name of the Simulator component that should be used");
78 for (
int i = 0; i < 10; i++)
80 std::stringstream ss1;
81 ss1 <<
"SceneModificationType_" << i;
82 defineOptionalProperty<std::string>(
85 "Optional additional object. Possible modes are 'addObject', 'removeObject', "
86 "and 'moveObject'. No object manipulation with 'none'.");
88 std::stringstream ss2;
89 ss2 <<
"ObjectClassName_" << i;
90 defineOptionalProperty<std::string>(
93 "Optional additional object. Name of object class in PriorKnowledge");
95 std::stringstream ss3;
96 ss3 <<
"ObjectInstanceName_" << i;
97 defineOptionalProperty<std::string>(
100 "Optional additional object. Name of object instance in working memory");
102 std::stringstream ss4;
103 ss4 <<
"PositionX_" << i;
104 defineOptionalProperty<float>(
105 ss4.str(), 0.0f,
"Optional additional object. Position of object (x)");
107 std::stringstream ss5;
108 ss5 <<
"PositionY_" << i;
109 defineOptionalProperty<float>(
110 ss5.str(), 0.0f,
"Optional additional object. Position of object (y)");
112 std::stringstream ss6;
113 ss6 <<
"PositionZ_" << i;
114 defineOptionalProperty<float>(
115 ss6.str(), 0.0f,
"Optional additional object. Position of object (z)");
117 std::stringstream ss7;
118 ss7 <<
"OrientationRoll_" << i;
119 defineOptionalProperty<float>(
120 ss7.str(), 0.0f,
"Optional additional object. Orientation of object (roll)");
122 std::stringstream ss8;
123 ss8 <<
"OrientationPitch_" << i;
124 defineOptionalProperty<float>(
125 ss8.str(), 0.0f,
"Optional additional object. Orientation of object (pitch)");
127 std::stringstream ss9;
128 ss9 <<
"OrientationYaw_" << i;
129 defineOptionalProperty<float>(
130 ss9.str(), 0.0f,
"Optional additional object. Orientation of object (yaw)");
132 std::stringstream ss10;
133 ss10 <<
"StaticObject_" << i;
134 defineOptionalProperty<bool>(
137 "Optional additional object. Specify if the object is static (fixed in the "
138 "world) or dynamic (can move in the world)");
141 defineOptionalProperty<bool>(
144 "Start localization of object. This will make the object visible in the WM gui.");
145 defineOptionalProperty<int>(
146 "LocalizeObject_seconds", 10,
"How long should the object be localized");
148 defineOptionalProperty<std::string>(
"AttachObjectToRobot.ObjectName",
150 "Attach object to robot: object instance name");
151 defineOptionalProperty<std::string>(
152 "AttachObjectToRobot.RobotName",
"",
"Attach object to robot: name of robot");
153 defineOptionalProperty<std::string>(
154 "AttachObjectToRobot.RobotNodeName",
156 "Attach object to robot: name of RobotNode (i.e. tcp)");
192 return "SceneModifier";
195 void onInitComponent()
override;
196 void onExitComponent()
override;
197 void onConnectComponent()
override;
199 void onDisconnectComponent()
override;
204 void addObject(
const std::string& suffix);
205 void removeObject(
const std::string& suffix);
206 void moveObject(
const std::string& suffix);
214 void localizeSingleObject(
const std::string& objClass,
int sleepS);
215 void attachObject(
const std::string& objName,
216 const std::string& robotName,
217 const std::string& robotNodeName);
218 bool checkForConfigs(
const std::string& suffix);
219 bool getStatic(
const std::string& suffix);