25using namespace Qt::StringLiterals;
27#define TINYGLTF_IMPLEMENTATION
28#define TINYGLTF_NO_STB_IMAGE
29#define TINYGLTF_NO_STB_IMAGE_WRITE
36QString QgsB3DMToGltfAlgorithm::name()
const
38 return u
"b3dmtogltf"_s;
41QString QgsB3DMToGltfAlgorithm::displayName()
const
43 return QObject::tr(
"Convert B3DM to GLTF" );
46QStringList QgsB3DMToGltfAlgorithm::tags()
const
48 return QObject::tr(
"3d,tiles,cesium" ).split(
',' );
51QString QgsB3DMToGltfAlgorithm::group()
const
53 return QObject::tr(
"3D Tiles" );
56QString QgsB3DMToGltfAlgorithm::groupId()
const
61QString QgsB3DMToGltfAlgorithm::shortHelpString()
const
63 return QObject::tr(
"This algorithm converts files from the legacy B3DM format to GLTF." );
66QString QgsB3DMToGltfAlgorithm::shortDescription()
const
68 return QObject::tr(
"Converts files from the legacy B3DM format to GLTF." );
71QgsB3DMToGltfAlgorithm *QgsB3DMToGltfAlgorithm::createInstance()
const
73 return new QgsB3DMToGltfAlgorithm();
76void QgsB3DMToGltfAlgorithm::initAlgorithm(
const QVariantMap & )
85 const QString path = parameterAsFile( parameters, u
"INPUT"_s, context );
86 const QString outputPath = parameterAsFile( parameters, u
"OUTPUT"_s, context );
88 if ( !QFile::exists( path ) )
92 QByteArray fileContent;
93 if ( f.open( QIODevice::ReadOnly ) )
95 fileContent = f.readAll();
107 tinygltf::Model model;
110 const bool res = QgsGltfUtils::loadGltfModel( b3dmContent.
gltf, model, &errors, &warnings );
111 if ( !errors.isEmpty() )
115 if ( !warnings.isEmpty() )
122 QFile outputFile( outputPath );
123 if ( !outputFile.open( QFile::WriteOnly ) )
127 outputFile.write( b3dmContent.
gltf );
131 bool sceneOk =
false;
132 const std::size_t sceneIndex = QgsGltfUtils::sourceSceneForModel( model, sceneOk );
138 feedback->
pushDebugInfo( QObject::tr(
"Found %1 scenes" ).arg( model.scenes.size() ) );
140 const tinygltf::Scene &scene = model.scenes[sceneIndex];
141 feedback->
pushDebugInfo( QObject::tr(
"Found %1 nodes in default scene [%2]" ).arg( scene.nodes.size() ).arg( sceneIndex ) );
142 if ( !scene.nodes.empty() )
144 const int nodeIndex = scene.nodes[0];
145 const tinygltf::Node &gltfNode = model.nodes[nodeIndex];
146 if ( gltfNode.mesh >= 0 )
148 const tinygltf::Mesh &mesh = model.meshes[gltfNode.mesh];
149 feedback->
pushDebugInfo( QObject::tr(
"Found %1 primitives in default scene node [%2]" ).arg( mesh.primitives.size() ).arg( nodeIndex ) );
156 tinygltf::Value::Object cesiumRtc;
157 cesiumRtc[
"center"] = tinygltf::Value( tinygltf::Value::Array {
163 model.extensions[
"CESIUM_RTC"] = tinygltf::Value( cesiumRtc );
164 model.extensionsRequired.emplace_back(
"CESIUM_RTC" );
165 model.extensionsUsed.emplace_back(
"CESIUM_RTC" );
168 const QString outputExtension = QFileInfo( outputPath ).suffix();
169 const bool isGlb = outputExtension.compare(
"glb"_L1, Qt::CaseInsensitive ) == 0;
170 const QByteArray outputFile = QFile::encodeName( outputPath );
171 std::ofstream of( outputFile.constData(), std::ios::binary | std::ios::trunc );
175 tinygltf::TinyGLTF writer;
176 if ( !writer.WriteGltfSceneToStream( &model, of,
true, isGlb ) )
185 outputs.insert( u
"OUTPUT"_s, outputPath );
@ File
Parameter is a single file.
static B3DMContents extractGltfFromB3dm(const QByteArray &tileContent)
Extracts GLTF binary data and other contents from the legacy b3dm (Batched 3D Model) tile format.
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushWarning(const QString &warning)
Pushes a warning informational message from the algorithm.
virtual void pushDebugInfo(const QString &info)
Pushes an informational message containing debugging helpers from the algorithm.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
A generic file based destination parameter, for specifying the destination path for a file (non-map l...
An input file or folder parameter for processing algorithms.
double y() const
Returns Y coordinate.
double z() const
Returns Z coordinate.
bool isNull() const
Returns true if all three coordinates are zero.
double x() const
Returns X coordinate.
Encapsulates the contents of a B3DM file.
QByteArray gltf
GLTF binary content.
QgsVector3D rtcCenter
Optional RTC center.