QGIS API Documentation 3.41.0-Master (d2aaa9c6e02)
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 void rotateCameraAroundPivot( float newPitch, float newHeading, const QVector3D &pivotPoint );
198
205 void zoomCameraAroundPivot( const QVector3D &oldCameraPosition, double zoomFactor, const QVector3D &pivotPoint );
206
212 bool willHandleKeyEvent( QKeyEvent *event );
213
220 void setOrigin( const QgsVector3D &origin );
221
222 public slots:
223
228 void setCameraNavigationMode( Qgis::NavigationMode navigationMode );
229
234 void depthBufferCaptured( const QImage &depthImage );
235
236 private:
237#ifdef SIP_RUN
240#endif
241
242 void updateCameraFromPose();
243 void moveCameraPositionBy( const QVector3D &posDiff );
245 QWindow *window() const;
246
248 enum class MouseOperation
249 {
250 None = 0, // no operation
251 Translation, // left button pressed, no modifier
252 RotationCamera, // left button pressed + ctrl modifier
253 RotationCenter, // left button pressed + shift modifier
254 Zoom, // right button pressed
255 ZoomWheel // mouse wheel scroll
256 };
257
258 // This list gathers all the rotation and translation operations.
259 // It is used to update the appropriate parameters when successive
260 // translation and rotation happen.
261 const QList<MouseOperation> mTranslateOrRotate = {
262 MouseOperation::Translation,
263 MouseOperation::RotationCamera,
264 MouseOperation::RotationCenter
265 };
266
267 // check that current sequence (current operation and new operation) is a rotation or translation
268 bool isATranslationRotationSequence( MouseOperation newOperation ) const;
269
270 void setMouseParameters( const MouseOperation &newOperation, const QPoint &clickPoint = QPoint() );
271
272 signals:
275
278
282 void cameraMovementSpeedChanged( double speed );
283
288 void setCursorPosition( QPoint point );
289
295
300 void cameraRotationCenterChanged( QVector3D position );
301
302 private slots:
303 void onPositionChanged( Qt3DInput::QMouseEvent *mouse );
304 void onWheel( Qt3DInput::QWheelEvent *wheel );
305 void onMousePressed( Qt3DInput::QMouseEvent *mouse );
306 void onMouseReleased( Qt3DInput::QMouseEvent *mouse );
307 void onKeyPressed( Qt3DInput::QKeyEvent *event );
308 void onKeyReleased( Qt3DInput::QKeyEvent *event );
309 void applyFlyModeKeyMovements();
310
311 private:
312 void onKeyPressedFlyNavigation( Qt3DInput::QKeyEvent *event );
313 void onKeyPressedTerrainNavigation( Qt3DInput::QKeyEvent *event );
314 void onPositionChangedFlyNavigation( Qt3DInput::QMouseEvent *mouse );
315 void onPositionChangedTerrainNavigation( Qt3DInput::QMouseEvent *mouse );
316
317 void handleTerrainNavigationWheelZoom();
318
323 double sampleDepthBuffer( const QImage &buffer, int px, int py );
324
325#ifndef SIP_RUN
327 bool screenPointToWorldPos( QPoint position, Qt3DRender::QCamera *cameraBefore, double &depth, QVector3D &worldPosition );
328#endif
329
331 Qgs3DMapScene *mScene = nullptr;
332
334 Qt3DRender::QCamera *mCamera = nullptr;
335
337 QgsCameraPose mCameraPose;
338
340 QPoint mMousePos;
341
343 QPoint mClickPoint;
344
345 bool mDepthBufferIsReady = false;
346 QImage mDepthBufferImage;
347
348 std::unique_ptr<Qt3DRender::QCamera> mCameraBefore;
349
350 bool mRotationCenterCalculated = false;
351 QVector3D mRotationCenter;
352 double mRotationDistanceFromCenter = 0;
353 double mRotationPitch = 0;
354 double mRotationYaw = 0;
355
356 bool mDragPointCalculated = false;
357 QVector3D mDragPoint;
358 double mDragDepth;
359
360 bool mZoomPointCalculated = false;
361 QVector3D mZoomPoint;
362
363 Qt3DInput::QMouseHandler *mMouseHandler = nullptr;
364 Qt3DInput::QKeyboardHandler *mKeyboardHandler = nullptr;
367 double mCameraMovementSpeed = 5.0;
368
369 QSet<int> mDepressedKeys;
370 bool mCaptureFpsMouseMovements = false;
371 bool mIgnoreNextMouseMove = false;
372 QTimer *mFpsNavTimer = nullptr;
373
374 double mCumulatedWheelY = 0;
375
376 MouseOperation mCurrentOperation = MouseOperation::None;
377
378 // 3D world's origin in map coordinates
379 QgsVector3D mOrigin;
380
381 // To test the cameracontroller
382 friend class TestQgs3DRendering;
383 friend class TestQgs3DCameraController;
384};
385
386#endif // QGSCAMERACONTROLLER_H
VerticalAxisInversion
Vertical axis inversion options for 3D views.
Definition qgis.h:3947
@ WhenDragging
Invert vertical axis movements when dragging in first person modes.
NavigationMode
The navigation mode used by 3D cameras.
Definition qgis.h:3935
@ 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