Component.h
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 Navigation::ArmarXObjects::ControlMemory
17  * @author Fabian Reister ( fabian dot reister at kit dot edu )
18  * @date 2021
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #pragma once
24 
27 
29 
33 // #include <ArmarXCore/libraries/ArmarXCoreComponentPlugins/DebugObserverComponentPlugin.h>
34 
35 #include <mutex>
36 
38 {
39 
40  /**
41  * @defgroup Component-ControlMemory ControlMemory
42  * @ingroup armarx_navigation-Components
43  * A description of the component ControlMemory.
44  *
45  * @class ControlMemory
46  * @ingroup Component-ControlMemory
47  * @brief Brief description of class ControlMemory.
48  *
49  * Detailed description of class ControlMemory.
50  */
51  class Component :
52  virtual public armarx::Component
53  // , virtual public armarx::DebugObserverComponentPluginUser
54  ,
56  virtual public armarx::ArVizComponentPluginUser,
58  {
59  public:
60  /// @see armarx::ManagedIceObject::getDefaultName()
61  std::string getDefaultName() const override;
62  static std::string GetDefaultName();
63 
64 
65  protected:
66  /// @see PropertyUser::createPropertyDefinitions()
68 
69  /// @see armarx::ManagedIceObject::onInitComponent()
70  void onInitComponent() override;
71 
72  /// @see armarx::ManagedIceObject::onConnectComponent()
73  void onConnectComponent() override;
74 
75  /// @see armarx::ManagedIceObject::onDisconnectComponent()
76  void onDisconnectComponent() override;
77 
78  /// @see armarx::ManagedIceObject::onExitComponent()
79  void onExitComponent() override;
80 
81 
82  void createRemoteGuiTab();
83  void RemoteGui_update() override;
84 
85 
86  private:
87  void visuRun();
88 
89  void loadDefaultConfigs();
90 
91 
92  private:
93  /// Properties shown in the Scenario GUI.
94  struct Properties
95  {
96  std::string snapshotToLoad = "";
97 
99  {
100  bool visuLocations = true;
101  bool visuGraphEdges = true;
102  float visuFrequency = 2;
103  };
104 
105  LocationGraph locationGraph;
106  };
107 
108  Properties properties;
109  std::mutex propertiesMutex;
110 
111  /// Tab shown in the Remote GUI.
112  struct RemoteGuiTab : armarx::RemoteGui::Client::Tab
113  {
115  {
117 
120 
121  void setup(Component& owner);
122  void update(Component& owner);
123  };
124 
125  LocationGraph locationGraph;
126  };
127 
128  RemoteGuiTab tab;
129 
130  struct Tasks
131  {
133  };
134 
135  Tasks tasks;
136  };
137 
138 } // namespace armarx::control::components::control_memory
ArVizComponentPlugin.h
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph
Definition: Component.h:114
armarx::control::components::control_memory::Component::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: Component.cpp:66
ReadWritePluginUser.h
armarx::control::components::control_memory::Component::onExitComponent
void onExitComponent() override
Definition: Component.cpp:466
plugins.h
armarx::RemoteGui::Client::Tab
Definition: Tab.h:15
armarx::control::components::control_memory::Component::onInitComponent
void onInitComponent() override
Definition: Component.cpp:95
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph::visuLocations
armarx::RemoteGui::Client::CheckBox visuLocations
Definition: Component.h:118
armarx::control::components::control_memory
Definition: Component.cpp:61
armarx::control::components::control_memory::Component::RemoteGui_update
void RemoteGui_update() override
Definition: Component.cpp:497
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph::group
armarx::RemoteGui::Client::GroupBox group
Definition: Component.h:116
LightweightRemoteGuiComponentPlugin.h
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph::visuGraphEdges
armarx::RemoteGui::Client::CheckBox visuGraphEdges
Definition: Component.h:119
armarx::control::components::control_memory::Component::onDisconnectComponent
void onDisconnectComponent() override
Definition: Component.cpp:461
armarx::control::components::control_memory::Component::Properties::LocationGraph::visuLocations
bool visuLocations
Definition: Component.h:100
armarx::ArVizComponentPluginUser
Provides a ready-to-use ArViz client arviz as member variable.
Definition: ArVizComponentPlugin.h:35
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph::update
void update(Component &owner)
Definition: Component.cpp:523
armarx::control::components::control_memory::Component::Properties::LocationGraph::visuFrequency
float visuFrequency
Definition: Component.h:102
armarx::armem::server::plugins::ReadWritePluginUser
Base class of memory server components.
Definition: ReadWritePluginUser.h:20
armarx::RemoteGui::Client::GroupBox
Definition: Widgets.h:193
armarx::control::components::control_memory::Component::onConnectComponent
void onConnectComponent() override
Definition: Component.cpp:434
armarx::control::components::control_memory::Component
Definition: Component.h:51
TaskUtil.h
armarx::LightweightRemoteGuiComponentPluginUser
Definition: LightweightRemoteGuiComponentPlugin.h:72
armarx::control::components::control_memory::Component::getDefaultName
std::string getDefaultName() const override
Definition: Component.cpp:471
Component.h
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
armarx::control::components::control_memory::Component::RemoteGuiTab::LocationGraph::setup
void setup(Component &owner)
Definition: Component.cpp:503
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::control::components::control_memory::Component::GetDefaultName
static std::string GetDefaultName()
Definition: Component.cpp:477
armarx::RemoteGui::Client::CheckBox
Definition: Widgets.h:129
armarx::control::components::control_memory::Component::Properties::LocationGraph
Definition: Component.h:98
armarx::control::components::control_memory::Component::Properties::LocationGraph::visuGraphEdges
bool visuGraphEdges
Definition: Component.h:101
armarx::control::components::control_memory::Component::createRemoteGuiTab
void createRemoteGuiTab()
Definition: Component.cpp:483