Merge multiple meshes in a node into one mesh with many primtives; write out only...
authorDaniel Hritzkiv <daniel.hritzkiv@gmail.com>
Sun, 17 Sep 2017 21:00:57 +0000 (17:00 -0400)
committerDaniel Hritzkiv <daniel.hritzkiv@gmail.com>
Mon, 18 Sep 2017 15:16:05 +0000 (11:16 -0400)
To do:
- clean up MergeMeshes
- see if there’s a way to do this earlier in the flow

code/glTF2AssetWriter.inl
code/glTF2Exporter.cpp
code/glTF2Exporter.h

index dd90ec5..df28cb6 100644 (file)
@@ -417,7 +417,9 @@ namespace glTF2 {
 
         AddRefsVector(obj, "children", n.children, w.mAl);
 
-        AddRefsVector(obj, "meshes", n.meshes, w.mAl);
+        if (!n.meshes.empty()) {
+            obj.AddMember("mesh", n.meshes[0]->index, w.mAl);
+        }
 
         AddRefsVector(obj, "skeletons", n.skeletons, w.mAl);
 
index 56932db..f63c8e8 100644 (file)
@@ -110,6 +110,7 @@ glTF2Exporter::glTF2Exporter(const char* filename, IOSystem* pIOSystem, const ai
     }
 
     ExportMeshes();
+    MergeMeshes();
 
     ExportScene();
 
@@ -743,6 +744,27 @@ void glTF2Exporter::ExportMeshes()
     }
 }
 
+void glTF2Exporter::MergeMeshes()
+{
+    for (unsigned int n = 0; n < mAsset->nodes.Size(); ++n) {
+        Ref<Node> node = mAsset->nodes.Get(n);
+
+        unsigned int nMeshes = node->meshes.size();
+
+        if (nMeshes) {
+            Ref<Mesh> firstMesh = node->meshes.at(0);
+
+            for (unsigned int m = 1; m < nMeshes; ++m) {
+                Ref<Mesh> mesh = node->meshes.at(m);
+                Mesh::Primitive primitive = mesh->primitives.at(0);
+                firstMesh->primitives.push_back(primitive);
+            }
+
+            node->meshes.erase(node->meshes.begin() + 1, node->meshes.end());
+        }
+    }
+}
+
 /*
  * Export the root node of the node hierarchy.
  * Calls ExportNode for all children.
index 420c2af..3aed35a 100644 (file)
@@ -120,6 +120,7 @@ namespace Assimp
         void ExportMetadata();
         void ExportMaterials();
         void ExportMeshes();
+        void MergeMeshes();
         unsigned int ExportNodeHierarchy(const aiNode* n);
         unsigned int ExportNode(const aiNode* node, glTF2::Ref<glTF2::Node>& parent);
         void ExportScene();