mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Finish TriangleListMesh generation, rename some things
This commit is contained in:
parent
7d37a064f2
commit
023d73a25d
3 changed files with 25 additions and 27 deletions
|
@ -230,7 +230,7 @@ public:
|
|||
};
|
||||
|
||||
|
||||
/// Simple Triangle List <esh
|
||||
/// Simple Triangle List Mesh
|
||||
struct TriangleListMesh {
|
||||
std::vector<glm::vec3> vertices;
|
||||
std::vector<uint32_t> indices;
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
|
||||
#include <unordered_map>
|
||||
|
||||
// TODO: Remove after testing
|
||||
#include <unordered_set>
|
||||
|
||||
#include <GLMHelpers.h>
|
||||
#include <glm/gtx/hash.hpp>
|
||||
|
||||
|
@ -144,38 +147,36 @@ ReweightedDeformers getReweightedDeformers(const size_t numMeshVertices, const s
|
|||
return reweightedDeformers;
|
||||
}
|
||||
|
||||
|
||||
const TriangleListMesh generateTriangleListMesh(const std::vector<glm::vec3>& srcVertices, const std::vector<HFMMeshPart>& srcParts) {
|
||||
|
||||
TriangleListMesh dest;
|
||||
|
||||
// just copy vertices
|
||||
dest.vertices.insert(dest.vertices.end(), srcVertices.cbegin(), srcVertices.cend());
|
||||
// copy vertices for now
|
||||
dest.vertices = srcVertices;
|
||||
|
||||
/* std::vector<uint32_t> remap(srcVertices.size());
|
||||
std::vector<uint32_t> oldToNewIndex(srcVertices.size());
|
||||
{
|
||||
std::unordered_map<glm::vec3, uint32_t> uniqueVertices;
|
||||
int vi = 0;
|
||||
int vu = 0;
|
||||
for (const auto& v : srcVertices) {
|
||||
auto foundIndex = uniqueVertices.find(v);
|
||||
if (foundIndex != uniqueVertices.end()) {
|
||||
remap[vi] = foundIndex->second;
|
||||
std::unordered_map<glm::vec3, uint32_t> uniqueVertexToNewIndex;
|
||||
int oldIndex = 0;
|
||||
int newIndex = 0;
|
||||
for (const auto& srcVertex : srcVertices) {
|
||||
auto foundIndex = uniqueVertexToNewIndex.find(srcVertex);
|
||||
if (foundIndex != uniqueVertexToNewIndex.end()) {
|
||||
oldToNewIndex[oldIndex] = foundIndex->second;
|
||||
} else {
|
||||
uniqueVertices[v] = vu;
|
||||
remap[vi] = vu;
|
||||
dest.vertices[vu] = v;
|
||||
vu++;
|
||||
uniqueVertexToNewIndex[srcVertex] = newIndex;
|
||||
oldToNewIndex[oldIndex] = newIndex;
|
||||
dest.vertices[newIndex] = srcVertex;
|
||||
++newIndex;
|
||||
}
|
||||
++vi;
|
||||
++oldIndex;
|
||||
}
|
||||
if (uniqueVertices.size() < srcVertices.size()) {
|
||||
dest.vertices.resize(uniqueVertices.size());
|
||||
if (uniqueVertexToNewIndex.size() < srcVertices.size()) {
|
||||
dest.vertices.resize(uniqueVertexToNewIndex.size());
|
||||
dest.vertices.shrink_to_fit();
|
||||
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
auto newIndicesCount = 0;
|
||||
for (const auto& part : srcParts) {
|
||||
newIndicesCount += part.triangleIndices.size() + part.quadTrianglesIndices.size();
|
||||
|
@ -187,18 +188,15 @@ const TriangleListMesh generateTriangleListMesh(const std::vector<glm::vec3>& sr
|
|||
for (const auto& part : srcParts) {
|
||||
glm::ivec2 spart(i, 0);
|
||||
for (const auto& qti : part.quadTrianglesIndices) {
|
||||
dest.indices[i] = qti; //remap[qti];
|
||||
dest.indices[i] = oldToNewIndex[qti];
|
||||
++i;
|
||||
}
|
||||
for (const auto& ti : part.triangleIndices) {
|
||||
dest.indices[i] = ti; //remap[ti];
|
||||
dest.indices[i] = oldToNewIndex[ti];
|
||||
++i;
|
||||
}
|
||||
spart.y = i - spart.x;
|
||||
dest.parts.push_back(spart);
|
||||
|
||||
// dest.indices.insert(dest.indices.end(), part.quadTrianglesIndices.cbegin(), part.quadTrianglesIndices.cend());
|
||||
// dest.indices.insert(dest.indices.end(), part.triangleIndices.cbegin(), part.triangleIndices.cend());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ namespace baker {
|
|||
for (int i = 0; i < meshesIn.size(); i++) {
|
||||
auto& mesh = meshesIn[i];
|
||||
|
||||
auto meshPointer = const_cast<HFMMesh*> (&mesh);
|
||||
auto meshPointer = const_cast<HFMMesh*>(&mesh);
|
||||
meshPointer->_vertices = meshPointer->vertices.toStdVector();
|
||||
|
||||
indexedTrianglesMeshOut[i] = hfm::generateTriangleListMesh(meshPointer->_vertices, mesh.parts);
|
||||
|
|
Loading…
Reference in a new issue