22#define TINYGLTF_IMPLEMENTATION
23#define TINYGLTF_NO_STB_IMAGE
24#define TINYGLTF_NO_STB_IMAGE_WRITE
31QString QgsB3DMToGltfAlgorithm::name()
const
33 return QStringLiteral(
"b3dmtogltf" );
36QString QgsB3DMToGltfAlgorithm::displayName()
const
38 return QObject::tr(
"Convert B3DM to GLTF" );
41QStringList QgsB3DMToGltfAlgorithm::tags()
const
43 return QObject::tr(
"3d,tiles,cesium" ).split(
',' );
46QString QgsB3DMToGltfAlgorithm::group()
const
48 return QObject::tr(
"3D Tiles" );
51QString QgsB3DMToGltfAlgorithm::groupId()
const
53 return QStringLiteral(
"3dtiles" );
56QString QgsB3DMToGltfAlgorithm::shortHelpString()
const
58 return QObject::tr(
"Converts files from the legacy B3DM format to GLTF." );
61QgsB3DMToGltfAlgorithm *QgsB3DMToGltfAlgorithm::createInstance()
const
63 return new QgsB3DMToGltfAlgorithm();
66void QgsB3DMToGltfAlgorithm::initAlgorithm(
const QVariantMap & )
75 const QString path = parameterAsFile( parameters, QStringLiteral(
"INPUT" ), context );
76 const QString outputPath = parameterAsFile( parameters, QStringLiteral(
"OUTPUT" ), context );
78 if ( !QFile::exists( path ) )
82 QByteArray fileContent;
83 if ( f.open( QIODevice::ReadOnly ) )
85 fileContent = f.readAll();
97 tinygltf::Model model;
100 const bool res = QgsGltfUtils::loadGltfModel( b3dmContent.
gltf, model, &errors, &warnings );
101 if ( !errors.isEmpty() )
105 if ( !warnings.isEmpty() )
112 QFile outputFile( outputPath );
113 if ( !outputFile.open( QFile::WriteOnly ) )
117 outputFile.write( b3dmContent.
gltf );
121 bool sceneOk =
false;
122 const std::size_t sceneIndex = QgsGltfUtils::sourceSceneForModel( model, sceneOk );
128 feedback->
pushDebugInfo( QObject::tr(
"Found %1 scenes" ).arg( model.scenes.size() ) );
130 const tinygltf::Scene &scene = model.scenes[sceneIndex];
131 feedback->
pushDebugInfo( QObject::tr(
"Found %1 nodes in default scene [%2]" ).arg( scene.nodes.size() ).arg( sceneIndex ) );
132 if ( !scene.nodes.empty() )
134 const int nodeIndex = scene.nodes[0];
135 const tinygltf::Node &gltfNode = model.nodes[nodeIndex];
136 if ( gltfNode.mesh >= 0 )
138 const tinygltf::Mesh &mesh = model.meshes[gltfNode.mesh];
139 feedback->
pushDebugInfo( QObject::tr(
"Found %1 primitives in default scene node [%2]" ).arg( mesh.primitives.size() ).arg( nodeIndex ) );
146 tinygltf::Value::Object cesiumRtc;
147 cesiumRtc[
"center"] = tinygltf::Value( tinygltf::Value::Array {
153 model.extensions[
"CESIUM_RTC"] = tinygltf::Value( cesiumRtc );
154 model.extensionsRequired.emplace_back(
"CESIUM_RTC" );
155 model.extensionsUsed.emplace_back(
"CESIUM_RTC" );
158 const QString outputExtension = QFileInfo( outputPath ).suffix();
159 const bool isGlb = outputExtension.compare( QLatin1String(
"glb" ), Qt::CaseInsensitive ) == 0;
160 const QByteArray outputFile = QFile::encodeName( outputPath );
161 std::ofstream of( outputFile.constData(), std::ios::binary | std::ios::trunc );
165 tinygltf::TinyGLTF writer;
166 if ( !writer.WriteGltfSceneToStream( &model, of,
true, isGlb ) )
175 outputs.insert( QStringLiteral(
"OUTPUT" ), 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.