2015-12-02 13:54: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
|
|
|
|
2015-12-02 13:54:29 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
|
|
|
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.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
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
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-19 04:24:07 +00:00
|
|
|
#include "UnitTestPCH.h"
|
|
|
|
|
2020-11-02 14:43:35 +00:00
|
|
|
#include "../../include/assimp/scene.h"
|
2019-06-11 18:17:50 +00:00
|
|
|
#include "PostProcessing/FindDegenerates.h"
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2020-11-02 15:03:17 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2015-05-19 04:24:07 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace Assimp;
|
|
|
|
|
2016-07-04 20:15:23 +00:00
|
|
|
class FindDegeneratesProcessTest : public ::testing::Test {
|
2015-05-19 04:24:07 +00:00
|
|
|
public:
|
2020-03-22 11:13:09 +00:00
|
|
|
FindDegeneratesProcessTest() :
|
|
|
|
Test(), mMesh(nullptr), mProcess(nullptr) {
|
2019-07-12 14:08:51 +00:00
|
|
|
// empty
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-05-19 04:26:05 +00:00
|
|
|
virtual void SetUp();
|
|
|
|
virtual void TearDown();
|
2015-05-19 04:24:07 +00:00
|
|
|
|
|
|
|
protected:
|
2020-03-22 11:13:09 +00:00
|
|
|
aiMesh *mMesh;
|
|
|
|
FindDegeneratesProcess *mProcess;
|
2015-05-19 04:24:07 +00:00
|
|
|
};
|
|
|
|
|
2017-11-12 21:09:18 +00:00
|
|
|
void FindDegeneratesProcessTest::SetUp() {
|
2019-07-12 14:08:51 +00:00
|
|
|
mMesh = new aiMesh();
|
|
|
|
mProcess = new FindDegeneratesProcess();
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2019-07-12 14:08:51 +00:00
|
|
|
mMesh->mNumFaces = 1000;
|
|
|
|
mMesh->mFaces = new aiFace[1000];
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
mMesh->mNumVertices = 5000 * 2;
|
|
|
|
mMesh->mVertices = new aiVector3D[5000 * 2];
|
2015-05-19 04:26:05 +00:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < 5000; ++i) {
|
2020-03-22 11:13:09 +00:00
|
|
|
mMesh->mVertices[i] = mMesh->mVertices[i + 5000] = aiVector3D((float)i);
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 14:08:51 +00:00
|
|
|
mMesh->mPrimitiveTypes = aiPrimitiveType_LINE | aiPrimitiveType_POINT |
|
2020-03-22 11:13:09 +00:00
|
|
|
aiPrimitiveType_POLYGON | aiPrimitiveType_TRIANGLE;
|
2015-05-19 04:26:05 +00:00
|
|
|
|
|
|
|
unsigned int numOut = 0, numFaces = 0;
|
|
|
|
for (unsigned int i = 0; i < 1000; ++i) {
|
2020-03-22 11:13:09 +00:00
|
|
|
aiFace &f = mMesh->mFaces[i];
|
|
|
|
f.mNumIndices = (i % 5) + 1; // between 1 and 5
|
|
|
|
f.mIndices = new unsigned int[f.mNumIndices];
|
|
|
|
bool had = false;
|
|
|
|
for (unsigned int n = 0; n < f.mNumIndices; ++n) {
|
|
|
|
// FIXME
|
2015-05-19 04:24:07 +00:00
|
|
|
#if 0
|
2015-05-19 04:26:05 +00:00
|
|
|
// some duplicate indices
|
|
|
|
if ( n && n == (i / 200)+1) {
|
|
|
|
f.mIndices[n] = f.mIndices[n-1];
|
|
|
|
had = true;
|
|
|
|
}
|
|
|
|
// and some duplicate vertices
|
2015-05-19 04:24:07 +00:00
|
|
|
#endif
|
2020-03-22 11:13:09 +00:00
|
|
|
if (n && i % 2 && 0 == n % 2) {
|
|
|
|
f.mIndices[n] = f.mIndices[n - 1] + 5000;
|
|
|
|
had = true;
|
|
|
|
} else {
|
|
|
|
f.mIndices[n] = numOut++;
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!had)
|
|
|
|
++numFaces;
|
|
|
|
}
|
2019-07-12 14:08:51 +00:00
|
|
|
mMesh->mNumUVComponents[0] = numOut;
|
|
|
|
mMesh->mNumUVComponents[1] = numFaces;
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 21:09:18 +00:00
|
|
|
void FindDegeneratesProcessTest::TearDown() {
|
2019-07-12 14:08:51 +00:00
|
|
|
delete mMesh;
|
|
|
|
delete mProcess;
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 21:09:18 +00:00
|
|
|
TEST_F(FindDegeneratesProcessTest, testDegeneratesDetection) {
|
2019-07-12 14:08:51 +00:00
|
|
|
mProcess->EnableInstantRemoval(false);
|
|
|
|
mProcess->ExecuteOnMesh(mMesh);
|
2015-05-19 04:26:05 +00:00
|
|
|
|
|
|
|
unsigned int out = 0;
|
|
|
|
for (unsigned int i = 0; i < 1000; ++i) {
|
2020-03-22 11:13:09 +00:00
|
|
|
aiFace &f = mMesh->mFaces[i];
|
2015-05-19 04:26:05 +00:00
|
|
|
out += f.mNumIndices;
|
|
|
|
}
|
|
|
|
|
2019-07-12 14:08:51 +00:00
|
|
|
EXPECT_EQ(1000U, mMesh->mNumFaces);
|
|
|
|
EXPECT_EQ(10000U, mMesh->mNumVertices);
|
|
|
|
EXPECT_EQ(out, mMesh->mNumUVComponents[0]);
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_EQ(static_cast<unsigned int>(
|
2020-03-22 11:13:09 +00:00
|
|
|
aiPrimitiveType_LINE | aiPrimitiveType_POINT |
|
|
|
|
aiPrimitiveType_POLYGON | aiPrimitiveType_TRIANGLE),
|
|
|
|
mMesh->mPrimitiveTypes);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 21:09:18 +00:00
|
|
|
TEST_F(FindDegeneratesProcessTest, testDegeneratesRemoval) {
|
2019-07-12 14:08:51 +00:00
|
|
|
mProcess->EnableAreaCheck(false);
|
|
|
|
mProcess->EnableInstantRemoval(true);
|
|
|
|
mProcess->ExecuteOnMesh(mMesh);
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2019-07-12 14:08:51 +00:00
|
|
|
EXPECT_EQ(mMesh->mNumUVComponents[1], mMesh->mNumFaces);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 21:09:18 +00:00
|
|
|
TEST_F(FindDegeneratesProcessTest, testDegeneratesRemovalWithAreaCheck) {
|
2019-07-12 14:08:51 +00:00
|
|
|
mProcess->EnableAreaCheck(true);
|
|
|
|
mProcess->EnableInstantRemoval(true);
|
|
|
|
mProcess->ExecuteOnMesh(mMesh);
|
2017-11-12 21:09:18 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(mMesh->mNumUVComponents[1] - 100, mMesh->mNumFaces);
|
2017-11-12 21:09:18 +00:00
|
|
|
}
|
2020-11-02 14:43:35 +00:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
std::unique_ptr<aiMesh> getDegenerateMesh()
|
|
|
|
{
|
2020-11-02 15:03:17 +00:00
|
|
|
std::unique_ptr<aiMesh> mesh(new aiMesh);
|
2020-11-02 14:43:35 +00:00
|
|
|
mesh->mNumVertices = 2;
|
|
|
|
mesh->mVertices = new aiVector3D[2];
|
|
|
|
mesh->mVertices[0] = aiVector3D{ 0.0f, 0.0f, 0.0f };
|
|
|
|
mesh->mVertices[1] = aiVector3D{ 1.0f, 0.0f, 0.0f };
|
|
|
|
mesh->mNumFaces = 1;
|
|
|
|
mesh->mFaces = new aiFace[1];
|
|
|
|
mesh->mFaces[0].mNumIndices = 3;
|
|
|
|
mesh->mFaces[0].mIndices = new unsigned int[3];
|
|
|
|
mesh->mFaces[0].mIndices[0] = 0;
|
|
|
|
mesh->mFaces[0].mIndices[1] = 1;
|
|
|
|
mesh->mFaces[0].mIndices[2] = 0;
|
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(FindDegeneratesProcessTest, meshRemoval) {
|
|
|
|
mProcess->EnableAreaCheck(true);
|
|
|
|
mProcess->EnableInstantRemoval(true);
|
|
|
|
mProcess->ExecuteOnMesh(mMesh);
|
|
|
|
|
2020-11-02 15:03:17 +00:00
|
|
|
std::unique_ptr<aiScene> scene(new aiScene);
|
2020-11-02 14:43:35 +00:00
|
|
|
scene->mNumMeshes = 5;
|
|
|
|
scene->mMeshes = new aiMesh*[5];
|
|
|
|
|
|
|
|
/// Use the mesh which doesn't get completely stripped of faces from the main test.
|
|
|
|
aiMesh* meshWhichSurvives = mMesh;
|
|
|
|
mMesh = nullptr;
|
|
|
|
|
|
|
|
scene->mMeshes[0] = getDegenerateMesh().release();
|
|
|
|
scene->mMeshes[1] = getDegenerateMesh().release();
|
|
|
|
scene->mMeshes[2] = meshWhichSurvives;
|
|
|
|
scene->mMeshes[3] = getDegenerateMesh().release();
|
|
|
|
scene->mMeshes[4] = getDegenerateMesh().release();
|
|
|
|
|
|
|
|
scene->mRootNode = new aiNode;
|
|
|
|
scene->mRootNode->mNumMeshes = 5;
|
|
|
|
scene->mRootNode->mMeshes = new unsigned int[5];
|
|
|
|
scene->mRootNode->mMeshes[0] = 0;
|
|
|
|
scene->mRootNode->mMeshes[1] = 1;
|
|
|
|
scene->mRootNode->mMeshes[2] = 2;
|
|
|
|
scene->mRootNode->mMeshes[3] = 3;
|
|
|
|
scene->mRootNode->mMeshes[4] = 4;
|
|
|
|
|
2021-07-29 11:28:51 +00:00
|
|
|
mProcess->Execute(scene.get());
|
2020-11-02 14:43:35 +00:00
|
|
|
|
2021-01-31 00:49:32 +00:00
|
|
|
EXPECT_EQ(scene->mNumMeshes, 1u);
|
2020-11-02 14:43:35 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0], meshWhichSurvives);
|
2021-01-31 00:49:32 +00:00
|
|
|
EXPECT_EQ(scene->mRootNode->mNumMeshes, 1u);
|
2021-07-29 11:28:51 +00:00
|
|
|
EXPECT_EQ(scene->mRootNode->mMeshes[0], 0u);
|
2020-11-02 14:43:35 +00:00
|
|
|
}
|
2024-08-13 14:24:43 +00:00
|
|
|
|
|
|
|
TEST_F(FindDegeneratesProcessTest, invalidVertexIndex) {
|
|
|
|
mProcess->EnableAreaCheck(true);
|
|
|
|
mProcess->EnableInstantRemoval(true);
|
|
|
|
mProcess->ExecuteOnMesh(mMesh);
|
|
|
|
|
|
|
|
std::unique_ptr<aiScene> scene(new aiScene);
|
|
|
|
scene->mNumMeshes = 1;
|
|
|
|
scene->mMeshes = new aiMesh *[1];
|
|
|
|
|
|
|
|
std::unique_ptr<aiMesh> mesh(new aiMesh);
|
|
|
|
mesh->mNumVertices = 1;
|
|
|
|
mesh->mVertices = new aiVector3D[1];
|
|
|
|
mesh->mVertices[0] = aiVector3D{ 0.0f, 0.0f, 0.0f };
|
|
|
|
mesh->mNumFaces = 1;
|
|
|
|
mesh->mFaces = new aiFace[1];
|
|
|
|
mesh->mFaces[0].mNumIndices = 3;
|
|
|
|
mesh->mFaces[0].mIndices = new unsigned int[3];
|
|
|
|
mesh->mFaces[0].mIndices[0] = 0;
|
|
|
|
mesh->mFaces[0].mIndices[1] = 1;
|
|
|
|
mesh->mFaces[0].mIndices[2] = 99999;
|
|
|
|
|
|
|
|
scene->mMeshes[0] = mesh.release();
|
|
|
|
|
|
|
|
scene->mRootNode = new aiNode;
|
|
|
|
scene->mRootNode->mNumMeshes = 1;
|
|
|
|
scene->mRootNode->mMeshes = new unsigned int[1];
|
|
|
|
scene->mRootNode->mMeshes[0] = 0;
|
|
|
|
|
|
|
|
mProcess->Execute(scene.get());
|
|
|
|
|
|
|
|
EXPECT_EQ(scene->mNumMeshes, 1u);
|
|
|
|
EXPECT_EQ(scene->mRootNode->mNumMeshes, 1u);
|
|
|
|
EXPECT_EQ(scene->mRootNode->mMeshes[0], 0u);
|
|
|
|
}
|