2015-05-19 03:48:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-02-23 21:30:05 +00:00
|
|
|
Copyright (c) 2006-2024, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2017-05-09 17:57:36 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
2015-05-19 03:48:29 +00:00
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the assimp team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the assimp team.
|
|
|
|
|
2015-05-19 03:52:10 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
2015-05-19 03:52:10 +00:00
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
2015-05-19 03:48:29 +00:00
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
2015-05-19 03:52:10 +00:00
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
2015-05-19 03:48:29 +00:00
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
2015-05-19 03:52:10 +00:00
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2015-05-19 03:48:29 +00:00
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
/** @file Implementation of the post processing step "MakeVerboseFormat"
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MakeVerboseFormat.h"
|
2016-06-06 20:04:29 +00:00
|
|
|
#include <assimp/scene.h>
|
|
|
|
#include <assimp/DefaultLogger.hpp>
|
2015-05-19 03:48:29 +00:00
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Executes the post processing step on the given imported data.
|
2020-06-23 19:05:42 +00:00
|
|
|
void MakeVerboseFormatProcess::Execute(aiScene *pScene) {
|
|
|
|
ai_assert(nullptr != pScene);
|
2018-04-26 12:10:18 +00:00
|
|
|
ASSIMP_LOG_DEBUG("MakeVerboseFormatProcess begin");
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
bool bHas = false;
|
2020-06-23 19:05:42 +00:00
|
|
|
for (unsigned int a = 0; a < pScene->mNumMeshes; a++) {
|
|
|
|
if (MakeVerboseFormat(pScene->mMeshes[a]))
|
2015-05-19 03:57:13 +00:00
|
|
|
bHas = true;
|
|
|
|
}
|
2018-04-26 12:10:18 +00:00
|
|
|
if (bHas) {
|
|
|
|
ASSIMP_LOG_INFO("MakeVerboseFormatProcess finished. There was much work to do ...");
|
|
|
|
} else {
|
|
|
|
ASSIMP_LOG_DEBUG("MakeVerboseFormatProcess. There was nothing to do.");
|
|
|
|
}
|
2015-05-19 03:48:29 +00:00
|
|
|
|
2015-05-19 03:57:13 +00:00
|
|
|
pScene->mFlags &= ~AI_SCENE_FLAGS_NON_VERBOSE_FORMAT;
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
2018-04-26 12:10:18 +00:00
|
|
|
|
2015-05-19 03:48:29 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Executes the post processing step on the given imported data.
|
2020-06-23 19:05:42 +00:00
|
|
|
bool MakeVerboseFormatProcess::MakeVerboseFormat(aiMesh *pcMesh) {
|
|
|
|
ai_assert(nullptr != pcMesh);
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
unsigned int iOldNumVertices = pcMesh->mNumVertices;
|
2020-06-23 19:05:42 +00:00
|
|
|
const unsigned int iNumVerts = pcMesh->mNumFaces * 3;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
aiVector3D *pvPositions = new aiVector3D[iNumVerts];
|
2015-05-19 03:57:13 +00:00
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
aiVector3D *pvNormals = nullptr;
|
|
|
|
if (pcMesh->HasNormals()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
pvNormals = new aiVector3D[iNumVerts];
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
aiVector3D *pvTangents = nullptr, *pvBitangents = nullptr;
|
|
|
|
if (pcMesh->HasTangentsAndBitangents()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
pvTangents = new aiVector3D[iNumVerts];
|
|
|
|
pvBitangents = new aiVector3D[iNumVerts];
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:03:55 +00:00
|
|
|
aiVector3D *apvTextureCoords[AI_MAX_NUMBER_OF_TEXTURECOORDS] = { nullptr };
|
|
|
|
aiColor4D *apvColorSets[AI_MAX_NUMBER_OF_COLOR_SETS] = { nullptr };
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
unsigned int p = 0;
|
|
|
|
while (pcMesh->HasTextureCoords(p))
|
|
|
|
apvTextureCoords[p++] = new aiVector3D[iNumVerts];
|
|
|
|
|
|
|
|
p = 0;
|
|
|
|
while (pcMesh->HasVertexColors(p))
|
|
|
|
apvColorSets[p++] = new aiColor4D[iNumVerts];
|
|
|
|
|
|
|
|
// allocate enough memory to hold output bones and vertex weights ...
|
2020-06-23 19:05:42 +00:00
|
|
|
std::vector<aiVertexWeight> *newWeights = new std::vector<aiVertexWeight>[pcMesh->mNumBones];
|
|
|
|
for (unsigned int i = 0; i < pcMesh->mNumBones; ++i) {
|
|
|
|
newWeights[i].reserve(pcMesh->mBones[i]->mNumWeights * 3);
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// iterate through all faces and build a clean list
|
|
|
|
unsigned int iIndex = 0;
|
2020-06-23 19:05:42 +00:00
|
|
|
for (unsigned int a = 0; a < pcMesh->mNumFaces; ++a) {
|
|
|
|
aiFace *pcFace = &pcMesh->mFaces[a];
|
|
|
|
for (unsigned int q = 0; q < pcFace->mNumIndices; ++q, ++iIndex) {
|
2015-05-19 03:57:13 +00:00
|
|
|
// need to build a clean list of bones, too
|
2020-06-23 19:05:42 +00:00
|
|
|
for (unsigned int i = 0; i < pcMesh->mNumBones; ++i) {
|
|
|
|
for (unsigned int boneIdx = 0; boneIdx < pcMesh->mBones[i]->mNumWeights; ++boneIdx) {
|
|
|
|
const aiVertexWeight &w = pcMesh->mBones[i]->mWeights[boneIdx];
|
|
|
|
if (pcFace->mIndices[q] == w.mVertexId) {
|
2015-05-19 03:57:13 +00:00
|
|
|
aiVertexWeight wNew;
|
|
|
|
wNew.mVertexId = iIndex;
|
|
|
|
wNew.mWeight = w.mWeight;
|
|
|
|
newWeights[i].push_back(wNew);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pvPositions[iIndex] = pcMesh->mVertices[pcFace->mIndices[q]];
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (pcMesh->HasNormals()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
pvNormals[iIndex] = pcMesh->mNormals[pcFace->mIndices[q]];
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
if (pcMesh->HasTangentsAndBitangents()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
pvTangents[iIndex] = pcMesh->mTangents[pcFace->mIndices[q]];
|
|
|
|
pvBitangents[iIndex] = pcMesh->mBitangents[pcFace->mIndices[q]];
|
|
|
|
}
|
|
|
|
|
2020-02-16 14:37:20 +00:00
|
|
|
unsigned int pp = 0;
|
2020-06-23 19:05:42 +00:00
|
|
|
while (pcMesh->HasTextureCoords(pp)) {
|
|
|
|
apvTextureCoords[pp][iIndex] = pcMesh->mTextureCoords[pp][pcFace->mIndices[q]];
|
|
|
|
++pp;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
pp = 0;
|
|
|
|
while (pcMesh->HasVertexColors(pp)) {
|
|
|
|
apvColorSets[pp][iIndex] = pcMesh->mColors[pp][pcFace->mIndices[q]];
|
|
|
|
++pp;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
pcFace->mIndices[q] = iIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build output vertex weights
|
2020-06-23 19:05:42 +00:00
|
|
|
for (unsigned int i = 0; i < pcMesh->mNumBones; ++i) {
|
|
|
|
delete[] pcMesh->mBones[i]->mWeights;
|
2015-12-30 19:39:58 +00:00
|
|
|
if (!newWeights[i].empty()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
pcMesh->mBones[i]->mWeights = new aiVertexWeight[newWeights[i].size()];
|
2021-11-13 03:56:15 +00:00
|
|
|
pcMesh->mBones[i]->mNumWeights = static_cast<unsigned int>(newWeights[i].size());
|
2020-06-23 19:05:42 +00:00
|
|
|
aiVertexWeight *weightToCopy = &(newWeights[i][0]);
|
2016-01-08 15:18:32 +00:00
|
|
|
memcpy(pcMesh->mBones[i]->mWeights, weightToCopy,
|
2020-06-23 19:05:42 +00:00
|
|
|
sizeof(aiVertexWeight) * newWeights[i].size());
|
2015-12-30 19:39:58 +00:00
|
|
|
} else {
|
2020-06-23 19:05:42 +00:00
|
|
|
pcMesh->mBones[i]->mWeights = nullptr;
|
2015-05-19 03:57:13 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-24 10:33:53 +00:00
|
|
|
delete[] newWeights;
|
2015-05-19 03:57:13 +00:00
|
|
|
|
|
|
|
// delete the old members
|
|
|
|
delete[] pcMesh->mVertices;
|
|
|
|
pcMesh->mVertices = pvPositions;
|
|
|
|
|
|
|
|
p = 0;
|
2020-06-23 19:05:42 +00:00
|
|
|
while (pcMesh->HasTextureCoords(p)) {
|
2017-09-14 07:33:49 +00:00
|
|
|
delete[] pcMesh->mTextureCoords[p];
|
2015-05-19 03:57:13 +00:00
|
|
|
pcMesh->mTextureCoords[p] = apvTextureCoords[p];
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
p = 0;
|
2020-06-23 19:05:42 +00:00
|
|
|
while (pcMesh->HasVertexColors(p)) {
|
2017-09-14 07:33:49 +00:00
|
|
|
delete[] pcMesh->mColors[p];
|
2015-05-19 03:57:13 +00:00
|
|
|
pcMesh->mColors[p] = apvColorSets[p];
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
pcMesh->mNumVertices = iNumVerts;
|
|
|
|
|
2020-06-23 19:05:42 +00:00
|
|
|
if (pcMesh->HasNormals()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete[] pcMesh->mNormals;
|
|
|
|
pcMesh->mNormals = pvNormals;
|
|
|
|
}
|
2020-06-23 19:05:42 +00:00
|
|
|
if (pcMesh->HasTangentsAndBitangents()) {
|
2015-05-19 03:57:13 +00:00
|
|
|
delete[] pcMesh->mTangents;
|
|
|
|
pcMesh->mTangents = pvTangents;
|
|
|
|
delete[] pcMesh->mBitangents;
|
|
|
|
pcMesh->mBitangents = pvBitangents;
|
|
|
|
}
|
|
|
|
return (pcMesh->mNumVertices != iOldNumVertices);
|
2015-05-19 03:48:29 +00:00
|
|
|
}
|
2019-08-30 10:42:23 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
bool IsMeshInVerboseFormat(const aiMesh *mesh) {
|
2019-08-30 10:42:23 +00:00
|
|
|
// avoid slow vector<bool> specialization
|
2020-06-23 19:05:42 +00:00
|
|
|
std::vector<unsigned int> seen(mesh->mNumVertices, 0);
|
|
|
|
for (unsigned int i = 0; i < mesh->mNumFaces; ++i) {
|
|
|
|
const aiFace &f = mesh->mFaces[i];
|
|
|
|
for (unsigned int j = 0; j < f.mNumIndices; ++j) {
|
|
|
|
if (++seen[f.mIndices[j]] == 2) {
|
2019-08-30 10:42:23 +00:00
|
|
|
// found a duplicate index
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-06-23 19:05:42 +00:00
|
|
|
bool MakeVerboseFormatProcess::IsVerboseFormat(const aiScene *pScene) {
|
|
|
|
for (unsigned int i = 0; i < pScene->mNumMeshes; ++i) {
|
|
|
|
if (!IsMeshInVerboseFormat(pScene->mMeshes[i])) {
|
2019-08-30 10:42:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|