QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgswindow3dengine.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgswindow3dengine.cpp
3 --------------------------------------
4 Date : July 2018
5 Copyright : (C) 2018 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#include "qgswindow3dengine.h"
17
18#include <Qt3DRender/QRenderCapture>
19#include <Qt3DExtras/QForwardRenderer>
20#include <Qt3DRender/QRenderSettings>
21
22#include "qgs3dmapcanvas.h"
23#include "qgsframegraph.h"
24
25
27 : QgsAbstract3DEngine( parent )
28{
29 mMapCanvas3D = parent;
30
31 mRoot = new Qt3DCore::QEntity;
32 mMapCanvas3D->setRootEntity( mRoot );
33
34 mFrameGraph = new QgsFrameGraph( mMapCanvas3D, QSize( 1024, 768 ), mMapCanvas3D->camera(), mRoot );
37
38 // force switching to no shadow rendering
40}
41
43{
44 return mMapCanvas3D;
45}
46
47Qt3DCore::QEntity *QgsWindow3DEngine::root() const
48{
49 return mRoot;
50}
51
53{
54 mShadowRenderingEnabled = enabled;
55 mFrameGraph->setShadowRenderingEnabled( mShadowRenderingEnabled );
56}
57
58void QgsWindow3DEngine::setClearColor( const QColor &color )
59{
60 mFrameGraph->setClearColor( color );
61}
62
64{
65 // Not sure if this works properly
67}
68
69void QgsWindow3DEngine::setRootEntity( Qt3DCore::QEntity *root )
70{
71 mSceneRoot = root;
72 mSceneRoot->setParent( mRoot );
73 mSceneRoot->addComponent( mFrameGraph->forwardRenderLayer() );
74 mSceneRoot->addComponent( mFrameGraph->castShadowsLayer() );
75}
76
77Qt3DRender::QRenderSettings *QgsWindow3DEngine::renderSettings()
78{
79 return mMapCanvas3D->renderSettings();
80}
81
82Qt3DRender::QCamera *QgsWindow3DEngine::camera()
83{
84 return mMapCanvas3D->camera();
85}
86
88{
89 return mMapCanvas3D->size();
90}
91
93{
94 return mMapCanvas3D;
95}
96
98{
99 mSize = s;
100
101 mMapCanvas3D->setWidth( mSize.width() );
102 mMapCanvas3D->setHeight( mSize.height() );
103 mFrameGraph->setSize( mSize );
104 camera()->setAspectRatio( float( mSize.width() ) / float( mSize.height() ) );
105 emit sizeChanged();
106}
Qt3DRender::QCamera * camera() const
Returns the default camera of the 3D Window.
void setRootEntity(Qt3DCore::QEntity *root)
Sets the specified root entity of the scene.
void setActiveFrameGraph(Qt3DRender::QFrameGraphNode *activeFrameGraph)
Activates the specified activeFrameGraph.
Qt3DRender::QRenderSettings * renderSettings() const
Returns the render settings of the 3D Window.
void sizeChanged()
Emitted after a call to setSize()
QgsFrameGraph * mFrameGraph
Qt3DRender::QLayer * forwardRenderLayer()
Returns a layer object used to indicate that an entity will be rendered during the forward rendering ...
Definition: qgsframegraph.h:96
void setRenderCaptureEnabled(bool enabled)
Sets whether it will be possible to render to an image.
Qt3DRender::QFrameGraphNode * frameGraphRoot()
Returns the root of the frame graph object.
Definition: qgsframegraph.h:70
void setClearColor(const QColor &clearColor)
Sets the clear color of the scene (background color)
void setFrustumCullingEnabled(bool enabled)
Sets whether frustum culling is enabled.
void setShadowRenderingEnabled(bool enabled)
Sets whether the shadow rendering is enabled.
Qt3DRender::QLayer * castShadowsLayer()
Returns a layer object used to indicate that an entity will cast shadows.
Definition: qgsframegraph.h:94
void setSize(QSize s)
Sets the size of the buffers used for rendering.
void setRootEntity(Qt3DCore::QEntity *root) override
Sets root entity of the 3D scene.
QgsWindow3DEngine(Qgs3DMapCanvas *parent)
Constructor for QgsWindow3DEngine with the specified parent Qgs3DMapCanvas.
Qt3DRender::QRenderSettings * renderSettings() override
Returns access to the engine's render settings (the frame graph can be accessed from here)
void setSize(QSize s) override
Sets the size of the rendering area (in pixels)
QSize size() const override
Returns size of the engine's rendering area in pixels.
Qt3DCore::QEntity * root() const
Returns the root entity.
Qt3DRender::QCamera * camera() override
Returns pointer to the engine's camera entity.
QSurface * surface() const override
Returns the surface of the engine.
void setShadowRenderingEnabled(bool enabled)
Sets whether shadow rendering is enabled.
void setClearColor(const QColor &color) override
Sets background color of the scene.
QWindow * window()
Returns the internal 3D window where all the rendered output is displayed.
void setFrustumCullingEnabled(bool enabled) override
Sets whether frustum culling is enabled (this should make rendering faster by not rendering entities ...