30 QgsTerrainTextureGenerator::QgsTerrainTextureGenerator(
const Qgs3DMapSettings &map )
33 , mTextureSize( QSize( mMap.mapTileResolution(), mMap.mapTileResolution() ) )
37 int QgsTerrainTextureGenerator::render(
const QgsRectangle &extent, QgsChunkNodeId tileId,
const QString &debugText )
40 mapSettings.setExtent( extent );
42 QgsEventTracing::addEvent( QgsEventTracing::AsyncBegin, QStringLiteral(
"3D" ), QStringLiteral(
"Texture" ), tileId.text() );
48 jobData.jobId = ++mLastJobId;
49 jobData.tileId = tileId;
51 jobData.extent = extent;
52 jobData.debugText = debugText;
54 mJobs.insert( job, jobData );
61 void QgsTerrainTextureGenerator::cancelJob(
int jobId )
63 for (
const JobData &jd : std::as_const( mJobs ) )
65 if ( jd.jobId == jobId )
68 jd.job->cancelWithoutBlocking();
70 jd.job->deleteLater();
71 mJobs.remove( jd.job );
75 Q_ASSERT(
false &&
"requested job ID does not exist!" );
78 void QgsTerrainTextureGenerator::waitForFinished()
82 QVector<QgsMapRendererSequentialJob *> toBeDeleted;
85 mapJob->waitForFinished();
86 JobData jobData = mJobs.value( mapJob );
87 toBeDeleted.push_back( mapJob );
89 QImage img = mapJob->renderedImage();
91 if ( mMap.showTerrainTilesInfo() )
95 p.setPen( Qt::white );
96 p.drawRect( 0, 0, img.width() - 1, img.height() - 1 );
97 p.drawText( img.rect(), jobData.debugText, QTextOption( Qt::AlignCenter ) );
102 emit tileReady( jobData.jobId, img );
107 mJobs.remove( mapJob );
108 mapJob->deleteLater();
112 void QgsTerrainTextureGenerator::onRenderingFinished()
116 Q_ASSERT( mJobs.contains( mapJob ) );
117 JobData jobData = mJobs.value( mapJob );
121 if ( mMap.showTerrainTilesInfo() )
125 p.setPen( Qt::white );
126 p.drawRect( 0, 0, img.width() - 1, img.height() - 1 );
127 p.drawText( img.rect(), jobData.debugText, QTextOption( Qt::AlignCenter ) );
131 mapJob->deleteLater();
132 mJobs.remove( mapJob );
136 QgsEventTracing::addEvent( QgsEventTracing::AsyncEnd, QStringLiteral(
"3D" ), QStringLiteral(
"Texture" ), jobData.tileId.text() );
139 emit tileReady( jobData.jobId, img );
155 QString mapThemeName = mMap.terrainMapTheme();
156 if ( mapThemeName.isEmpty() || !mapThemes || !mapThemes->
hasMapTheme( mapThemeName ) )
158 mapSettings.
setLayers( mMap.terrainLayers() );
void finished()
emitted when asynchronous rendering is finished (or canceled).
void start()
Start the rendering job and immediately return.
Job implementation that renders everything sequentially in one thread.
QImage renderedImage() override
Gets a preview/resulting image.
The QgsMapSettings class contains configuration for rendering of the map.
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of layers to render in the map.
@ Render3DMap
Render is for a 3D map.
@ DrawLabeling
Enable drawing of labels on top of the map.
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Sets the map of map layer style overrides (key: layer ID, value: style name) where a different style ...
void setTransformContext(const QgsCoordinateTransformContext &context)
Sets the coordinate transform context, which stores various information regarding which datum transfo...
void setPathResolver(const QgsPathResolver &resolver)
Sets the path resolver for conversion between relative and absolute paths during rendering operations...
void setFlag(Flag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected)
void setOutputSize(QSize size)
Sets the size of the resulting map image, in pixels.
void setBackgroundColor(const QColor &color)
Sets the background color of the map.
void setDestinationCrs(const QgsCoordinateReferenceSystem &crs)
Sets the destination crs (coordinate reference system) for the map render.
Container class that allows storage of map themes consisting of visible map layers and layer styles.
bool hasMapTheme(const QString &name) const
Returns whether a map theme with a matching name exists.
QList< QgsMapLayer * > mapThemeVisibleLayers(const QString &name) const
Returns the list of layers that are visible for the specified map theme.
QMap< QString, QString > mapThemeStyleOverrides(const QString &name)
Gets layer style overrides (for QgsMapSettings) of the visible layers for given map theme.
A rectangle specified with double values.