31#include <Qt3DRender/QTexture>
32#include <Qt3DRender/QTechnique>
33#include <Qt3DRender/QCullFace>
37QgsTerrainTileLoader::QgsTerrainTileLoader( QgsTerrainEntity *terrain, QgsChunkNode *node )
38 : QgsChunkLoader( node )
42 const QgsChunkNodeId nodeId = node->tileId();
45 mTileDebugText = nodeId.text();
48void QgsTerrainTileLoader::loadTexture()
50 connect( mTerrain->textureGenerator(), &QgsTerrainTextureGenerator::tileReady,
this, &QgsTerrainTileLoader::onImageReady );
51 mTextureJobId = mTerrain->textureGenerator()->render( mExtentMapCrs, mNode->tileId(), mTileDebugText );
54void QgsTerrainTileLoader::createTextureComponent( QgsTerrainTileEntity *entity,
bool isShadingEnabled,
const QgsPhongMaterialSettings &shadingMaterial,
bool useTexture )
56 Qt3DRender::QTexture2D *texture = useTexture || !isShadingEnabled ? createTexture( entity ) : nullptr;
61 if ( isShadingEnabled )
63 QgsPhongTexturedMaterial *phongTexturedMaterial =
new QgsPhongTexturedMaterial();
64 phongTexturedMaterial->setAmbient( shadingMaterial.
ambient() );
65 phongTexturedMaterial->setSpecular( shadingMaterial.
specular() );
66 phongTexturedMaterial->setShininess(
static_cast<float>( shadingMaterial.
shininess() ) );
67 phongTexturedMaterial->setDiffuseTexture( texture );
68 phongTexturedMaterial->setOpacity(
static_cast<float>( shadingMaterial.
opacity() ) );
69 material = phongTexturedMaterial;
73 QgsTextureMaterial *textureMaterial =
new QgsTextureMaterial;
74 textureMaterial->setTexture( texture );
75 material = textureMaterial;
86 const QVector<Qt3DRender::QTechnique *> techniques = material->effect()->techniques();
87 for ( Qt3DRender::QTechnique *technique : techniques )
89 const QVector<Qt3DRender::QRenderPass *> passes = technique->renderPasses();
90 for ( Qt3DRender::QRenderPass *pass : passes )
92 Qt3DRender::QCullFace *cullFace =
new Qt3DRender::QCullFace;
93 cullFace->setMode( Qt3DRender::QCullFace::NoCulling );
94 pass->addRenderState( cullFace );
98 entity->addComponent( material );
101Qt3DRender::QTexture2D *QgsTerrainTileLoader::createTexture( QgsTerrainTileEntity *entity )
103 Qt3DRender::QTexture2D *texture =
new Qt3DRender::QTexture2D;
104 QgsTerrainTextureImage *textureImage =
new QgsTerrainTextureImage( mTextureImage, mExtentMapCrs, mTileDebugText );
105 texture->addTextureImage( textureImage );
106 texture->setMinificationFilter( Qt3DRender::QTexture2D::Linear );
107 texture->setMagnificationFilter( Qt3DRender::QTexture2D::Linear );
109 entity->setTextureImage( textureImage );
114void QgsTerrainTileLoader::onTextureLoaded()
119void QgsTerrainTileLoader::onImageReady(
int jobId,
const QImage &image )
121 if ( mTextureJobId == jobId )
123 mTextureImage = image;
QgsTerrainGenerator * terrainGenerator() const
Returns the terrain generator.
QgsCoordinateReferenceSystem crs() const
Returns coordinate reference system used in the 3D scene.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context, which stores various information regarding which datum tran...
static QgsRectangle tryReprojectExtent2D(const QgsRectangle &extent, const QgsCoordinateReferenceSystem &crs1, const QgsCoordinateReferenceSystem &crs2, const QgsCoordinateTransformContext &context)
Reprojects extent from crs1 to crs2 coordinate reference system with context context.
void setIsSelected(bool isSelected)
Sets whether the material should represent a selected state.
QgsMaterial * toMaterial(QgsMaterialSettingsRenderingTechnique technique, const QgsMaterialContext &context) const override
Creates a new QgsMaterial object representing the material settings.
double opacity() const
Returns the opacity of the surface.
QColor specular() const
Returns specular color component.
QColor ambient() const
Returns ambient color component.
double shininess() const
Returns shininess of the surface.
A rectangle specified with double values.
virtual QgsCoordinateReferenceSystem crs() const
Returns CRS of the terrain.
const QgsTilingScheme & tilingScheme() const
Returns tiling scheme of the terrain.
QgsRectangle tileToExtent(int x, int y, int z) const
Returns map coordinates of the extent of a tile.
@ Triangles
Triangle based rendering (default)