21#include "qgsmeshterraingenerator.h"
29#include <QDomDocument>
42 connectChangedSignalsToSettingsChanged();
48 , mOrigin( other.mOrigin )
50 , mBackgroundColor( other.mBackgroundColor )
51 , mSelectionColor( other.mSelectionColor )
52 , mTerrainVerticalScale( other.mTerrainVerticalScale )
53 , mTerrainGenerator( other.mTerrainGenerator ? other.mTerrainGenerator->clone() : nullptr )
54 , mMapTileResolution( other.mMapTileResolution )
55 , mMaxTerrainScreenError( other.mMaxTerrainScreenError )
56 , mMaxTerrainGroundError( other.mMaxTerrainGroundError )
57 , mTerrainElevationOffset( other.mTerrainElevationOffset )
58 , mTerrainShadingEnabled( other.mTerrainShadingEnabled )
59 , mTerrainShadingMaterial( other.mTerrainShadingMaterial )
60 , mTerrainMapTheme( other.mTerrainMapTheme )
61 , mShowTerrainBoundingBoxes( other.mShowTerrainBoundingBoxes )
62 , mShowTerrainTileInfo( other.mShowTerrainTileInfo )
63 , mShowCameraViewCenter( other.mShowCameraViewCenter )
64 , mShowCameraRotationCenter( other.mShowCameraRotationCenter )
65 , mShowLightSources( other.mShowLightSources )
66 , mShowLabels( other.mShowLabels )
67 , mFieldOfView( other.mFieldOfView )
68 , mProjectionType( other.mProjectionType )
69 , mCameraNavigationMode( other.mCameraNavigationMode )
70 , mCameraMovementSpeed( other.mCameraMovementSpeed )
71 , mLayers( other.mLayers )
73 , mTransformContext( other.mTransformContext )
74 , mPathResolver( other.mPathResolver )
75 , mMapThemes( other.mMapThemes )
77 , mIsFpsCounterEnabled( other.mIsFpsCounterEnabled )
78 , mIsSkyboxEnabled( other.mIsSkyboxEnabled )
79 , mSkyboxSettings( other.mSkyboxSettings )
80 , mShadowSettings( other.mShadowSettings )
81 , mAmbientOcclusionSettings( other.mAmbientOcclusionSettings )
82 , mEyeDomeLightingEnabled( other.mEyeDomeLightingEnabled )
83 , mEyeDomeLightingStrength( other.mEyeDomeLightingStrength )
84 , mEyeDomeLightingDistance( other.mEyeDomeLightingDistance )
85 , mViewSyncMode( other.mViewSyncMode )
86 , mVisualizeViewFrustum( other.mVisualizeViewFrustum )
87 , mDebugShadowMapEnabled( other.mDebugShadowMapEnabled )
88 , mDebugShadowMapCorner( other.mDebugShadowMapCorner )
89 , mDebugShadowMapSize( other.mDebugShadowMapSize )
90 , mDebugDepthMapEnabled( other.mDebugDepthMapEnabled )
91 , mDebugDepthMapCorner( other.mDebugDepthMapCorner )
92 , mDebugDepthMapSize( other.mDebugDepthMapSize )
93 , mTerrainRenderingEnabled( other.mTerrainRenderingEnabled )
94 , mRendererUsage( other.mRendererUsage )
95 , m3dAxisSettings( other.m3dAxisSettings )
96 , mIsDebugOverlayEnabled( other.mIsDebugOverlayEnabled )
100 mRenderers << renderer->clone();
103 for (
QgsLightSource *source : std::as_const( other.mLightSources ) )
106 mLightSources << source->clone();
113 connectChangedSignalsToSettingsChanged();
118 qDeleteAll( mRenderers );
119 qDeleteAll( mLightSources );
125 QDomElement elemOrigin = elem.firstChildElement( QStringLiteral(
"origin" ) );
127 elemOrigin.attribute( QStringLiteral(
"x" ) ).toDouble(),
128 elemOrigin.attribute( QStringLiteral(
"y" ) ).toDouble(),
129 elemOrigin.attribute( QStringLiteral(
"z" ) ).toDouble() );
131 QDomElement elemCamera = elem.firstChildElement( QStringLiteral(
"camera" ) );
132 if ( !elemCamera.isNull() )
134 mFieldOfView = elemCamera.attribute( QStringLiteral(
"field-of-view" ), QStringLiteral(
"45" ) ).toFloat();
135 mProjectionType =
static_cast< Qt3DRender::QCameraLens::ProjectionType
>( elemCamera.attribute( QStringLiteral(
"projection-type" ), QStringLiteral(
"1" ) ).toInt() );
136 QString
cameraNavigationMode = elemCamera.attribute( QStringLiteral(
"camera-navigation-mode" ), QStringLiteral(
"basic-navigation" ) );
138 mCameraNavigationMode = QgsCameraController::NavigationMode::TerrainBasedNavigation;
140 mCameraNavigationMode = QgsCameraController::NavigationMode::WalkNavigation;
141 mCameraMovementSpeed = elemCamera.attribute( QStringLiteral(
"camera-movement-speed" ), QStringLiteral(
"5.0" ) ).toDouble();
144 QDomElement elemColor = elem.firstChildElement( QStringLiteral(
"color" ) );
145 if ( !elemColor.isNull() )
151 QDomElement elemCrs = elem.firstChildElement( QStringLiteral(
"crs" ) );
154 QDomElement elemTerrain = elem.firstChildElement( QStringLiteral(
"terrain" ) );
155 mTerrainRenderingEnabled = elemTerrain.attribute( QStringLiteral(
"terrain-rendering-enabled" ), QStringLiteral(
"1" ) ).toInt();
156 mTerrainVerticalScale = elemTerrain.attribute( QStringLiteral(
"exaggeration" ), QStringLiteral(
"1" ) ).toFloat();
157 mMapTileResolution = elemTerrain.attribute( QStringLiteral(
"texture-size" ), QStringLiteral(
"512" ) ).toInt();
158 mMaxTerrainScreenError = elemTerrain.attribute( QStringLiteral(
"max-terrain-error" ), QStringLiteral(
"3" ) ).toFloat();
159 mMaxTerrainGroundError = elemTerrain.attribute( QStringLiteral(
"max-ground-error" ), QStringLiteral(
"1" ) ).toFloat();
160 mTerrainShadingEnabled = elemTerrain.attribute( QStringLiteral(
"shading-enabled" ), QStringLiteral(
"0" ) ).toInt();
161 mTerrainElevationOffset = elemTerrain.attribute( QStringLiteral(
"elevation-offset" ), QStringLiteral(
"0.0" ) ).toFloat();
163 QDomElement elemTerrainShadingMaterial = elemTerrain.firstChildElement( QStringLiteral(
"shading-material" ) );
164 if ( !elemTerrainShadingMaterial.isNull() )
165 mTerrainShadingMaterial.
readXml( elemTerrainShadingMaterial, context );
166 mTerrainMapTheme = elemTerrain.attribute( QStringLiteral(
"map-theme" ) );
167 mShowLabels = elemTerrain.attribute( QStringLiteral(
"show-labels" ), QStringLiteral(
"0" ) ).toInt();
169 qDeleteAll( mLightSources );
170 mLightSources.clear();
171 const QDomElement lightsElem = elem.firstChildElement( QStringLiteral(
"lights" ) );
172 if ( !lightsElem.isNull() )
174 const QDomNodeList lightNodes = lightsElem.childNodes();
175 for (
int i = 0; i < lightNodes.size(); ++i )
177 const QDomElement lightElement = lightNodes.at( i ).toElement();
179 mLightSources << light;
185 QDomElement elemPointLights = elem.firstChildElement( QStringLiteral(
"point-lights" ) );
186 if ( !elemPointLights.isNull() )
188 QDomElement elemPointLight = elemPointLights.firstChildElement( QStringLiteral(
"point-light" ) );
189 while ( !elemPointLight.isNull() )
191 std::unique_ptr< QgsPointLightSettings > pointLight = std::make_unique< QgsPointLightSettings >();
192 pointLight->readXml( elemPointLight, context );
193 mLightSources << pointLight.release();
194 elemPointLight = elemPointLight.nextSiblingElement( QStringLiteral(
"point-light" ) );
200 std::unique_ptr< QgsPointLightSettings > defaultLight = std::make_unique< QgsPointLightSettings >();
201 defaultLight->setPosition(
QgsVector3D( 0, 1000, 0 ) );
202 mLightSources << defaultLight.release();
205 QDomElement elemDirectionalLights = elem.firstChildElement( QStringLiteral(
"directional-lights" ) );
206 if ( !elemDirectionalLights.isNull() )
208 QDomElement elemDirectionalLight = elemDirectionalLights.firstChildElement( QStringLiteral(
"directional-light" ) );
209 while ( !elemDirectionalLight.isNull() )
211 std::unique_ptr< QgsDirectionalLightSettings > directionalLight = std::make_unique< QgsDirectionalLightSettings >();
212 directionalLight->readXml( elemDirectionalLight, context );
213 mLightSources << directionalLight.release();
214 elemDirectionalLight = elemDirectionalLight.nextSiblingElement( QStringLiteral(
"directional-light" ) );
219 QDomElement elemMapLayers = elemTerrain.firstChildElement( QStringLiteral(
"layers" ) );
220 QDomElement elemMapLayer = elemMapLayers.firstChildElement( QStringLiteral(
"layer" ) );
221 QList<QgsMapLayerRef> mapLayers;
222 while ( !elemMapLayer.isNull() )
224 mapLayers <<
QgsMapLayerRef( elemMapLayer.attribute( QStringLiteral(
"id" ) ) );
225 elemMapLayer = elemMapLayer.nextSiblingElement( QStringLiteral(
"layer" ) );
229 QDomElement elemTerrainGenerator = elemTerrain.firstChildElement( QStringLiteral(
"generator" ) );
230 QString terrainGenType = elemTerrainGenerator.attribute( QStringLiteral(
"type" ) );
231 if ( terrainGenType == QLatin1String(
"dem" ) )
234 demTerrainGenerator->
setCrs( mCrs, mTransformContext );
237 else if ( terrainGenType == QLatin1String(
"online" ) )
240 onlineTerrainGenerator->
setCrs( mCrs, mTransformContext );
243 else if ( terrainGenType == QLatin1String(
"mesh" ) )
245 QgsMeshTerrainGenerator *meshTerrainGenerator =
new QgsMeshTerrainGenerator;
246 meshTerrainGenerator->setCrs( mCrs, mTransformContext );
255 mTerrainGenerator->readXml( elemTerrainGenerator );
257 qDeleteAll( mRenderers );
260 QDomElement elemRenderers = elem.firstChildElement( QStringLiteral(
"renderers" ) );
261 QDomElement elemRenderer = elemRenderers.firstChildElement( QStringLiteral(
"renderer" ) );
262 while ( !elemRenderer.isNull() )
265 QString type = elemRenderer.attribute( QStringLiteral(
"type" ) );
266 if ( type == QLatin1String(
"vector" ) )
270 else if ( type == QLatin1String(
"mesh" ) )
274 else if ( type == QLatin1String(
"pointcloud" ) )
281 renderer->
readXml( elemRenderer, context );
282 mRenderers.append( renderer );
284 elemRenderer = elemRenderer.nextSiblingElement( QStringLiteral(
"renderer" ) );
287 QDomElement elemSkybox = elem.firstChildElement( QStringLiteral(
"skybox" ) );
288 mIsSkyboxEnabled = elemSkybox.attribute( QStringLiteral(
"skybox-enabled" ) ).toInt();
289 mSkyboxSettings.
readXml( elemSkybox, context );
291 QDomElement elemShadows = elem.firstChildElement( QStringLiteral(
"shadow-rendering" ) );
292 mShadowSettings.
readXml( elemShadows, context );
294 QDomElement elemAmbientOcclusion = elem.firstChildElement( QStringLiteral(
"screen-space-ambient-occlusion" ) );
295 mAmbientOcclusionSettings.
readXml( elemAmbientOcclusion, context );
297 QDomElement elemEyeDomeLighting = elem.firstChildElement( QStringLiteral(
"eye-dome-lighting" ) );
298 mEyeDomeLightingEnabled = elemEyeDomeLighting.attribute(
"enabled", QStringLiteral(
"0" ) ).toInt();
299 mEyeDomeLightingStrength = elemEyeDomeLighting.attribute(
"eye-dome-lighting-strength", QStringLiteral(
"1000.0" ) ).toDouble();
300 mEyeDomeLightingDistance = elemEyeDomeLighting.attribute(
"eye-dome-lighting-distance", QStringLiteral(
"1" ) ).toInt();
302 QDomElement elemNavigationSync = elem.firstChildElement( QStringLiteral(
"navigation-sync" ) );
303 mViewSyncMode = ( Qgis::ViewSyncModeFlags )( elemNavigationSync.attribute( QStringLiteral(
"view-sync-mode" ), QStringLiteral(
"0" ) ).toInt() );
304 mVisualizeViewFrustum = elemNavigationSync.attribute( QStringLiteral(
"view-frustum-visualization-enabled" ), QStringLiteral(
"0" ) ).toInt();
306 QDomElement elemDebugSettings = elem.firstChildElement( QStringLiteral(
"debug-settings" ) );
307 mDebugShadowMapEnabled = elemDebugSettings.attribute( QStringLiteral(
"shadowmap-enabled" ), QStringLiteral(
"0" ) ).toInt();
308 mDebugShadowMapCorner =
static_cast<Qt::Corner
>( elemDebugSettings.attribute( QStringLiteral(
"shadowmap-corner" ),
"0" ).toInt() );
309 mDebugShadowMapSize = elemDebugSettings.attribute( QStringLiteral(
"shadowmap-size" ), QStringLiteral(
"0.2" ) ).toDouble();
311 mDebugDepthMapEnabled = elemDebugSettings.attribute( QStringLiteral(
"depthmap-enabled" ), QStringLiteral(
"0" ) ).toInt();
312 mDebugDepthMapCorner =
static_cast<Qt::Corner
>( elemDebugSettings.attribute( QStringLiteral(
"depthmap-corner" ), QStringLiteral(
"1" ) ).toInt() );
313 mDebugDepthMapSize = elemDebugSettings.attribute( QStringLiteral(
"depthmap-size" ), QStringLiteral(
"0.2" ) ).toDouble();
315 QDomElement elemDebug = elem.firstChildElement( QStringLiteral(
"debug" ) );
316 mShowTerrainBoundingBoxes = elemDebug.attribute( QStringLiteral(
"bounding-boxes" ), QStringLiteral(
"0" ) ).toInt();
317 mShowTerrainTileInfo = elemDebug.attribute( QStringLiteral(
"terrain-tile-info" ), QStringLiteral(
"0" ) ).toInt();
318 mShowCameraViewCenter = elemDebug.attribute( QStringLiteral(
"camera-view-center" ), QStringLiteral(
"0" ) ).toInt();
319 mShowCameraRotationCenter = elemDebug.attribute( QStringLiteral(
"camera-rotation-center" ), QStringLiteral(
"0" ) ).toInt();
320 mShowLightSources = elemDebug.attribute( QStringLiteral(
"show-light-sources" ), QStringLiteral(
"0" ) ).toInt();
321 mIsFpsCounterEnabled = elemDebug.attribute( QStringLiteral(
"show-fps-counter" ), QStringLiteral(
"0" ) ).toInt();
323 QDomElement elemTemporalRange = elem.firstChildElement( QStringLiteral(
"temporal-range" ) );
324 QDateTime start = QDateTime::fromString( elemTemporalRange.attribute( QStringLiteral(
"start" ) ), Qt::ISODate );
325 QDateTime end = QDateTime::fromString( elemTemporalRange.attribute( QStringLiteral(
"end" ) ), Qt::ISODate );
328 QDomElement elem3dAxis = elem.firstChildElement( QStringLiteral(
"axis3d" ) );
329 m3dAxisSettings.
readXml( elem3dAxis, context );
335 QDomElement elem = doc.createElement( QStringLiteral(
"qgis3d" ) );
337 QDomElement elemOrigin = doc.createElement( QStringLiteral(
"origin" ) );
338 elemOrigin.setAttribute( QStringLiteral(
"x" ), QString::number( mOrigin.
x() ) );
339 elemOrigin.setAttribute( QStringLiteral(
"y" ), QString::number( mOrigin.
y() ) );
340 elemOrigin.setAttribute( QStringLiteral(
"z" ), QString::number( mOrigin.
z() ) );
341 elem.appendChild( elemOrigin );
343 QDomElement elemCamera = doc.createElement( QStringLiteral(
"camera" ) );
344 elemCamera.setAttribute( QStringLiteral(
"field-of-view" ), mFieldOfView );
345 elemCamera.setAttribute( QStringLiteral(
"projection-type" ),
static_cast< int >( mProjectionType ) );
346 switch ( mCameraNavigationMode )
349 elemCamera.setAttribute( QStringLiteral(
"camera-navigation-mode" ), QStringLiteral(
"terrain-based-navigation" ) );
352 elemCamera.setAttribute( QStringLiteral(
"camera-navigation-mode" ), QStringLiteral(
"walk-navigation" ) );
355 elemCamera.setAttribute( QStringLiteral(
"camera-movement-speed" ), mCameraMovementSpeed );
356 elem.appendChild( elemCamera );
358 QDomElement elemColor = doc.createElement( QStringLiteral(
"color" ) );
361 elem.appendChild( elemColor );
363 QDomElement elemCrs = doc.createElement( QStringLiteral(
"crs" ) );
365 elem.appendChild( elemCrs );
367 QDomElement elemTerrain = doc.createElement( QStringLiteral(
"terrain" ) );
368 elemTerrain.setAttribute( QStringLiteral(
"terrain-rendering-enabled" ), mTerrainRenderingEnabled ? 1 : 0 );
369 elemTerrain.setAttribute( QStringLiteral(
"exaggeration" ), QString::number( mTerrainVerticalScale ) );
370 elemTerrain.setAttribute( QStringLiteral(
"texture-size" ), mMapTileResolution );
371 elemTerrain.setAttribute( QStringLiteral(
"max-terrain-error" ), QString::number( mMaxTerrainScreenError ) );
372 elemTerrain.setAttribute( QStringLiteral(
"max-ground-error" ), QString::number( mMaxTerrainGroundError ) );
373 elemTerrain.setAttribute( QStringLiteral(
"shading-enabled" ), mTerrainShadingEnabled ? 1 : 0 );
374 elemTerrain.setAttribute( QStringLiteral(
"elevation-offset" ), mTerrainElevationOffset );
376 QDomElement elemTerrainShadingMaterial = doc.createElement( QStringLiteral(
"shading-material" ) );
377 mTerrainShadingMaterial.
writeXml( elemTerrainShadingMaterial, context );
378 elemTerrain.appendChild( elemTerrainShadingMaterial );
379 elemTerrain.setAttribute( QStringLiteral(
"map-theme" ), mTerrainMapTheme );
380 elemTerrain.setAttribute( QStringLiteral(
"show-labels" ), mShowLabels ? 1 : 0 );
383 QDomElement elemLights = doc.createElement( QStringLiteral(
"lights" ) );
386 const QDomElement elemLight = light->writeXml( doc, context );
387 elemLights.appendChild( elemLight );
389 elem.appendChild( elemLights );
392 QDomElement elemMapLayers = doc.createElement( QStringLiteral(
"layers" ) );
395 QDomElement elemMapLayer = doc.createElement( QStringLiteral(
"layer" ) );
396 elemMapLayer.setAttribute( QStringLiteral(
"id" ), layerRef.layerId );
397 elemMapLayers.appendChild( elemMapLayer );
399 elemTerrain.appendChild( elemMapLayers );
401 QDomElement elemTerrainGenerator = doc.createElement( QStringLiteral(
"generator" ) );
403 mTerrainGenerator->writeXml( elemTerrainGenerator );
404 elemTerrain.appendChild( elemTerrainGenerator );
405 elem.appendChild( elemTerrain );
407 QDomElement elemRenderers = doc.createElement( QStringLiteral(
"renderers" ) );
410 QDomElement elemRenderer = doc.createElement( QStringLiteral(
"renderer" ) );
411 elemRenderer.setAttribute( QStringLiteral(
"type" ), renderer->type() );
412 renderer->writeXml( elemRenderer, context );
413 elemRenderers.appendChild( elemRenderer );
415 elem.appendChild( elemRenderers );
417 QDomElement elemSkybox = doc.createElement( QStringLiteral(
"skybox" ) );
418 elemSkybox.setAttribute( QStringLiteral(
"skybox-enabled" ), mIsSkyboxEnabled );
419 mSkyboxSettings.
writeXml( elemSkybox, context );
420 elem.appendChild( elemSkybox );
422 QDomElement elemShadows = doc.createElement( QStringLiteral(
"shadow-rendering" ) );
423 mShadowSettings.
writeXml( elemShadows, context );
424 elem.appendChild( elemShadows );
426 QDomElement elemAmbientOcclusion = doc.createElement( QStringLiteral(
"screen-space-ambient-occlusion" ) );
427 mAmbientOcclusionSettings.
writeXml( elemAmbientOcclusion, context );
428 elem.appendChild( elemAmbientOcclusion );
430 QDomElement elemDebug = doc.createElement( QStringLiteral(
"debug" ) );
431 elemDebug.setAttribute( QStringLiteral(
"bounding-boxes" ), mShowTerrainBoundingBoxes ? 1 : 0 );
432 elemDebug.setAttribute( QStringLiteral(
"terrain-tile-info" ), mShowTerrainTileInfo ? 1 : 0 );
433 elemDebug.setAttribute( QStringLiteral(
"camera-view-center" ), mShowCameraViewCenter ? 1 : 0 );
434 elemDebug.setAttribute( QStringLiteral(
"camera-rotation-center" ), mShowCameraRotationCenter ? 1 : 0 );
435 elemDebug.setAttribute( QStringLiteral(
"show-light-sources" ), mShowLightSources ? 1 : 0 );
436 elemDebug.setAttribute( QStringLiteral(
"show-fps-counter" ), mIsFpsCounterEnabled ? 1 : 0 );
437 elem.appendChild( elemDebug );
439 QDomElement elemEyeDomeLighting = doc.createElement( QStringLiteral(
"eye-dome-lighting" ) );
440 elemEyeDomeLighting.setAttribute( QStringLiteral(
"enabled" ), mEyeDomeLightingEnabled ? 1 : 0 );
441 elemEyeDomeLighting.setAttribute( QStringLiteral(
"eye-dome-lighting-strength" ), mEyeDomeLightingStrength );
442 elemEyeDomeLighting.setAttribute( QStringLiteral(
"eye-dome-lighting-distance" ), mEyeDomeLightingDistance );
443 elem.appendChild( elemEyeDomeLighting );
445 QDomElement elemNavigationSync = doc.createElement( QStringLiteral(
"navigation-sync" ) );
446 elemNavigationSync.setAttribute( QStringLiteral(
"view-sync-mode" ), (
int )mViewSyncMode );
447 elemNavigationSync.setAttribute( QStringLiteral(
"view-frustum-visualization-enabled" ), mVisualizeViewFrustum ? 1 : 0 );
448 elem.appendChild( elemNavigationSync );
450 QDomElement elemDebugSettings = doc.createElement( QStringLiteral(
"debug-settings" ) );
451 elemDebugSettings.setAttribute( QStringLiteral(
"shadowmap-enabled" ), mDebugShadowMapEnabled );
452 elemDebugSettings.setAttribute( QStringLiteral(
"shadowmap-corner" ), mDebugShadowMapCorner );
453 elemDebugSettings.setAttribute( QStringLiteral(
"shadowmap-size" ), mDebugShadowMapSize );
454 elemDebugSettings.setAttribute( QStringLiteral(
"depthmap-enabled" ), mDebugDepthMapEnabled );
455 elemDebugSettings.setAttribute( QStringLiteral(
"depthmap-corner" ), mDebugDepthMapCorner );
456 elemDebugSettings.setAttribute( QStringLiteral(
"depthmap-size" ), mDebugDepthMapSize );
457 elem.appendChild( elemDebugSettings );
459 QDomElement elemTemporalRange = doc.createElement( QStringLiteral(
"temporal-range" ) );
460 elemTemporalRange.setAttribute( QStringLiteral(
"start" ),
temporalRange().begin().toString( Qt::ISODate ) );
461 elemTemporalRange.setAttribute( QStringLiteral(
"end" ),
temporalRange().end().toString( Qt::ISODate ) );
463 QDomElement elem3dAxis = doc.createElement( QStringLiteral(
"axis3d" ) );
464 m3dAxisSettings.
writeXml( elem3dAxis, context );
465 elem.appendChild( elem3dAxis );
472 for (
int i = 0; i < mLayers.count(); ++i )
478 mTerrainGenerator->resolveReferences( project );
480 for (
int i = 0; i < mRenderers.count(); ++i )
504 return mTransformContext;
509 mTransformContext = context;
514 if ( color == mBackgroundColor )
517 mBackgroundColor = color;
523 return mBackgroundColor;
528 if ( color == mSelectionColor )
531 mSelectionColor = color;
537 return mSelectionColor;
542 if ( zScale == mTerrainVerticalScale )
545 mTerrainVerticalScale = zScale;
551 return mTerrainVerticalScale;
556 QList<QgsMapLayerRef> lst;
557 lst.reserve(
layers.count() );
563 if ( mLayers == lst )
572 QList<QgsMapLayer *> lst;
573 lst.reserve( mLayers.count() );
576 if ( layerRef.layer )
577 lst.append( layerRef.layer );
609 QgsMeshTerrainGenerator *newTerrainGenerator =
new QgsMeshTerrainGenerator;
611 newTerrainGenerator->setLayer( meshProvider->
layer() );
612 std::unique_ptr< QgsMesh3DSymbol > symbol( newTerrainGenerator->symbol()->clone() );
614 newTerrainGenerator->setSymbol( symbol.release() );
631 if ( mMapTileResolution == res )
634 mMapTileResolution = res;
640 return mMapTileResolution;
645 if ( mMaxTerrainScreenError == error )
648 mMaxTerrainScreenError = error;
654 return mMaxTerrainScreenError;
659 if ( mMaxTerrainGroundError == error )
662 mMaxTerrainGroundError = error;
668 if ( mTerrainElevationOffset == offset )
670 mTerrainElevationOffset = offset;
676 return mMaxTerrainGroundError;
681 if ( mTerrainGenerator )
687 mTerrainGenerator.reset( gen );
696 if ( mTerrainShadingEnabled == enabled )
699 mTerrainShadingEnabled = enabled;
705 if ( mTerrainShadingMaterial == material )
708 mTerrainShadingMaterial = material;
714 if ( mTerrainMapTheme == theme )
717 mTerrainMapTheme = theme;
723 qDeleteAll( mRenderers );
732 if ( mShowTerrainBoundingBoxes == enabled )
735 mShowTerrainBoundingBoxes = enabled;
741 if ( mShowTerrainTileInfo == enabled )
744 mShowTerrainTileInfo = enabled;
750 if ( mShowCameraViewCenter == enabled )
753 mShowCameraViewCenter = enabled;
759 if ( mShowCameraRotationCenter == enabled )
762 mShowCameraRotationCenter = enabled;
769 if ( mShowLightSources == enabled )
772 mShowLightSources = enabled;
778 if ( mShowLabels == enabled )
781 mShowLabels = enabled;
787 if ( mEyeDomeLightingEnabled == enabled )
789 mEyeDomeLightingEnabled = enabled;
795 if ( mEyeDomeLightingStrength == strength )
797 mEyeDomeLightingStrength = strength;
803 if ( mEyeDomeLightingDistance == distance )
805 mEyeDomeLightingDistance = distance;
811 return mLightSources;
816 qDeleteAll( mLightSources );
817 mLightSources = lights;
844 if ( mCameraNavigationMode == navigationMode )
847 mCameraNavigationMode = navigationMode;
853 if ( mCameraMovementSpeed == movementSpeed )
856 mCameraMovementSpeed = movementSpeed;
880 mDebugShadowMapEnabled = enabled;
881 mDebugShadowMapCorner = corner;
882 mDebugShadowMapSize = size;
888 mDebugDepthMapEnabled = enabled;
889 mDebugDepthMapCorner = corner;
890 mDebugDepthMapSize = size;
896 if ( fpsCounterEnabled == mIsFpsCounterEnabled )
898 mIsFpsCounterEnabled = fpsCounterEnabled;
912 return mRendererUsage;
922 mViewSyncMode = mode;
927 if ( mVisualizeViewFrustum != enabled )
929 mVisualizeViewFrustum = enabled;
936 if ( debugOverlayEnabled == mIsDebugOverlayEnabled )
939 mIsDebugOverlayEnabled = debugOverlayEnabled;
944void Qgs3DMapSettings::connectChangedSignalsToSettingsChanged()
982 if ( axisSettings == m3dAxisSettings )
994 m3dAxisSettings = axisSettings;
RendererUsage
Usage of the renderer.
Contains the configuration of a 3d axis.
void readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads settings from a DOM element.
void writeXml(QDomElement &element, const QgsReadWriteContext &context) const
Writes settings to a DOM element.
void setEyeDomeLightingStrength(double strength)
Sets the eye dome lighting strength value.
void mapTileResolutionChanged()
Emitted when the map tile resoulution has changed.
void terrainVerticalScaleChanged()
Emitted when the vertical scale of the terrain has changed.
void setTransformContext(const QgsCoordinateTransformContext &context)
Sets the coordinate transform context, which stores various information regarding which datum transfo...
void settingsChanged()
Emitted when one of the configuration settings has changed.
void renderersChanged()
Emitted when the list of map's extra renderers have been modified.
void eyeDomeLightingDistanceChanged()
Emitted when the eye dome lighting distance has changed.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context)
Reads configuration from a DOM element previously written by writeXml()
void terrainShadingChanged()
Emitted when terrain shading enabled flag or terrain shading material has changed.
void setAmbientOcclusionSettings(const QgsAmbientOcclusionSettings &ambientOcclusionSettings)
Sets the current configuration of screen space ambient occlusion.
void setShowTerrainTilesInfo(bool enabled)
Sets whether to display extra tile info on top of terrain tiles (for debugging)
QgsVector3D mapToWorldCoordinates(const QgsVector3D &mapCoords) const
Converts map coordinates to 3D world coordinates (applies offset and turns (x,y,z) into (x,...
void setRenderers(const QList< QgsAbstract3DRenderer * > &renderers)
Sets list of extra 3D renderers to use in the scene. Takes ownership of the objects.
Qt3DRender::QCameraLens::ProjectionType projectionType() const
Returns the camera lens' projection type.
void setEyeDomeLightingEnabled(bool enabled)
Sets whether eye dome lighting will be used.
void setFieldOfView(const float fieldOfView)
Sets the camera lens' field of view.
void debugDepthMapSettingsChanged()
Emitted when depth map debugging has changed.
void setLightSources(const QList< QgsLightSource * > &lights)
Sets the list of light sources defined in the scene.
void backgroundColorChanged()
Emitted when the background color has changed.
void showTerrainBoundingBoxesChanged()
Emitted when the flag whether terrain's bounding boxes are shown has changed.
QDomElement writeXml(QDomDocument &doc, const QgsReadWriteContext &context) const
Writes configuration to a DOM element, to be used later with readXml()
void setDebugDepthMapSettings(bool enabled, Qt::Corner corner, double size)
Sets the debugging settings of the depth map.
void showCameraRotationCenterChanged()
Emitted when the flag whether camera's rotation center is shown has changed.
QColor selectionColor() const
Returns color used for selected features.
void directionalLightsChanged()
Emitted when the list of directional lights changes.
void setTerrainShadingMaterial(const QgsPhongMaterialSettings &material)
Sets terrain shading material.
void cameraNavigationModeChanged()
Emitted when the camera navigation mode was changed.
void shadowSettingsChanged()
Emitted when shadow rendering settings are changed.
void setViewFrustumVisualizationEnabled(bool enabled)
Sets whether the camera's view frustum is visualized on the 2D map canvas.
void setShowCameraRotationCenter(bool enabled)
Sets whether to show camera's rotation center as a sphere (for debugging)
float maxTerrainGroundError() const
Returns maximum ground error of terrain tiles in world units.
void eyeDomeLightingEnabledChanged()
Emitted when the flag whether eye dome lighting is used has changed.
void setTerrainVerticalScale(double zScale)
Sets vertical scale (exaggeration) of terrain (1 = true scale, > 1 = hills get more pronounced)
void debugOverlayEnabledChanged(bool debugOverlayEnabled)
Emitted when the debug overaly is enabled or disabled.
void setShowLabels(bool enabled)
Sets whether to display labels on terrain tiles.
double terrainVerticalScale() const
Returns vertical scale (exaggeration) of terrain.
void setViewSyncMode(Qgis::ViewSyncModeFlags mode)
Sets the view sync mode (used to synchronize the 2D main map canvas and the 3D camera navigation)
void setMaxTerrainGroundError(float error)
Returns maximum ground error of terrain tiles in world units.
void setSkyboxSettings(const QgsSkyboxSettings &skyboxSettings)
Sets the current configuration of the skybox.
void skyboxSettingsChanged()
Emitted when skybox settings are changed.
void setMapTileResolution(int res)
Sets resolution (in pixels) of the texture of a terrain tile.
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of 3D map layers to be rendered in the scene.
QgsShadowSettings shadowSettings() const
Returns the current configuration of shadows.
void terrainMapThemeChanged()
Emitted when terrain's map theme has changed.
void setShadowSettings(const QgsShadowSettings &shadowSettings)
Sets the current configuration of shadow rendering.
void setIsDebugOverlayEnabled(bool debugOverlayEnabled)
Sets whether debug overlay is enabled The debug overlay displays some debugging and profiling informa...
void pointLightsChanged()
Emitted when the list of point lights changes.
void setTerrainElevationOffset(float offset)
Sets the terrain elevation offset (used to move the terrain up or down)
QList< QgsLightSource * > lightSources() const
Returns list of directional light sources defined in the scene.
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets coordinate reference system used in the 3D scene.
void setEyeDomeLightingDistance(int distance)
Sets the eye dome lighting distance value (contributes to the contrast of the image.
void setShowLightSourceOrigins(bool enabled)
Sets whether to show light source origins as a sphere (for debugging)
QList< QgsAbstract3DRenderer * > renderers() const
Returns list of extra 3D renderers.
void projectionTypeChanged()
Emitted when the camera lens projection type changes.
float fieldOfView() const
Returns the camera lens' field of view.
void selectionColorChanged()
Emitted when the selection color has changed.
QgsAmbientOcclusionSettings ambientOcclusionSettings() const
Returns the current configuration of screen space ambient occlusion.
void setTerrainShadingEnabled(bool enabled)
Sets whether terrain shading is enabled.
void setDebugShadowMapSettings(bool enabled, Qt::Corner corner, double size)
Sets the debugging settings of the shadow map.
void setSelectionColor(const QColor &color)
Sets color used for selected features.
void lightSourcesChanged()
Emitted when any of the light source settings in the map changes.
void showLightSourceOriginsChanged()
Emitted when the flag whether light source origins are shown has changed.
QColor backgroundColor() const
Returns background color of the 3D map view.
void resolveReferences(const QgsProject &project)
Resolves references to other objects (map layers) after the call to readXml()
QgsVector3D worldToMapCoordinates(const QgsVector3D &worldCoords) const
Converts 3D world coordinates to map coordinates (applies offset and turns (x,y,z) into (x,...
~Qgs3DMapSettings() override
void showLabelsChanged()
Emitted when the flag whether labels are displayed on terrain tiles has changed.
void maxTerrainScreenErrorChanged()
Emitted when the maximum terrain screen error has changed.
void setShowCameraViewCenter(bool enabled)
Sets whether to show camera's view center as a sphere (for debugging)
int mapTileResolution() const
Returns resolution (in pixels) of the texture of a terrain tile.
void set3DAxisSettings(const Qgs3DAxisSettings &axisSettings, bool force=false)
Sets the current configuration of 3d axis.
void setCameraMovementSpeed(double movementSpeed)
Sets the camera movement speed.
void terrainElevationOffsetChanged(float newElevation)
Emitted when the terrain elevation offset is changed.
void setTerrainRenderingEnabled(bool terrainRenderingEnabled)
Sets whether the 2D terrain surface will be rendered in.
Qgs3DMapSettings()
Constructor for Qgs3DMapSettings.
void setBackgroundColor(const QColor &color)
Sets background color of the 3D map view.
bool terrainRenderingEnabled() const
Returns whether the 2D terrain surface will be rendered.
void fpsCounterEnabledChanged(bool fpsCounterEnabled)
Emitted when the FPS counter is enabled or disabled.
void axisSettingsChanged()
Emitted when 3d axis rendering settings are changed.
void viewFrustumVisualizationEnabledChanged()
Emitted when the camera's view frustum visualization on the main 2D map canvas is enabled or disabled...
void setProjectionType(const Qt3DRender::QCameraLens::ProjectionType projectionType)
Sets the camera lens' projection type.
void ambientOcclusionSettingsChanged()
Emitted when ambient occlusion rendering settings are changed.
void setCameraNavigationMode(QgsCameraController::NavigationMode navigationMode)
Sets the navigation mode for the camera.
void configureTerrainFromProject(QgsProjectElevationProperties *properties, const QgsRectangle &fullExtent)
Configures the map's terrain settings directly from a project's elevation properties.
void layersChanged()
Emitted when the list of map layers for 3d rendering has changed.
void showTerrainTilesInfoChanged()
Emitted when the flag whether terrain's tile info is shown has changed.
void eyeDomeLightingStrengthChanged()
Emitted when the eye dome lighting strength has changed.
QgsSkyboxSettings skyboxSettings() const
Returns the current configuration of the skybox.
void setMaxTerrainScreenError(float error)
Sets maximum allowed screen error of terrain tiles in pixels.
void cameraMovementSpeedChanged()
Emitted when the camera movement speed was changed.
QgsCoordinateReferenceSystem crs() const
Returns coordinate reference system used in the 3D scene.
void setRendererUsage(Qgis::RendererUsage rendererUsage)
Sets the renderer usage.
float maxTerrainScreenError() const
Returns maximum allowed screen error of terrain tiles in pixels.
void setShowTerrainBoundingBoxes(bool enabled)
Sets whether to display bounding boxes of terrain tiles (for debugging)
void fieldOfViewChanged()
Emitted when the camera lens field of view changes.
Qgis::RendererUsage rendererUsage() const
Returns the renderer usage.
void setIsFpsCounterEnabled(bool fpsCounterEnabled)
Sets whether FPS counter label is enabled.
QList< QgsMapLayer * > layers() const
Returns the list of 3D map layers to be rendered in the scene.
void setTerrainMapTheme(const QString &theme)
Sets name of the map theme.
QgsCameraController::NavigationMode cameraNavigationMode() const
Returns the navigation mode used by the camera.
void terrainGeneratorChanged()
Emitted when the terrain generator has changed.
void setTerrainGenerator(QgsTerrainGenerator *gen)
Sets terrain generator.
void debugShadowMapSettingsChanged()
Emitted when shadow map debugging has changed.
void showCameraViewCenterChanged()
Emitted when the flag whether camera's view center is shown has changed.
void maxTerrainGroundErrorChanged()
Emitted when the maximum terrain ground error has changed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context, which stores various information regarding which datum tran...
static QgsVector3D worldToMapCoordinates(const QgsVector3D &worldCoords, const QgsVector3D &origin)
Converts 3D world coordinates to map coordinates (applies offset and turns (x,y,z) into (x,...
static QgsVector3D mapToWorldCoordinates(const QgsVector3D &mapCoords, const QgsVector3D &origin)
Converts map coordinates to 3D world coordinates (applies offset and turns (x,y,z) into (x,...
Base class for all renderers that may to participate in 3D view.
virtual void readXml(const QDomElement &elem, const QgsReadWriteContext &context)=0
Reads renderer's properties from given XML element.
virtual void resolveReferences(const QgsProject &project)
Resolves references to other objects - second phase of loading - after readXml()
virtual QString type() const =0
Returns the unique type ID string for the provider.
double offset() const
Returns the vertical offset value, used for adjusting the heights from the terrain provider.
double scale() const
Returns the vertical scale factor, which can be used to exaggerate vertical heights.
class containing the configuration of ambient occlusion rendering 3
void writeXml(QDomElement &element, const QgsReadWriteContext &context) const
Writes settings to a DOM element.
void readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads settings from a DOM element.
NavigationMode
The navigation mode used by the camera.
@ WalkNavigation
Uses WASD keys or arrows to navigate in walking (first person) manner.
@ TerrainBasedNavigation
The default navigation based on the terrain.
This class represents a coordinate reference system (CRS).
bool readXml(const QDomNode &node)
Restores state from the given DOM node.
bool writeXml(QDomNode &node, QDomDocument &doc) const
Stores state to the given Dom node in the given document.
Contains information about the context in which a coordinate transform is executed.
void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets CRS of the terrain.
void setLayer(QgsRasterLayer *layer)
Sets raster layer with elevation model to be used for terrain generation.
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets CRS of the terrain.
void setExtent(const QgsRectangle &extent) override
sets the extent of the terrain in terrain's CRS
static QgsLightSource * createFromXml(const QDomElement &element, const QgsReadWriteContext &context)
Creates a new light source from an XML element.
Base class for all map layer types.
3D renderer that renders all mesh triangles of a mesh layer.
A terrain provider that uses the Z values of a mesh layer to build a terrain surface.
QgsMeshLayer * layer() const
Returns the mesh layer to be used as the terrain source.
void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets CRS of the terrain.
void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const override
Writes settings to a DOM element.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context) override
Reads settings from a DOM element.
3D renderer that renders all points from a point cloud layer
Temporarily blocks QgsProject "dirtying" for the lifetime of the object.
Contains elevation properties for a QgsProject.
QgsAbstractTerrainProvider * terrainProvider()
Returns the project's terrain provider.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
void setDirty(bool b=true)
Flag the project as dirty (modified).
A terrain provider where the terrain source is a raster DEM layer.
QgsRasterLayer * layer() const
Returns the raster layer with elevation model to be used as the terrain source.
The class is used as a container of context for various read/write operations on other objects.
A rectangle specified with double values.
class containing the configuration of shadows rendering 3
void writeXml(QDomElement &element, const QgsReadWriteContext &context) const
Writes settings to a DOM element.
void readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads settings from a DOM element.
Contains the configuration of a skybox entity.
void readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads settings from a DOM element.
void writeXml(QDomElement &element, const QgsReadWriteContext &context) const
Writes settings to a DOM element.
static QColor decodeColor(const QString &str)
static QString encodeColor(const QColor &color)
Base class for objects with an associated (optional) temporal range.
const QgsDateTimeRange & temporalRange() const
Returns the datetime range for the object.
void setTemporalRange(const QgsDateTimeRange &range)
Sets the temporal range for the object.
void terrainChanged()
Emitted when the terrain changed (for example, raster DEM or mesh have data changed)
void extentChanged()
Emitted when the terrain extent has changed.
static QString typeToString(Type type)
Converts terrain generator type enumeration into a string.
double y() const
Returns Y coordinate.
double z() const
Returns Z coordinate.
double x() const
Returns X coordinate.
3D renderer that renders all features of a vector layer with the same 3D symbol.
_LayerRef< QgsMapLayer > QgsMapLayerRef
const QgsCoordinateReferenceSystem & crs
void setLayer(TYPE *l)
Sets the reference to point to a specified layer.
QString layerId
Original layer ID.