QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsvectorlayerchunkloader_p.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsvectorlayerchunkloader_p.h
3 --------------------------------------
4 Date : July 2019
5 Copyright : (C) 2019 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
16#ifndef QGSVECTORLAYERCHUNKLOADER_P_H
17#define QGSVECTORLAYERCHUNKLOADER_P_H
18
20
21//
22// W A R N I N G
23// -------------
24//
25// This file is not part of the QGIS API. It exists purely as an
26// implementation detail. This header file may change from version to
27// version without notice, or even be removed.
28//
29
30#include "qgschunkedentity.h"
31#include "qgschunkloader.h"
33
34#define SIP_NO_FILE
35
36class QgsVectorLayer;
40class QgsFeature3DHandler;
41
42namespace Qt3DCore
43{
44 class QTransform;
45}
46
47#include <QFutureWatcher>
48
49
57class QgsVectorLayerChunkLoaderFactory : public QgsQuadtreeChunkLoaderFactory
58{
59 Q_OBJECT
60
61 public:
63 QgsVectorLayerChunkLoaderFactory( const Qgs3DRenderContext &context, QgsVectorLayer *vl, QgsAbstract3DSymbol *symbol, int leafLevel, double zMin, double zMax );
64
66 QgsChunkLoader *createChunkLoader( QgsChunkNode *node ) const override;
67
68 Qgs3DRenderContext mRenderContext;
69 QgsVectorLayer *mLayer;
70 std::unique_ptr<QgsAbstract3DSymbol> mSymbol;
71 int mLeafLevel;
72};
73
74
83class QgsVectorLayerChunkLoader : public QgsChunkLoader
84{
85 Q_OBJECT
86
87 public:
89 QgsVectorLayerChunkLoader( const QgsVectorLayerChunkLoaderFactory *factory, QgsChunkNode *node );
90 ~QgsVectorLayerChunkLoader() override;
91
92 void start() override;
93 void cancel() override;
94 Qt3DCore::QEntity *createEntity( Qt3DCore::QEntity *parent ) override;
95
96 private:
97 const QgsVectorLayerChunkLoaderFactory *mFactory;
98 std::unique_ptr<QgsFeature3DHandler> mHandler;
99 Qgs3DRenderContext mRenderContext;
100 std::unique_ptr<QgsVectorLayerFeatureSource> mSource;
101 bool mCanceled = false;
102 QFutureWatcher<void> *mFutureWatcher = nullptr;
103 QString mLayerName;
104};
105
106
117class QgsVectorLayerChunkedEntity : public QgsChunkedEntity
118{
119 Q_OBJECT
120 public:
122 explicit QgsVectorLayerChunkedEntity( Qgs3DMapSettings *map, QgsVectorLayer *vl, double zMin, double zMax, const QgsVectorLayer3DTilingSettings &tilingSettings, QgsAbstract3DSymbol *symbol );
123
124 QList<QgsRayCastHit> rayIntersection( const QgsRay3D &ray, const QgsRayCastContext &context ) const override;
125
126 ~QgsVectorLayerChunkedEntity() override;
127 private slots:
128 void onTerrainElevationOffsetChanged();
129
130 private:
131 friend class QgsRuleBasedChunkedEntity;
133 static QList<QgsRayCastHit> rayIntersection( const QList<QgsChunkNode *> &activeNodes, const QMatrix4x4 &transformMatrix, const QgsRay3D &ray, const QgsRayCastContext &context, const QgsVector3D &origin );
134
135 Qt3DCore::QTransform *mTransform = nullptr;
136
137 bool applyTerrainOffset() const;
138
139 friend class TestQgsChunkedEntity;
140};
141
143
144#endif // QGSVECTORLAYERCHUNKLOADER_P_H
Abstract base class for 3D symbols that are used by VectorLayer3DRenderer objects.
Defines configuration of how a vector layer gets tiled for 3D rendering.
Partial snapshot of vector layer's state (only the members necessary for access to features).
Represents a vector layer which manages a vector based dataset.