MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/core/round.h>
12 #include <mrpt/opengl/CAxis.h>
13 #include <mrpt/opengl/CBox.h>
15 #include <mrpt/opengl/CSphere.h>
16 #include <mrpt/opengl/CText.h>
18 #include <mrpt/system/CObserver.h>
19 #include <mrpt/system/CTicTac.h>
20 #include <mrpt/system/os.h>
21 #include <iostream>
22 
23 using namespace std;
24 using namespace mrpt;
25 using namespace mrpt::gui;
26 using namespace mrpt::opengl;
27 using namespace mrpt::system;
28 
29 // This is my custom class to handle the pre/post render events:
31 {
32  opengl::CSphere::Ptr ball_obj; // The ball moving in the scene
33 
35  void OnEvent(const mrptEvent& e) override
36  {
38  {
39  // const mrptEventGLPreRender* ev = e.getAs<mrptEventGLPreRender>();
40  // ev-> ...
41  }
42  else if (e.isOfType<mrptEventGLPostRender>())
43  {
44  // const mrptEventGLPostRender* ev =
45  // e.getAs<mrptEventGLPostRender>();
46  }
47  }
48 };
49 
50 // ------------------------------------------------------
51 // TestDisplay3D
52 // ------------------------------------------------------
53 void TestDisplay3D()
54 {
55  CDisplayWindow3D win("Example of 3D Scene Visualization - MRPT", 640, 480);
56 
57  COpenGLScene::Ptr& theScene = win.get3DSceneAndLock();
58 
59  // The unique instance of the observer class:
60  TMyExtraRenderingStuff my_extra_rendering;
61 
62  // And start subscribing to the viewport events:
63  opengl::COpenGLViewport::Ptr the_main_view = theScene->getViewport("main");
64  my_extra_rendering.observeBegin(*the_main_view);
65 
66  // Modify the scene:
67  // ------------------------------------------------------
68  {
70  opengl::CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
71  obj->setColor(0.8f, 0.8f, 0.8f);
72  theScene->insert(obj);
73  }
74 
75  theScene->insert(mrpt::opengl::stock_objects::CornerXYZ());
76 
77  if (true)
78  {
79  opengl::CAxis::Ptr obj = opengl::CAxis::Create();
80  obj->setFrequency(5);
81  obj->enableTickMarks();
82  obj->setAxisLimits(-10, -10, -10, 10, 10, 10);
83  theScene->insert(obj);
84  }
85 
86  {
87  opengl::CSphere::Ptr obj = opengl::CSphere::Create();
88  obj->setColor(0, 0, 1);
89  obj->setRadius(0.3f);
90  obj->setLocation(0, 0, 1);
91  obj->setName("ball_1");
92  theScene->insert(obj);
93 
94  // And also let my rendering object access this ball properties:
95  my_extra_rendering.ball_obj = obj;
96  }
97 
98  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
99  win.unlockAccess3DScene();
100 
101  // Texts:
102  win.addTextMessage(0.01, 0.85, "This is a 2D message", 0 /*id */);
103 
104  win.setCameraElevationDeg(25.0f);
105  // win.setCameraProjective(false);
106 
107  win.addTextMessage(0.7, 0.9, "Press 'h' for help", 1 /*id*/);
108 
109  cout << endl;
110  cout << "Control with mouse or keyboard. Valid keys:" << endl;
111  cout << " ESC -> Exit" << endl;
112  cout << " Left/right cursor arrow -> Camera azimuth" << endl;
113  cout << endl;
114 
115  bool end = false;
116 
117  CTicTac timer;
118  timer.Tic();
119 
120  while (!end && win.isOpen())
121  {
122  // Move the scene:
123  COpenGLScene::Ptr& theScene = win.get3DSceneAndLock();
124 
125  opengl::CRenderizable::Ptr obj1 = theScene->getByName("ball_1");
126  const double t = timer.Tac();
127  const double R = 8;
128  const double W = 5.0, Q = 3.3;
129  obj1->setLocation(
130  R * cos(W * t) * sin(Q * t), R * sin(W * t),
131  R * cos(W * t) * cos(Q * t));
132 
133  // Update the texts on the gl display:
134  win.addTextMessage(
135  5, 5, mrpt::format("FPS=%5.02f", win.getRenderingFPS()), 0);
136 
137  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
138  win.unlockAccess3DScene();
139 
140  // Update window:
141  win.forceRepaint();
142  std::this_thread::sleep_for(1ms);
143 
144  if (mrpt::system::os::kbhit()) end = true;
145  if (win.keyHit())
146  {
147  mrptKeyModifier kmods;
148  int key = win.getPushedKey(&kmods);
149  // printf("Key pushed: %c (%i) - modifiers:
150  // 0x%04X\n",char(key),key,kmods);
151 
152  if (key == MRPTK_ESCAPE) end = true;
153 
154  if (key == 'h' || key == 'H')
155  {
156  std::cout << "These are the supported commands:\n"
157  " - 'h': Toogle help view\n"
158  " - '<-' and '->': Rotate camera\n"
159  " - 'Alt+Enter': Toogle fullscreen\n"
160  " - 'ESC': Quit"
161  "\n";
162  }
163 
164  if (key == MRPTK_RIGHT)
165  win.setCameraAzimuthDeg(win.getCameraAzimuthDeg() + 5);
166  if (key == MRPTK_LEFT)
167  win.setCameraAzimuthDeg(win.getCameraAzimuthDeg() - 5);
168  }
169  };
170 }
171 
172 // ------------------------------------------------------
173 // MAIN
174 // ------------------------------------------------------
175 int main()
176 {
177  try
178  {
179  TestDisplay3D();
180  // leave time for the window to close
181  std::this_thread::sleep_for(50ms);
182  return 0;
183  }
184  catch (const std::exception& e)
185  {
186  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
187  return -1;
188  }
189  catch (...)
190  {
191  printf("Untyped exception!!");
192  return -1;
193  }
194 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
The basic event type for the observer-observable pattern in MRPT.
Definition: mrptEvent.h:31
A high-performance stopwatch, with typical resolution of nanoseconds.
mrptKeyModifier
Definition: keycodes.h:156
STL namespace.
Inherit from this class to get notified about events from any CObservable object after subscribing to...
Definition: CObserver.h:34
mrpt::gui::CDisplayWindow3D::Ptr win
const_iterator end() const
Definition: ts_hash_map.h:246
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
An event sent by an mrpt::opengl::COpenGLViewport just after clearing the viewport and setting the GL...
const float R
CSetOfObjects::Ptr CornerXYZ(float scale=1.0)
Returns three arrows representing a X,Y,Z 3D corner.
bool isOfType() const
Definition: mrptEvent.h:41
An event sent by an mrpt::opengl::COpenGLViewport after calling the scene OpenGL drawing primitives a...
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
void observeBegin(CObservable &obj)
Starts the subscription of this observer to the given object.
Definition: CObserver.cpp:26
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
void TestDisplay3D()
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020