40 #include <Qt3DExtras/QPhongMaterial>
47 auto requestImageFcn = [&engine, scene]
55 auto saveImageFcn = [&evLoop, &resImage](
const QImage & img )
62 QMetaObject::Connection conn2;
76 QObject::disconnect( conn1 );
78 QObject::disconnect( conn2 );
86 const QString &outputDirectory,
87 const QString &fileNameTemplate,
88 const QSize &outputSize,
98 if ( animationSettings.
keyFrames().size() < 2 )
100 error = QObject::tr(
"Unable to export 3D animation. Add at least 2 keyframes" );
104 const float duration = animationSettings.
duration();
107 error = QObject::tr(
"Unable to export 3D animation (invalid duration)." );
113 int totalFrames =
static_cast<int>( duration * framesPerSecond );
115 if ( fileNameTemplate.isEmpty() )
117 error = QObject::tr(
"Filename template is empty" );
121 int numberOfDigits = fileNameTemplate.count( QLatin1Char(
'#' ) );
122 if ( numberOfDigits < 0 )
124 error = QObject::tr(
"Wrong filename template format (must contain #)" );
127 const QString token( numberOfDigits, QLatin1Char(
'#' ) );
128 if ( !fileNameTemplate.contains( token ) )
130 error = QObject::tr(
"Filename template must contain all # placeholders in one continuous group." );
134 while ( time <= duration )
141 error = QObject::tr(
"Export canceled" );
144 feedback->
setProgress( frameNo /
static_cast<double>( totalFrames ) * 100 );
151 QString fileName( fileNameTemplate );
152 const QString frameNoPaddedLeft( QStringLiteral(
"%1" ).arg( frameNo, numberOfDigits, 10, QChar(
'0' ) ) );
153 fileName.replace( token, frameNoPaddedLeft );
154 const QString path = QDir( outputDirectory ).filePath( fileName );
160 time += 1.0f /
static_cast<float>( framesPerSecond );
169 if ( maxError <= 0 || tileResolution <= 0 || tile0width <= 0 )
176 double zoomLevel = -log( tileResolution * maxError / tile0width ) / log( 2 );
177 return round( zoomLevel );
187 default: Q_ASSERT(
false );
return QString();
194 if ( str == QLatin1String(
"absolute" ) )
196 else if ( str == QLatin1String(
"terrain" ) )
209 default: Q_ASSERT(
false );
return QString();
216 if ( str == QLatin1String(
"vertex" ) )
236 if ( str == QLatin1String(
"front" ) )
238 else if ( str == QLatin1String(
"back" ) )
240 else if ( str == QLatin1String(
"front-and-back" ) )
273 pt.
setX( lineString->
xAt( i ) );
274 pt.
setY( lineString->
yAt( i ) );
278 pt.
set( centroid.
x(), centroid.
y() );
285 geomZ = lineString->
zAt( i );
288 lineString->
setZAt( i, z );
295 if ( !polygon->
is3D() )
303 QgsLineString *lineString = qgsgeometry_cast<QgsLineString *>( curve );
307 clampAltitudes( lineString, altClamp, altBind, centroid, height, map );
312 QgsLineString *lineString = qgsgeometry_cast<QgsLineString *>( curve );
316 clampAltitudes( lineString, altClamp, altBind, centroid, height, map );
324 const float *d = m.constData();
327 for (
int i = 0; i < 16; ++i )
328 elems << QString::number( d[i] );
329 return elems.join(
' ' );
336 QStringList elems = str.split(
' ' );
337 for (
int i = 0; i < 16; ++i )
338 d[i] = elems[i].toFloat();
365 h = terrainZ + geomZ;
368 positions.append( QVector3D( pt.
x() - map.
origin().
x(), h, -( pt.
y() - map.
origin().
y() ) ) );
369 QgsDebugMsgLevel( QStringLiteral(
"%1 %2 %3" ).arg( positions.last().x() ).arg( positions.last().y() ).arg( positions.last().z() ), 2 );
378 static inline uint outcode( QVector4D v )
388 if ( v.x() < -v.w() ) code |= 0x01;
389 if ( v.x() > v.w() ) code |= 0x02;
390 if ( v.y() < -v.w() ) code |= 0x04;
391 if ( v.y() > v.w() ) code |= 0x08;
392 if ( v.z() < -v.w() ) code |= 0x10;
393 if ( v.z() > v.w() ) code |= 0x20;
412 for (
int i = 0; i < 8; ++i )
414 QVector4D p( ( ( i >> 0 ) & 1 ) ? bbox.
xMin : bbox.
xMax,
415 ( ( i >> 1 ) & 1 ) ? bbox.
yMin : bbox.
yMax,
416 ( ( i >> 2 ) & 1 ) ? bbox.
zMin : bbox.
zMax, 1 );
417 QVector4D pc = viewProjectionMatrix * p;
421 out = out & outcode( pc );
429 mapCoords.
z() - origin.
z(),
430 -( mapCoords.
y() - origin.
y() ) );
437 -worldCoords.
z() + origin.
y(),
438 worldCoords.
y() + origin.
z() );
450 extentMapCrs = ct.transformBoundingBox( extentMapCrs );
455 QgsDebugMsg( QStringLiteral(
"3D utils: transformation of extent failed: " ) + extentMapCrs.toString( -1 ) );
463 QgsRectangle extentMapCrs( _tryReprojectExtent2D( extent, layerCrs, mapCrs, context ) );
470 return _tryReprojectExtent2D( extentMap, mapCrs, layerCrs, context );
479 QgsAABB rootBbox( worldExtentMin3D.
x(), worldExtentMin3D.
y(), worldExtentMin3D.
z(),
480 worldExtentMax3D.
x(), worldExtentMax3D.
y(), worldExtentMax3D.
z() );
488 QgsRectangle extentMap( worldExtentMin3D.
x(), worldExtentMin3D.
y(), worldExtentMax3D.
x(), worldExtentMax3D.
y() );
505 mapPoint2.
set( pt.
x(), pt.
y(), mapPoint1.
z() );
524 zMin = std::numeric_limits<double>::max();
525 zMax = std::numeric_limits<double>::min();
534 double z = ( *vit ).z();
535 if ( z < zMin ) zMin = z;
536 if ( z > zMax ) zMax = z;
540 if ( zMin == std::numeric_limits<double>::max() && zMax == std::numeric_limits<double>::min() )
568 QVector3D deviceCoords( point.x(), point.y(), 0.0 );
570 QVector3D normDeviceCoords( 2.0 * deviceCoords.x() / windowSize.width() - 1.0f, 1.0f - 2.0 * deviceCoords.y() / windowSize.height(), camera->nearPlane() );
572 QVector4D rayClip( normDeviceCoords.x(), normDeviceCoords.y(), -1.0, 0.0 );
574 QMatrix4x4 invertedProjMatrix = camera->projectionMatrix().inverted();
575 QMatrix4x4 invertedViewMatrix = camera->viewMatrix().inverted();
578 QVector4D rayDirView = invertedProjMatrix * rayClip;
580 QVector4D rayOriginWorld = invertedViewMatrix * QVector4D( 0.0f, 0.0f, 0.0f, 1.0f );
583 rayDirView.setZ( -1.0f );
584 rayDirView.setW( 0.0f );
585 QVector4D rayDirWorld4D = invertedViewMatrix * rayDirView;
586 QVector3D rayDirWorld( rayDirWorld4D.x(), rayDirWorld4D.y(), rayDirWorld4D.z() );
587 rayDirWorld = rayDirWorld.normalized();
589 return QgsRay3D( QVector3D( rayOriginWorld ), rayDirWorld );
Keyframe interpolate(float time) const
Interpolates camera position and rotation at the given point in time.
float duration() const
Returns duration of the whole animation in seconds.
Keyframes keyFrames() const
Returns keyframes of the animation.
@ Ready
The scene is fully loaded/updated.
QgsCameraController * cameraController()
Returns camera controller.
void sceneStateChanged()
Emitted when the scene's state has changed.
SceneState sceneState() const
Returns the current state of the scene.
QgsTerrainGenerator * terrainGenerator() const
Returns terrain generator. It takes care of producing terrain tiles from the input data.
double terrainVerticalScale() const
Returns vertical scale (exaggeration) of terrain.
QgsVector3D origin() const
Returns coordinates in map CRS at which 3D scene has origin (0,0,0)
AltitudeClamping
how to handle altitude of vector features
@ AltClampAbsolute
Z_final = z_geometry.
@ AltClampTerrain
Z_final = z_terrain.
@ AltClampRelative
Z_final = z_terrain + z_geometry.
AltitudeBinding
how to handle clamping of vertices of individual features
@ AltBindCentroid
Clamp just centroid of feature.
@ AltBindVertex
Clamp every vertex of feature.
CullingMode
Triangle culling mode.
@ FrontAndBack
Will not render anything.
@ NoCulling
Will render both front and back faces of triangles.
@ Front
Will render only back faces of triangles.
@ Back
Will render only front faces of triangles (recommended when input data are consistent)
static QgsVector3D transformWorldCoordinates(const QgsVector3D &worldPoint1, const QgsVector3D &origin1, const QgsCoordinateReferenceSystem &crs1, const QgsVector3D &origin2, const QgsCoordinateReferenceSystem &crs2, const QgsCoordinateTransformContext &context)
Transforms a world point from (origin1, crs1) to (origin2, crs2)
static QString altBindingToString(Qgs3DTypes::AltitudeBinding altBind)
Converts a value from AltitudeBinding enum to a string.
static Qgs3DTypes::CullingMode cullingModeFromString(const QString &str)
Converts a string to a value from CullingMode enum.
static QString altClampingToString(Qgs3DTypes::AltitudeClamping altClamp)
Converts a value from AltitudeClamping enum to a string.
static void clampAltitudes(QgsLineString *lineString, Qgs3DTypes::AltitudeClamping altClamp, Qgs3DTypes::AltitudeBinding altBind, const QgsPoint ¢roid, float height, const Qgs3DMapSettings &map)
Clamps altitude of vertices of a linestring according to the settings.
static QString matrix4x4toString(const QMatrix4x4 &m)
Converts a 4x4 transform matrix to a string.
static QgsRectangle worldToMapExtent(const QgsAABB &bbox, const QgsVector3D &mapOrigin)
Converts axis aligned bounding box in 3D world coordinates to extent in map coordinates.
static QgsRectangle worldToLayerExtent(const QgsAABB &bbox, const QgsCoordinateReferenceSystem &layerCrs, const QgsVector3D &mapOrigin, const QgsCoordinateReferenceSystem &mapCrs, const QgsCoordinateTransformContext &context)
Converts axis aligned bounding box in 3D world coordinates to extent in map layer CRS.
static int maxZoomLevel(double tile0width, double tileResolution, double maxError)
Calculates the highest needed zoom level for tiles in quad-tree given width of the base tile (zoom le...
static QgsAABB mapToWorldExtent(const QgsRectangle &extent, double zMin, double zMax, const QgsVector3D &mapOrigin)
Converts map extent to axis aligned bounding box in 3D world coordinates.
static float clampAltitude(const QgsPoint &p, Qgs3DTypes::AltitudeClamping altClamp, Qgs3DTypes::AltitudeBinding altBind, float height, const QgsPoint ¢roid, const Qgs3DMapSettings &map)
Clamps altitude of a vertex according to the settings, returns Z value.
static QgsAABB layerToWorldExtent(const QgsRectangle &extent, double zMin, double zMax, const QgsCoordinateReferenceSystem &layerCrs, const QgsVector3D &mapOrigin, const QgsCoordinateReferenceSystem &mapCrs, const QgsCoordinateTransformContext &context)
Converts extent (in map layer's CRS) to axis aligned bounding box in 3D world coordinates.
static QString cullingModeToString(Qgs3DTypes::CullingMode mode)
Converts a value from CullingMode enum to a string.
static bool isCullable(const QgsAABB &bbox, const QMatrix4x4 &viewProjectionMatrix)
Returns true if bbox is completely outside the current viewing volume.
static void estimateVectorLayerZRange(QgsVectorLayer *layer, double &zMin, double &zMax)
Try to estimate range of Z values used in the given vector layer and store that in zMin and zMax.
static QgsPhongMaterialSettings phongMaterialFromQt3DComponent(Qt3DExtras::QPhongMaterial *material)
Returns phong material settings object based on the Qt3D material.
static void extractPointPositions(const QgsFeature &f, const Qgs3DMapSettings &map, Qgs3DTypes::AltitudeClamping altClamp, QVector< QVector3D > &positions)
Calculates (x,y,z) positions of (multi)point from the given feature.
static Qgs3DTypes::AltitudeClamping altClampingFromString(const QString &str)
Converts a string to a value from AltitudeClamping enum.
static QMatrix4x4 stringToMatrix4x4(const QString &str)
Convert a string to a 4x4 transform matrix.
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,...
static bool exportAnimation(const Qgs3DAnimationSettings &animationSettings, const Qgs3DMapSettings &mapSettings, int framesPerSecond, const QString &outputDirectory, const QString &fileNameTemplate, const QSize &outputSize, QString &error, QgsFeedback *feedback=nullptr)
Captures 3D animation frames to the selected folder.
static QgsRay3D rayFromScreenPoint(const QPoint &point, const QSize &windowSize, Qt3DRender::QCamera *camera)
Convert from clicked point on the screen to a ray in world coordinates.
static QImage captureSceneImage(QgsAbstract3DEngine &engine, Qgs3DMapScene *scene)
Captures image of the current 3D scene of a 3D engine.
static Qgs3DTypes::AltitudeBinding altBindingFromString(const QString &str)
Converts a string to a value from AltitudeBinding enum.
static QgsExpressionContext globalProjectLayerExpressionContext(QgsVectorLayer *layer)
Returns expression context for use in preparation of 3D data of a layer.
void requestCaptureImage()
Starts a request for an image rendered by the engine.
void imageCaptured(const QImage &image)
Emitted after a call to requestCaptureImage() to return the captured image.
Abstract base class for all geometries.
vertex_iterator vertices_end() const
Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry.
bool is3D() const SIP_HOLDGIL
Returns true if the geometry is 3D and contains a z-value.
vertex_iterator vertices_begin() const
Returns STL-style iterator pointing to the first vertex of the geometry.
virtual QgsPoint centroid() const
Returns the centroid of the geometry.
void setLookingAtPoint(const QgsVector3D &point, float distance, float pitch, float yaw)
Sets the complete camera configuration: the point towards it is looking (in 3D world coordinates),...
This class represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
Custom exception class for Coordinate Reference System related exceptions.
bool addZValue(double zValue=0) override
Adds a z-dimension to the geometry, initialized to a preset value.
const QgsCurve * interiorRing(int i) const SIP_HOLDGIL
Retrieves an interior ring from the curve polygon.
const QgsCurve * exteriorRing() const SIP_HOLDGIL
Returns the curve polygon's exterior ring.
int numInteriorRings() const SIP_HOLDGIL
Returns the number of interior rings contained with the curve polygon.
Abstract base class for curved geometry type.
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
static QgsExpressionContextScope * globalScope()
Creates a new scope which contains variables and functions relating to the global QGIS context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
This class wraps a request for features to a vector layer (or directly its vector data provider).
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const SIP_HOLDGIL
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsAbstractGeometry::vertex_iterator vertices_begin() const
Returns STL-style iterator pointing to the first vertex of the geometry.
QgsAbstractGeometry::vertex_iterator vertices_end() const
Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry.
Line string geometry type, with support for z-dimension and m-values.
double yAt(int index) const override
Returns the y-coordinate of the specified node in the line string.
void setZAt(int index, double z)
Sets the z-coordinate of the specified node in the line string.
int nCoordinates() const override SIP_HOLDGIL
Returns the number of nodes contained in the geometry.
double zAt(int index) const
Returns the z-coordinate of the specified node in the line string.
double xAt(int index) const override
Returns the x-coordinate of the specified node in the line string.
void setSize(QSize s) override
Sets the size of the rendering area (in pixels)
void setRootEntity(Qt3DCore::QEntity *root) override
Sets root entity of the 3D scene.
void setDiffuse(const QColor &diffuse)
Sets diffuse color component.
void setAmbient(const QColor &ambient)
Sets ambient color component.
void setShininess(float shininess)
Sets shininess of the surface.
void setSpecular(const QColor &specular)
Sets specular color component.
A class to represent a 2D point.
void set(double x, double y) SIP_HOLDGIL
Sets the x and y value of the point.
void setX(double x) SIP_HOLDGIL
Sets the x value of the point.
void setY(double y) SIP_HOLDGIL
Sets the y value of the point.
Point geometry type, with support for z-dimension and m-values.
static QgsProject * instance()
Returns the QgsProject singleton instance.
A representation of a ray in 3D.
A rectangle specified with double values.
double yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
virtual float heightAt(double x, double y, const Qgs3DMapSettings &map) const
Returns height at (x,y) in terrain's CRS.
double y() const
Returns Y coordinate.
double z() const
Returns Z coordinate.
double x() const
Returns X coordinate.
void set(double x, double y, double z)
Sets vector coordinates.
Represents a vector layer which manages a vector based data sets.
Q_INVOKABLE QgsWkbTypes::Type wkbType() const FINAL
Returns the WKBType or WKBUnknown in case of error.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
static bool hasZ(Type type) SIP_HOLDGIL
Tests whether a WKB type contains the z-dimension.
#define QgsDebugMsgLevel(str, level)
float pitch
Tilt of the camera in degrees (0 = looking from the top, 90 = looking from the side,...
float yaw
Horizontal rotation around the focal point in degrees.
QgsVector3D point
Point towards which the camera is looking in 3D world coords.
float dist
Distance of the camera from the focal point.