QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsflatterraingenerator.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsflatterraingenerator.cpp
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
17#include "moc_qgsflatterraingenerator.cpp"
18
19#include <Qt3DRender/QGeometryRenderer>
20
21#include "qgs3dmapsettings.h"
22#include "qgschunknode.h"
23#include "qgsgeotransform.h"
24#include "qgsterrainentity.h"
26
28
29
30//---------------
31
32
33FlatTerrainChunkLoader::FlatTerrainChunkLoader( QgsTerrainEntity *terrain, QgsChunkNode *node )
34 : QgsTerrainTileLoader( terrain, node )
35{
36 loadTexture();
37}
38
39
40Qt3DCore::QEntity *FlatTerrainChunkLoader::createEntity( Qt3DCore::QEntity *parent )
41{
42 QgsTerrainTileEntity *entity = new QgsTerrainTileEntity( mNode->tileId() );
43
44 // make geometry renderer
45
46 // simple quad geometry shared by all tiles
47 // QPlaneGeometry by default is 1x1 with mesh resolution QSize(2,2), centered at 0
48 // TODO: the geometry could be shared inside Terrain instance (within terrain-generator specific data?)
49 mTileGeometry = new Qt3DExtras::QPlaneGeometry;
50
51 Qt3DRender::QGeometryRenderer *mesh = new Qt3DRender::QGeometryRenderer;
52 mesh->setGeometry( mTileGeometry ); // takes ownership if the component has no parent
53 entity->addComponent( mesh ); // takes ownership if the component has no parent
54
55 // create material
56
57 const Qgs3DMapSettings *map = terrain()->mapSettings();
58
59 // create transform
60
61 QgsGeoTransform *transform = nullptr;
62 transform = new QgsGeoTransform();
63 entity->addComponent( transform );
64
65 // set up transform according to the extent covered by the quad geometry
66 const QgsBox3D box3D = mNode->box3D();
67 const QgsBox3D mapFullBox3D( map->extent(), box3D.zMinimum(), box3D.zMaximum() );
68
69 const QgsBox3D commonExtent( std::max( box3D.xMinimum(), mapFullBox3D.xMinimum() ), std::max( box3D.yMinimum(), mapFullBox3D.yMinimum() ), box3D.zMinimum(), std::min( box3D.xMaximum(), mapFullBox3D.xMaximum() ), std::min( box3D.yMaximum(), mapFullBox3D.yMaximum() ), box3D.zMaximum() );
70 const double xSide = commonExtent.width();
71 const double ySide = commonExtent.height();
72 const double xMin = commonExtent.xMinimum();
73 const double yMin = commonExtent.yMinimum();
74
75 transform->setRotation( QQuaternion::fromAxisAndAngle( QVector3D( 1, 0, 0 ), 90 ) ); // QPlaneGeometry uses XZ as the base plane
76 transform->setScale3D( QVector3D( static_cast<float>( xSide ), 1, static_cast<float>( ySide ) ) );
77 transform->setGeoTranslation( QgsVector3D( xMin + xSide / 2, yMin + ySide / 2, 0 ) );
78
79 createTextureComponent( entity, map->isTerrainShadingEnabled(), map->terrainShadingMaterial(), !map->layers().empty() );
80
81 entity->setParent( parent );
82 return entity;
83}
84
86
87// ---------------
88
93
94QgsChunkLoader *QgsFlatTerrainGenerator::createChunkLoader( QgsChunkNode *node ) const
95{
96 return new FlatTerrainChunkLoader( mTerrain, node );
97}
98
100{
102 cloned->mCrs = mCrs;
103 cloned->mExtent = mExtent;
104 cloned->updateTilingScheme();
105 return cloned;
106}
107
112
117
118void QgsFlatTerrainGenerator::rootChunkHeightRange( float &hMin, float &hMax ) const
119{
120 hMin = 0;
121 hMax = 0;
122}
123
125{
126 mCrs = crs;
127 updateTilingScheme();
128}
129
131{
132 if ( mExtent == extent )
133 return;
134
135 mExtent = extent;
136 updateTilingScheme();
137}
138
139void QgsFlatTerrainGenerator::updateTilingScheme()
140{
141 // the real extent will be a square where the given extent fully fits
143}
QgsRectangle extent() const
Returns the 3D scene's 2D extent in the 3D scene's CRS.
bool isTerrainShadingEnabled() const
Returns whether terrain shading is enabled.
QgsPhongMaterialSettings terrainShadingMaterial() const
Returns terrain shading material.
QList< QgsMapLayer * > layers() const
Returns the list of 3D map layers to be rendered in the scene.
A 3-dimensional box composed of x, y, z coordinates.
Definition qgsbox3d.h:43
double yMaximum() const
Returns the maximum y value.
Definition qgsbox3d.h:246
double xMinimum() const
Returns the minimum x value.
Definition qgsbox3d.h:211
double zMaximum() const
Returns the maximum z value.
Definition qgsbox3d.h:274
double xMaximum() const
Returns the maximum x value.
Definition qgsbox3d.h:218
double zMinimum() const
Returns the minimum z value.
Definition qgsbox3d.h:267
double yMinimum() const
Returns the minimum y value.
Definition qgsbox3d.h:239
This class represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
QgsChunkLoader * createChunkLoader(QgsChunkNode *node) const override SIP_FACTORY
Type type() const override
What texture generator implementation is this.
QgsRectangle rootChunkExtent() const override
extent of the terrain's root chunk in terrain's CRS
void rootChunkHeightRange(float &hMin, float &hMax) const override
Returns height range of the root chunk in world coordinates.
QgsTerrainGenerator * clone() const override SIP_FACTORY
Makes a copy of the current instance.
QgsFlatTerrainGenerator()=default
void setExtent(const QgsRectangle &extent) override
sets the extent of the terrain in terrain's CRS
QgsCoordinateReferenceSystem crs() const override
Returns CRS of the terrain.
void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context) override
Sets the CRS associated with the terrain.
static QgsTerrainGenerator * create() SIP_FACTORY
Creates a new instance of a QgsFlatTerrainGenerator object.
A rectangle specified with double values.
Type
Enumeration of the available terrain generators.
@ Flat
The whole terrain is flat area.
QgsTilingScheme mTerrainTilingScheme
Tiling scheme of the terrain.
QgsTerrainEntity * mTerrain
QgsRectangle tileToExtent(int x, int y, int z) const
Returns map coordinates of the extent of a tile.
Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double precisi...
Definition qgsvector3d.h:31
const QgsCoordinateReferenceSystem & crs