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"
|
|
|
|
|
2019-06-11 18:17:50 +00:00
|
|
|
#include <assimp/mesh.h>
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/types.h>
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2019-06-11 18:17:50 +00:00
|
|
|
#include "Common/VertexTriangleAdjacency.h"
|
2015-05-19 04:24:07 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Assimp;
|
|
|
|
|
2019-06-11 18:17:50 +00:00
|
|
|
class VTAdjacencyTest : public ::testing::Test {
|
2015-05-19 04:24:07 +00:00
|
|
|
protected:
|
2020-03-22 11:13:09 +00:00
|
|
|
void checkMesh(const aiMesh &mesh);
|
2015-05-19 04:24:07 +00:00
|
|
|
};
|
|
|
|
|
2022-09-18 14:03:54 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static unsigned int foo() {
|
|
|
|
return static_cast<unsigned int>(((float)rand() / static_cast<float>(RAND_MAX)) * 499);
|
|
|
|
}
|
|
|
|
|
2015-05-19 04:24:07 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(VTAdjacencyTest, largeRandomDataSet) {
|
2015-05-19 04:26:05 +00:00
|
|
|
// build a test mesh with randomized input data
|
|
|
|
// *******************************************************************************
|
|
|
|
aiMesh mesh;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mNumVertices = 500;
|
|
|
|
mesh.mNumFaces = 600;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces = new aiFace[600];
|
|
|
|
unsigned int iCurrent = 0;
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < 600; ++i) {
|
|
|
|
aiFace &face = mesh.mFaces[i];
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mNumIndices = 3;
|
|
|
|
face.mIndices = new unsigned int[3];
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (499 == iCurrent) iCurrent = 0;
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mIndices[0] = iCurrent++;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2022-09-18 14:03:54 +00:00
|
|
|
while (face.mIndices[0] == (face.mIndices[1] = foo()));
|
|
|
|
while (face.mIndices[0] == (face.mIndices[2] = foo()) || face.mIndices[1] == face.mIndices[2]);
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
checkMesh(mesh);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(VTAdjacencyTest, smallDataSet) {
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
// build a test mesh - this one is extremely small
|
|
|
|
// *******************************************************************************
|
|
|
|
aiMesh mesh;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mNumVertices = 5;
|
|
|
|
mesh.mNumFaces = 3;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces = new aiFace[3];
|
|
|
|
mesh.mFaces[0].mIndices = new unsigned int[3];
|
2018-04-23 10:23:12 +00:00
|
|
|
mesh.mFaces[0].mNumIndices = 3;
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces[1].mIndices = new unsigned int[3];
|
2018-04-23 10:23:12 +00:00
|
|
|
mesh.mFaces[1].mNumIndices = 3;
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces[2].mIndices = new unsigned int[3];
|
2018-04-23 10:23:12 +00:00
|
|
|
mesh.mFaces[2].mNumIndices = 3;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces[0].mIndices[0] = 1;
|
|
|
|
mesh.mFaces[0].mIndices[1] = 3;
|
|
|
|
mesh.mFaces[0].mIndices[2] = 2;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces[1].mIndices[0] = 0;
|
|
|
|
mesh.mFaces[1].mIndices[1] = 2;
|
|
|
|
mesh.mFaces[1].mIndices[2] = 3;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
mesh.mFaces[2].mIndices[0] = 3;
|
|
|
|
mesh.mFaces[2].mIndices[1] = 0;
|
|
|
|
mesh.mFaces[2].mIndices[2] = 4;
|
2015-05-19 04:24:07 +00:00
|
|
|
|
2015-05-19 04:26:05 +00:00
|
|
|
checkMesh(mesh);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(VTAdjacencyTest, unreferencedVerticesSet) {
|
2015-05-19 04:26:05 +00:00
|
|
|
// build a test mesh which does not reference all vertices
|
|
|
|
// *******************************************************************************
|
|
|
|
aiMesh mesh;
|
|
|
|
|
|
|
|
mesh.mNumVertices = 500;
|
|
|
|
mesh.mNumFaces = 600;
|
|
|
|
|
|
|
|
mesh.mFaces = new aiFace[600];
|
|
|
|
unsigned int iCurrent = 0;
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < 600; ++i) {
|
|
|
|
aiFace &face = mesh.mFaces[i];
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mNumIndices = 3;
|
|
|
|
face.mIndices = new unsigned int[3];
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (499 == iCurrent) iCurrent = 0;
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mIndices[0] = iCurrent++;
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (499 == iCurrent) iCurrent = 0;
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mIndices[1] = iCurrent++;
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (499 == iCurrent) iCurrent = 0;
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mIndices[2] = iCurrent++;
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (rand() > RAND_MAX / 2 && face.mIndices[0]) {
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mIndices[0]--;
|
2020-03-22 11:13:09 +00:00
|
|
|
} else if (face.mIndices[1])
|
|
|
|
face.mIndices[1]--;
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
checkMesh(mesh);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2020-03-22 11:13:09 +00:00
|
|
|
void VTAdjacencyTest::checkMesh(const aiMesh &mesh) {
|
|
|
|
VertexTriangleAdjacency adj(mesh.mFaces, mesh.mNumFaces, mesh.mNumVertices, true);
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
unsigned int *const piNum = adj.mLiveTriangles;
|
2015-05-19 04:26:05 +00:00
|
|
|
|
|
|
|
// check the primary adjacency table and check whether all faces
|
|
|
|
// are contained in the list
|
|
|
|
unsigned int maxOfs = 0;
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < mesh.mNumFaces; ++i) {
|
|
|
|
aiFace &face = mesh.mFaces[i];
|
|
|
|
for (unsigned int qq = 0; qq < 3; ++qq) {
|
2015-05-19 04:26:05 +00:00
|
|
|
const unsigned int idx = face.mIndices[qq];
|
|
|
|
const unsigned int num = piNum[idx];
|
|
|
|
|
|
|
|
// go to this offset
|
|
|
|
const unsigned int ofs = adj.mOffsetTable[idx];
|
2020-03-22 11:13:09 +00:00
|
|
|
maxOfs = std::max(ofs + num, maxOfs);
|
|
|
|
unsigned int *pi = &adj.mAdjacencyTable[ofs];
|
2015-05-19 04:26:05 +00:00
|
|
|
|
|
|
|
// and search for us ...
|
|
|
|
unsigned int tt = 0;
|
2020-03-22 11:13:09 +00:00
|
|
|
for (; tt < num; ++tt, ++pi) {
|
|
|
|
if (i == *pi) {
|
2015-05-19 04:26:05 +00:00
|
|
|
// mask our entry in the table. Finally all entries should be masked
|
|
|
|
*pi = 0xffffffff;
|
|
|
|
|
|
|
|
// there shouldn't be two entries for the same face
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// assert if *this* vertex has not been found in the table
|
|
|
|
EXPECT_LT(tt, num);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now check whether there are invalid faces
|
2020-03-22 11:13:09 +00:00
|
|
|
const unsigned int *pi = adj.mAdjacencyTable;
|
|
|
|
for (unsigned int i = 0; i < maxOfs; ++i, ++pi) {
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_EQ(0xffffffff, *pi);
|
|
|
|
}
|
|
|
|
|
|
|
|
// check the numTrianglesPerVertex table
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < mesh.mNumFaces; ++i) {
|
|
|
|
aiFace &face = mesh.mFaces[i];
|
|
|
|
for (unsigned int qq = 0; qq < 3; ++qq) {
|
2015-05-19 04:26:05 +00:00
|
|
|
const unsigned int idx = face.mIndices[qq];
|
|
|
|
|
|
|
|
// we should not reach 0 here ...
|
|
|
|
EXPECT_NE(0U, piNum[idx]);
|
|
|
|
piNum[idx]--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check whether we reached 0 in all entries
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < mesh.mNumVertices; ++i) {
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_FALSE(piNum[i]);
|
|
|
|
}
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|