QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgscameracontroller.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscameracontroller.h
3 --------------------------------------
4 Date : July 2017
5 Copyright : (C) 2017 by Martin Dobias
6 Email : wonder dot sk at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSCAMERACONTROLLER_H
17#define QGSCAMERACONTROLLER_H
18
19#include "qgis_3d.h"
20
21#include <Qt3DCore/QEntity>
22#include <Qt3DInput/QMouseEvent>
23#include <QImage>
24
25#ifndef SIP_RUN
26namespace Qt3DInput
27{
28 class QKeyEvent;
29 class QKeyboardHandler;
30 class QMouseEvent;
31 class QMouseHandler;
32 class QWheelEvent;
33} // namespace Qt3DInput
34
35namespace Qt3DRender
36{
37 class QCamera;
38}
39
40#endif
41
42#include "qgscamerapose.h"
43
44class QDomDocument;
45class QDomElement;
46
47class QgsCameraPose;
48class QgsVector3D;
50class Qgs3DMapScene;
51
56#ifndef SIP_RUN
57class _3D_EXPORT QgsCameraController : public Qt3DCore::QEntity
58{
59#else
60class _3D_EXPORT QgsCameraController : public QObject
61{
62#endif
63
64 Q_OBJECT
65 public:
69
70#ifndef SIP_RUN
71
76 Qt3DRender::QCamera *camera() const { return mCamera; }
77#endif
78
83 Qgis::NavigationMode cameraNavigationMode() const { return mCameraNavigationMode; }
84
89 double cameraMovementSpeed() const { return mCameraMovementSpeed; }
90
95 void setCameraMovementSpeed( double movementSpeed );
96
101 Qgis::VerticalAxisInversion verticalAxisInversion() const { return mVerticalAxisInversion; }
102
107 void setVerticalAxisInversion( Qgis::VerticalAxisInversion inversion );
108
110 void frameTriggered( float dt );
111
113 void resetView( float distance );
114
116 void setViewFromTop( float worldX, float worldY, float distance, float yaw = 0 );
117
119 QgsVector3D lookingAtPoint() const;
120
127 void setLookingAtPoint( const QgsVector3D &point, float distance, float pitch, float yaw );
128
133 void setCameraPose( const QgsCameraPose &camPose );
134
139 QgsCameraPose cameraPose() const { return mCameraPose; }
140
146 float distance() const { return mCameraPose.distanceFromCenterPoint(); }
147
153 float pitch() const { return mCameraPose.pitchAngle(); }
154
160 float yaw() const { return mCameraPose.headingAngle(); }
161
163 QDomElement writeXml( QDomDocument &doc ) const;
165 void readXml( const QDomElement &elem );
166
168 void zoom( float factor );
170 void tiltUpAroundViewCenter( float deltaPitch );
172 void rotateAroundViewCenter( float deltaYaw );
174 void setCameraHeadingAngle( float angle );
176 void moveView( float tx, float ty );
177
182 void walkView( double tx, double ty, double tz );
183
190 void rotateCamera( float diffPitch, float diffYaw );
191
197 bool willHandleKeyEvent( QKeyEvent *event );
198
205 void setOrigin( const QgsVector3D &origin );
206
207 public slots:
208
213 void setCameraNavigationMode( Qgis::NavigationMode navigationMode );
214
219 void depthBufferCaptured( const QImage &depthImage );
220
221 private:
222#ifdef SIP_RUN
225#endif
226
227 void updateCameraFromPose();
228 void moveCameraPositionBy( const QVector3D &posDiff );
230 QWindow *window() const;
231
233 enum class MouseOperation
234 {
235 None = 0, // no operation
236 Translation, // left button pressed, no modifier
237 RotationCamera, // left button pressed + ctrl modifier
238 RotationCenter, // left button pressed + shift modifier
239 Zoom, // right button pressed
240 ZoomWheel // mouse wheel scroll
241 };
242
243 // This list gathers all the rotation and translation operations.
244 // It is used to update the appropriate parameters when successive
245 // translation and rotation happen.
246 const QList<MouseOperation> mTranslateOrRotate = {
247 MouseOperation::Translation,
248 MouseOperation::RotationCamera,
249 MouseOperation::RotationCenter
250 };
251
252 // check that current sequence (current operation and new operation) is a rotation or translation
253 bool isATranslationRotationSequence( MouseOperation newOperation ) const;
254
255 void setMouseParameters( const MouseOperation &newOperation, const QPoint &clickPoint = QPoint() );
256
257 signals:
260
263
267 void cameraMovementSpeedChanged( double speed );
268
273 void setCursorPosition( QPoint point );
274
280
285 void cameraRotationCenterChanged( QVector3D position );
286
287 private slots:
288 void onPositionChanged( Qt3DInput::QMouseEvent *mouse );
289 void onWheel( Qt3DInput::QWheelEvent *wheel );
290 void onMousePressed( Qt3DInput::QMouseEvent *mouse );
291 void onMouseReleased( Qt3DInput::QMouseEvent *mouse );
292 void onKeyPressed( Qt3DInput::QKeyEvent *event );
293 void onKeyReleased( Qt3DInput::QKeyEvent *event );
294 void applyFlyModeKeyMovements();
295
296 private:
297 void onKeyPressedFlyNavigation( Qt3DInput::QKeyEvent *event );
298 void onKeyPressedTerrainNavigation( Qt3DInput::QKeyEvent *event );
299 void onPositionChangedFlyNavigation( Qt3DInput::QMouseEvent *mouse );
300 void onPositionChangedTerrainNavigation( Qt3DInput::QMouseEvent *mouse );
301
302 void handleTerrainNavigationWheelZoom();
303
308 double sampleDepthBuffer( const QImage &buffer, int px, int py );
309
310#ifndef SIP_RUN
312 bool screenPointToWorldPos( QPoint position, Qt3DRender::QCamera *cameraBefore, double &depth, QVector3D &worldPosition );
313#endif
314
316 Qgs3DMapScene *mScene = nullptr;
317
319 Qt3DRender::QCamera *mCamera = nullptr;
320
322 QgsCameraPose mCameraPose;
323
325 QPoint mMousePos;
326
328 QPoint mClickPoint;
329
330 bool mDepthBufferIsReady = false;
331 QImage mDepthBufferImage;
332
333 std::unique_ptr<Qt3DRender::QCamera> mCameraBefore;
334
335 bool mRotationCenterCalculated = false;
336 QVector3D mRotationCenter;
337 double mRotationDistanceFromCenter;
338 double mRotationPitch = 0;
339 double mRotationYaw = 0;
340
341 bool mDragPointCalculated = false;
342 QVector3D mDragPoint;
343 double mDragDepth;
344
345 bool mZoomPointCalculated = false;
346 QVector3D mZoomPoint;
347
348 Qt3DInput::QMouseHandler *mMouseHandler = nullptr;
349 Qt3DInput::QKeyboardHandler *mKeyboardHandler = nullptr;
352 double mCameraMovementSpeed = 5.0;
353
354 QSet<int> mDepressedKeys;
355 bool mCaptureFpsMouseMovements = false;
356 bool mIgnoreNextMouseMove = false;
357 QTimer *mFpsNavTimer = nullptr;
358
359 double mCumulatedWheelY = 0;
360
361 MouseOperation mCurrentOperation = MouseOperation::None;
362
363 // 3D world's origin in map coordinates
364 QgsVector3D mOrigin;
365
366 // To test the cameracontroller
367 friend class TestQgs3DRendering;
368 friend class TestQgs3DCameraController;
369};
370
371#endif // QGSCAMERACONTROLLER_H
VerticalAxisInversion
Vertical axis inversion options for 3D views.
Definition qgis.h:3929
@ WhenDragging
Invert vertical axis movements when dragging in first person modes.
NavigationMode
The navigation mode used by 3D cameras.
Definition qgis.h:3917
@ TerrainBased
The default navigation based on the terrain.
void navigationModeChanged(Qgis::NavigationMode mode)
Emitted when the navigation mode is changed using the hotkey ctrl + ~.
QgsCameraPose cameraPose() const
Returns camera pose.
float pitch() const
Returns pitch angle in degrees (0 = looking from the top, 90 = looking from the side).
Qt3DRender::QCamera * camera() const
Returns camera that is being controlled.
~QgsCameraController() override
float yaw() const
Returns yaw angle in degrees.
void requestDepthBufferCapture()
Emitted to ask for the depth buffer image.
Qgis::VerticalAxisInversion verticalAxisInversion() const
Returns the vertical axis inversion behavior.
float distance() const
Returns distance of the camera from the point it is looking at.
double cameraMovementSpeed() const
Returns the camera movement speed.
void cameraChanged()
Emitted when camera has been updated.
void cameraMovementSpeedChanged(double speed)
Emitted whenever the camera movement speed is changed by the controller.
Qgis::NavigationMode cameraNavigationMode() const
Returns the navigation mode used by the camera controller.
void cameraRotationCenterChanged(QVector3D position)
Emitted when the camera rotation center changes.
void setCursorPosition(QPoint point)
Emitted when the mouse cursor position should be moved to the specified point on the map viewport.
Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double precisi...
Definition qgsvector3d.h:31
#define SIP_SKIP
Definition qgis_sip.h:126