Component.cpp
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package control::ArmarXObjects::retrieve_hand_skill_provider
17  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
18  * @date 2023
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 
24 #include "Component.h"
25 
26 // Include headers you only need in function definitions in the .cpp.
27 
28 // #include <Eigen/Core>
29 
30 // #include <SimoxUtility/color/Color.h>
31 
33 
35 
37 {
38 
39  const std::string Component::defaultName = "retrieve_hand_skill_provider";
40 
43  {
45  new ::armarx::ComponentPropertyDefinitions(getConfigIdentifier());
46 
47  def->component(remote.robotUnit, "Armar7Unit");
48  def->optional(properties.retrieveHandSkillProviderName, "retrieveHandSkillProvider");
49  // Publish to a topic (passing the TopicListenerPrx).
50  // def->topic(myTopicListener);
51 
52  // Subscribe to a topic (passing the topic name).
53  // def->topic<PlatformUnitListener>("MyTopic");
54 
55  // Use (and depend on) another component (passing the ComponentInterfacePrx).
56  // def->component(myComponentProxy)
57 
58 
59  // Add a required property. (The component won't start without a value being set.)
60  // def->required(properties.boxLayerName, "p.box.LayerName", "Name of the box layer in ArViz.");
61 
62  // Add an optional property.
63  // def->optional(properties.boxLayerName, "p.box.LayerName", "Name of the box layer in ArViz.");
64  // def->optional(properties.numBoxes, "p.box.Number", "Number of boxes to draw in ArViz.");
65 
66  return def;
67  }
68 
69  void
71  {
72  // Topics and properties defined above are automagically registered.
73 
74  // Keep debug observer data until calling `sendDebugObserverBatch()`.
75  // (Requires the armarx::DebugObserverComponentPluginUser.)
76  // setDebugObserverBatchModeEnabled(true);
77  }
78 
79  void
81  {
82  // Do things after connecting to topics and components.
83 
84  namespace rh = ::armarx::control::retrieve_hand::skills;
85 
86 
87  rh::RetrieveHand::Remote r;
88 
89  // r.arviz = this->arviz;
90  r.robotUnit = remote.robotUnit;
91  r.memoryNameSystem = memoryNameSystem();
92 
93  // rh::skills::RetrieveHand::Properties p;
94  // p.robotName =
95  // = properties.retrieveHandSkillProviderName;
96  // p.viewSelectionSkillProviderName = properties.viewSelectionSkillProviderName;
97 
98  // addSkillFactory<ho::skills::HandOverObjectToHuman>(r, p);
99 
100  // Option 1: Simply add a new instance of the skill.
101  addSkillFactory<rh::RetrieveHand>(r);
102  /* Option 2: Initialize skill after creation, e.g. set parameters, pass remote proxies.
103  {
104  skills::RetrieveHand* skill = addSkill<skills::RetrieveHand>();
105  skill->connectTo(...);
106  }
107  */
108 
109  /* (Requires the armarx::DebugObserverComponentPluginUser.)
110  // Use the debug observer to log data over time.
111  // The data can be viewed in the ObserverView and the LivePlotter.
112  // (Before starting any threads, we don't need to lock mutexes.)
113  {
114  setDebugObserverDatafield("numBoxes", properties.numBoxes);
115  setDebugObserverDatafield("boxLayerName", properties.boxLayerName);
116  sendDebugObserverBatch();
117  }
118  */
119 
120  /* (Requires the armarx::ArVizComponentPluginUser.)
121  // Draw boxes in ArViz.
122  // (Before starting any threads, we don't need to lock mutexes.)
123  drawBoxes(properties, arviz);
124  */
125 
126  /* (Requires the armarx::LightweightRemoteGuiComponentPluginUser.)
127  // Setup the remote GUI.
128  {
129  createRemoteGuiTab();
130  RemoteGui_startRunningTask();
131  }
132  */
133  }
134 
135  void
137  {
138  }
139 
140  void
142  {
143  }
144 
145  std::string
147  {
148  return Component::defaultName;
149  }
150 
151  std::string
153  {
154  return Component::defaultName;
155  }
156 
157  /* (Requires the armarx::LightweightRemoteGuiComponentPluginUser.)
158  void
159  Component::createRemoteGuiTab()
160  {
161  using namespace armarx::RemoteGui::Client;
162 
163  // Setup the widgets.
164 
165  tab.boxLayerName.setValue(properties.boxLayerName);
166 
167  tab.numBoxes.setValue(properties.numBoxes);
168  tab.numBoxes.setRange(0, 100);
169 
170  tab.drawBoxes.setLabel("Draw Boxes");
171 
172  // Setup the layout.
173 
174  GridLayout grid;
175  int row = 0;
176  {
177  grid.add(Label("Box Layer"), {row, 0}).add(tab.boxLayerName, {row, 1});
178  ++row;
179 
180  grid.add(Label("Num Boxes"), {row, 0}).add(tab.numBoxes, {row, 1});
181  ++row;
182 
183  grid.add(tab.drawBoxes, {row, 0}, {2, 1});
184  ++row;
185  }
186 
187  VBoxLayout root = {grid, VSpacer()};
188  RemoteGui_createTab(getName(), root, &tab);
189  }
190 
191 
192  void
193  Component::RemoteGui_update()
194  {
195  if (tab.boxLayerName.hasValueChanged() || tab.numBoxes.hasValueChanged())
196  {
197  std::scoped_lock lock(propertiesMutex);
198  properties.boxLayerName = tab.boxLayerName.getValue();
199  properties.numBoxes = tab.numBoxes.getValue();
200 
201  {
202  setDebugObserverDatafield("numBoxes", properties.numBoxes);
203  setDebugObserverDatafield("boxLayerName", properties.boxLayerName);
204  sendDebugObserverBatch();
205  }
206  }
207  if (tab.drawBoxes.wasClicked())
208  {
209  // Lock shared variables in methods running in separate threads
210  // and pass them to functions. This way, the called functions do
211  // not need to think about locking.
212  std::scoped_lock lock(propertiesMutex);
213  drawBoxes(properties, arviz);
214  }
215  }
216  */
217 
218 
219  /* (Requires the armarx::ArVizComponentPluginUser.)
220  void
221  Component::drawBoxes(const Component::Properties& p, viz::Client& arviz)
222  {
223  // Draw something in ArViz (requires the armarx::ArVizComponentPluginUser.
224  // See the ArVizExample in RobotAPI for more examples.
225 
226  viz::Layer layer = arviz.layer(p.boxLayerName);
227  for (int i = 0; i < p.numBoxes; ++i)
228  {
229  layer.add(viz::Box("box_" + std::to_string(i))
230  .position(Eigen::Vector3f(i * 100, 0, 0))
231  .size(20).color(simox::Color::blue()));
232  }
233  arviz.commit(layer);
234  }
235  */
236 
237 
239 
240 } // namespace armarx::control::components::retrieve_hand_skill_provider
RetrieveHand.h
armarx::control::components::retrieve_hand_skill_provider::ARMARX_REGISTER_COMPONENT_EXECUTABLE
ARMARX_REGISTER_COMPONENT_EXECUTABLE(Component, Component::GetDefaultName())
armarx::control::components::retrieve_hand_skill_provider::Component::onExitComponent
void onExitComponent() override
Definition: Component.cpp:141
armarx::armem::client::plugins::PluginUser::memoryNameSystem
MemoryNameSystem & memoryNameSystem()
Definition: PluginUser.cpp:20
armarx::control::components::retrieve_hand_skill_provider::Component::onDisconnectComponent
void onDisconnectComponent() override
Definition: Component.cpp:136
armarx::control::components::retrieve_hand_skill_provider::Component::GetDefaultName
static std::string GetDefaultName()
Get the component's default name.
Definition: Component.cpp:152
Component.h
armarx::control::components::retrieve_hand_skill_provider
Definition: Component.cpp:36
armarx::control::components::retrieve_hand_skill_provider::Component::getDefaultName
std::string getDefaultName() const override
Definition: Component.cpp:146
armarx::control::components::retrieve_hand_skill_provider::Component
Definition: Component.h:45
armarx::control::components::retrieve_hand_skill_provider::Component::createPropertyDefinitions
::armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: Component.cpp:42
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition: Component.cpp:79
Decoupled.h
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::control::components::retrieve_hand_skill_provider::Component::onConnectComponent
void onConnectComponent() override
Definition: Component.cpp:80
armarx::control::components::retrieve_hand_skill_provider::Component::onInitComponent
void onInitComponent() override
Definition: Component.cpp:70