SimulatorViewerApp.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2013-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXSimulation::application::SimulatorViewer
19  * @author Nikolaus Vahrenkamp ( vahrenkamp at kit dot edu )
20  * @date 2015
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 #pragma once
25 #include <QApplication>
26 
28 
30 
32 
33 #include "ArmarXSimulatorWindow.h"
38 
39 namespace armarx
40 {
43  {
44  public:
45  /**
46  * @see armarx::PropertyDefinitionContainer::PropertyDefinitionContainer()
47  */
50  {
51  defineOptionalProperty<float>(
52  "UpdateRate", 30.0f, "Rate at which the data is polled from the simulator");
53  defineOptionalProperty<bool>(
54  "UseDebugDrawer",
55  false,
56  "Whether to create the debug drawer component for the viewer.");
57  }
58  };
59 
60  /**
61  * @class SimulatorViewerApp
62  * @brief A viewer that visualizes the content of the ArmarX Simulator.
63  *
64  * The application creates an armarx::ArmarXPhysicsWorldVisualization component which connects to the SimulatorVisuUpdate topic
65  * in order to retrieve the visualization stream of the current simulated environment. The simulator data stream is continously processed and
66  * the visualization is updated accordingly. The viewer is capable of generating a complete visualization at any time.
67  * Hence, it can be started from any PC in the network at any time.
68  *
69  *
70  *
71  */
72  class SimulatorViewerApp : public QObject, virtual public armarx::Application
73  {
74  Q_OBJECT
75  public:
76  /**
77  * Constructor
78  */
80 
81  ~SimulatorViewerApp() override;
82 
83  /**
84  * @see armarx::Application::setup()
85  */
86  void setup(const ManagedIceObjectRegistryInterfacePtr& registry,
87  Ice::PropertiesPtr properties) override;
88 
89  /**
90  * Runs the Qt Event Loop
91  */
92  int exec(const ArmarXManagerPtr& armarXManager) override;
93 
94  /*!
95  * \brief interruptCallback Recieve interrupt callbacks to gracefully shut down simulator
96  * \param signal
97  */
98  void interruptCallback(int signal) override;
99 
102  {
103  return PropertyDefinitionsPtr(
105  }
106 
107  private slots:
108  void closeRequest_sent();
109 
110  protected:
111  QCoreApplication* qApplication;
114 
116 
117  // the one and only mutex
119 
121  };
122 } // namespace armarx
armarx::SimulatorViewerApp::exitApplication
bool exitApplication
Definition: SimulatorViewerApp.h:120
ArmarXSimulatorWindow.h
armarx::SimulatorViewerApp::mutex
CoinViewer::RecursiveMutexPtr mutex
Definition: SimulatorViewerApp.h:118
armarx::SimulatorViewerApp::simVisu
ArmarXPhysicsWorldVisualizationPtr simVisu
Definition: SimulatorViewerApp.h:115
armarx::SimulatorViewerApp::qApplication
QCoreApplication * qApplication
Definition: SimulatorViewerApp.h:111
ObjectClass.h
armarx::SimulatorViewerApp::interruptCallback
void interruptCallback(int signal) override
interruptCallback Recieve interrupt callbacks to gracefully shut down simulator
Definition: SimulatorViewerApp.cpp:251
armarx::SimulatorViewerApp::exec
int exec(const ArmarXManagerPtr &armarXManager) override
Runs the Qt Event Loop.
Definition: SimulatorViewerApp.cpp:93
armarx::SimulatorViewerAppPropertyDefinitions::SimulatorViewerAppPropertyDefinitions
SimulatorViewerAppPropertyDefinitions(std::string prefix)
Definition: SimulatorViewerApp.h:48
armarx::SimulatorViewerApp::debugDrawer
memoryx::EntityDrawerComponentPtr debugDrawer
Definition: SimulatorViewerApp.h:113
IceInternal::Handle<::Ice::Properties >
armarx::Application::getDomainName
virtual std::string getDomainName()
Retrieve the domain name used for property parsing.
Definition: Application.cpp:621
ArmarXPhysicsWorldVisualization.h
armarx::SimulatorViewerApp
A viewer that visualizes the content of the ArmarX Simulator.
Definition: SimulatorViewerApp.h:72
armarx::SimulatorViewerApp::setup
void setup(const ManagedIceObjectRegistryInterfacePtr &registry, Ice::PropertiesPtr properties) override
Definition: SimulatorViewerApp.cpp:55
armarx::SimulatorViewerApp::~SimulatorViewerApp
~SimulatorViewerApp() override
Definition: SimulatorViewerApp.cpp:47
armarx::CoinViewer::RecursiveMutexPtr
std::shared_ptr< RecursiveMutex > RecursiveMutexPtr
Definition: CoinViewer.h:51
armarx::SimulatorViewerApp::mainWindow
ArmarXSimulatorWindowPtr mainWindow
Definition: SimulatorViewerApp.h:112
MemoryXCoreObjectFactories.h
armarx::SimulatorViewerApp::createPropertyDefinitions
PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: SimulatorViewerApp.h:101
armarx::Application
Baseclass for all ArmarX applications.
Definition: Application.h:193
armarx::ApplicationPropertyDefinitions
Application property definition container.
Definition: Application.h:101
EntityDrawerComponent.h
IceUtil::Handle< ManagedIceObjectRegistryInterface >
MemoryXTypesObjectFactories.h
ARMARXCORE_IMPORT_EXPORT
#define ARMARXCORE_IMPORT_EXPORT
Definition: ImportExport.h:38
armarx::PropertyDefinitionsPtr
IceUtil::Handle< class PropertyDefinitionContainer > PropertyDefinitionsPtr
PropertyDefinitions smart pointer type.
Definition: forward_declarations.h:35
CoinViewer.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::SimulatorViewerAppPropertyDefinitions
Definition: SimulatorViewerApp.h:41
Application.h
armarx::SimulatorViewerApp::SimulatorViewerApp
SimulatorViewerApp()
Constructor.
Definition: SimulatorViewerApp.cpp:43