2015-12-02 13:54:29 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2022-01-10 20:13:43 +00:00
|
|
|
Copyright (c) 2006-2022, 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"
|
|
|
|
|
|
|
|
#include <assimp/scene.h>
|
2019-06-11 18:17:50 +00:00
|
|
|
|
|
|
|
#include "PostProcessing/TriangulateProcess.h"
|
2015-05-19 04:24:07 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Assimp;
|
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
class TriangulateProcessTest : public ::testing::Test {
|
2015-05-19 04:24:07 +00:00
|
|
|
public:
|
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 *pcMesh;
|
|
|
|
TriangulateProcess *piProcess;
|
2015-05-19 04:24:07 +00:00
|
|
|
};
|
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
void TriangulateProcessTest::SetUp() {
|
2015-05-19 04:26:05 +00:00
|
|
|
piProcess = new TriangulateProcess();
|
|
|
|
pcMesh = new aiMesh();
|
|
|
|
|
|
|
|
pcMesh->mNumFaces = 1000;
|
|
|
|
pcMesh->mFaces = new aiFace[1000];
|
|
|
|
pcMesh->mVertices = new aiVector3D[10000];
|
|
|
|
|
2020-05-06 11:46:26 +00:00
|
|
|
pcMesh->mPrimitiveTypes = aiPrimitiveType_POINT | aiPrimitiveType_LINE | aiPrimitiveType_POLYGON;
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
for (unsigned int m = 0, t = 0, q = 4; m < 1000; ++m) {
|
2015-05-19 04:26:05 +00:00
|
|
|
++t;
|
2020-03-22 11:13:09 +00:00
|
|
|
aiFace &face = pcMesh->mFaces[m];
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mNumIndices = t;
|
2016-11-09 19:09:45 +00:00
|
|
|
if (4 == t) {
|
2015-05-19 04:26:05 +00:00
|
|
|
face.mNumIndices = q++;
|
|
|
|
t = 0;
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
if (10 == q) q = 4;
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
face.mIndices = new unsigned int[face.mNumIndices];
|
2016-11-09 19:09:45 +00:00
|
|
|
for (unsigned int p = 0; p < face.mNumIndices; ++p) {
|
2020-03-22 11:13:09 +00:00
|
|
|
face.mIndices[p] = pcMesh->mNumVertices;
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
// construct fully convex input data in ccw winding, xy plane
|
2020-03-22 11:13:09 +00:00
|
|
|
aiVector3D &v = pcMesh->mVertices[pcMesh->mNumVertices++];
|
2015-05-19 04:26:05 +00:00
|
|
|
v.z = 0.f;
|
2020-03-22 11:13:09 +00:00
|
|
|
v.x = cos(p * (float)(AI_MATH_TWO_PI) / face.mNumIndices);
|
|
|
|
v.y = sin(p * (float)(AI_MATH_TWO_PI) / face.mNumIndices);
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
void TriangulateProcessTest::TearDown() {
|
2015-05-19 04:26:05 +00:00
|
|
|
delete piProcess;
|
|
|
|
delete pcMesh;
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|
|
|
|
|
2016-11-09 19:09:45 +00:00
|
|
|
TEST_F(TriangulateProcessTest, testTriangulation) {
|
2015-05-19 04:26:05 +00:00
|
|
|
piProcess->TriangulateMesh(pcMesh);
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int m = 0, t = 0, q = 4, max = 1000, idx = 0; m < max; ++m) {
|
2015-05-19 04:26:05 +00:00
|
|
|
++t;
|
2020-03-22 11:13:09 +00:00
|
|
|
aiFace &face = pcMesh->mFaces[m];
|
2016-11-09 19:09:45 +00:00
|
|
|
if (4 == t) {
|
2015-05-19 04:26:05 +00:00
|
|
|
t = 0;
|
2020-03-22 11:13:09 +00:00
|
|
|
max += q - 3;
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::vector<bool> ait(q, false);
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0, tt = q - 2; i < tt; ++i, ++m) {
|
|
|
|
aiFace &curFace = pcMesh->mFaces[m];
|
2020-03-11 08:43:55 +00:00
|
|
|
EXPECT_EQ(3U, curFace.mNumIndices);
|
2015-05-19 04:26:05 +00:00
|
|
|
|
2020-03-11 08:43:55 +00:00
|
|
|
for (unsigned int qqq = 0; qqq < curFace.mNumIndices; ++qqq) {
|
2020-03-10 23:43:44 +00:00
|
|
|
ait[curFace.mIndices[qqq] - idx] = true;
|
2015-05-19 04:26:05 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-09 19:09:45 +00:00
|
|
|
for (std::vector<bool>::const_iterator it = ait.begin(); it != ait.end(); ++it) {
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_TRUE(*it);
|
|
|
|
}
|
|
|
|
--m;
|
2020-03-22 11:13:09 +00:00
|
|
|
idx += q;
|
|
|
|
if (++q == 10) {
|
2016-11-09 19:09:45 +00:00
|
|
|
q = 4;
|
|
|
|
}
|
|
|
|
} else {
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_EQ(t, face.mNumIndices);
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < face.mNumIndices; ++i, ++idx) {
|
2015-05-19 04:26:05 +00:00
|
|
|
EXPECT_EQ(idx, face.mIndices[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-05 08:59:43 +00:00
|
|
|
// we should have no valid normal vectors now because we aren't a pure polygon mesh
|
2022-11-08 16:03:55 +00:00
|
|
|
EXPECT_TRUE(pcMesh->mNormals == nullptr);
|
2015-05-19 04:24:07 +00:00
|
|
|
}
|