2017-09-07 19:50:35 +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
|
|
|
|
2017-09-07 19:50:35 +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.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include "AbstractImportExportBase.h"
|
2020-03-22 11:13:09 +00:00
|
|
|
#include "UnitTestPCH.h"
|
2017-09-07 19:50:35 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/commonMetaData.h>
|
2017-11-21 16:04:22 +00:00
|
|
|
#include <assimp/postprocess.h>
|
2023-09-22 21:10:39 +00:00
|
|
|
#include <assimp/config.h>
|
2018-05-25 00:25:26 +00:00
|
|
|
#include <assimp/scene.h>
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/Exporter.hpp>
|
|
|
|
#include <assimp/Importer.hpp>
|
2020-07-15 11:19:00 +00:00
|
|
|
#include <assimp/LogStream.hpp>
|
|
|
|
#include <assimp/DefaultLogger.hpp>
|
|
|
|
|
2021-10-06 14:46:48 +00:00
|
|
|
#include <rapidjson/schema.h>
|
2019-12-05 14:05:49 +00:00
|
|
|
|
2018-08-01 21:27:04 +00:00
|
|
|
#include <array>
|
2017-09-07 19:50:35 +00:00
|
|
|
|
2021-11-16 11:42:59 +00:00
|
|
|
#include <assimp/material.h>
|
|
|
|
#include <assimp/GltfMaterial.h>
|
|
|
|
|
2017-09-07 19:50:35 +00:00
|
|
|
using namespace Assimp;
|
|
|
|
|
|
|
|
class utglTF2ImportExport : public AbstractImportExportBase {
|
|
|
|
public:
|
2023-07-13 09:51:56 +00:00
|
|
|
virtual bool importerMatTest(const char *file, bool spec, bool gloss, std::array<aiTextureMapMode, 2> exp_modes = { aiTextureMapMode_Wrap, aiTextureMapMode_Wrap }) {
|
2017-09-07 19:50:35 +00:00
|
|
|
Assimp::Importer importer;
|
2021-06-10 17:13:46 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(file, aiProcess_ValidateDataStructure);
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_NE(scene, nullptr);
|
2019-07-19 08:38:44 +00:00
|
|
|
if (!scene) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-25 00:25:26 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_TRUE(scene->HasMaterials());
|
2019-07-19 08:38:44 +00:00
|
|
|
if (!scene->HasMaterials()) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-25 00:25:26 +00:00
|
|
|
const aiMaterial *material = scene->mMaterials[0];
|
|
|
|
|
2021-06-10 17:13:46 +00:00
|
|
|
// This Material should be a PBR
|
|
|
|
aiShadingMode shadingMode;
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_SHADING_MODEL, shadingMode));
|
|
|
|
EXPECT_EQ(aiShadingMode_PBR_BRDF, shadingMode);
|
|
|
|
|
|
|
|
// Should import the texture as diffuse and as base color
|
2018-05-25 00:25:26 +00:00
|
|
|
aiString path;
|
2021-06-10 17:13:46 +00:00
|
|
|
std::array<aiTextureMapMode,2> modes;
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(aiTextureType_DIFFUSE, 0, &path, nullptr, nullptr,
|
2021-06-10 17:13:46 +00:00
|
|
|
nullptr, nullptr, modes.data()));
|
|
|
|
EXPECT_STREQ(path.C_Str(), "CesiumLogoFlat.png");
|
|
|
|
EXPECT_EQ(exp_modes, modes);
|
|
|
|
|
|
|
|
// Also as Base Color
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(aiTextureType_BASE_COLOR, 0, &path, nullptr, nullptr,
|
|
|
|
nullptr, nullptr, modes.data()));
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_STREQ(path.C_Str(), "CesiumLogoFlat.png");
|
2021-06-10 17:13:46 +00:00
|
|
|
EXPECT_EQ(exp_modes, modes);
|
|
|
|
|
|
|
|
// Should have a MetallicFactor (default is 1.0)
|
|
|
|
ai_real metal_factor = ai_real(0.5);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_METALLIC_FACTOR, metal_factor));
|
|
|
|
EXPECT_EQ(ai_real(0.0), metal_factor);
|
|
|
|
|
|
|
|
// And a roughness factor (default is 1.0)
|
|
|
|
ai_real roughness_factor = ai_real(0.5);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_ROUGHNESS_FACTOR, roughness_factor));
|
|
|
|
EXPECT_EQ(ai_real(1.0), roughness_factor);
|
|
|
|
|
|
|
|
aiColor3D spec_color = { 0, 0, 0 };
|
|
|
|
ai_real glossiness = ai_real(0.5);
|
2023-07-13 09:51:56 +00:00
|
|
|
if (spec) {
|
2021-06-10 17:13:46 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_COLOR_SPECULAR, spec_color));
|
|
|
|
constexpr ai_real spec_val(0.20000000298023225); // From the file
|
|
|
|
EXPECT_EQ(spec_val, spec_color.r);
|
|
|
|
EXPECT_EQ(spec_val, spec_color.g);
|
|
|
|
EXPECT_EQ(spec_val, spec_color.b);
|
2023-07-13 09:51:56 +00:00
|
|
|
} else {
|
|
|
|
EXPECT_EQ(aiReturn_FAILURE, material->Get(AI_MATKEY_COLOR_SPECULAR, spec_color));
|
|
|
|
}
|
|
|
|
if (gloss) {
|
2021-06-10 17:13:46 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_GLOSSINESS_FACTOR, glossiness));
|
|
|
|
EXPECT_EQ(ai_real(1.0), glossiness);
|
|
|
|
} else {
|
|
|
|
EXPECT_EQ(aiReturn_FAILURE, material->Get(AI_MATKEY_GLOSSINESS_FACTOR, glossiness));
|
|
|
|
}
|
2018-05-25 00:25:26 +00:00
|
|
|
|
|
|
|
return true;
|
2017-09-07 19:50:35 +00:00
|
|
|
}
|
2017-09-12 13:57:58 +00:00
|
|
|
|
2017-11-29 17:15:15 +00:00
|
|
|
virtual bool binaryImporterTest() {
|
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/2CylinderEngine-glTF-Binary/2CylinderEngine.glb",
|
|
|
|
aiProcess_ValidateDataStructure);
|
2017-11-29 17:15:15 +00:00
|
|
|
return nullptr != scene;
|
|
|
|
}
|
|
|
|
|
2017-09-12 13:57:58 +00:00
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
|
|
virtual bool exporterTest() {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "gltf2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured_out.gltf"));
|
2017-09-12 13:57:58 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif // ASSIMP_BUILD_NO_EXPORT
|
2017-09-07 19:50:35 +00:00
|
|
|
};
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2FromFileTest) {
|
2023-07-13 09:51:56 +00:00
|
|
|
EXPECT_TRUE(importerMatTest(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf", false, false, {aiTextureMapMode_Mirror, aiTextureMapMode_Clamp}));
|
2017-09-07 19:50:35 +00:00
|
|
|
}
|
2017-09-12 13:57:58 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importBinaryglTF2FromFileTest) {
|
|
|
|
EXPECT_TRUE(binaryImporterTest());
|
2017-11-29 17:15:15 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 17:13:46 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2_KHR_materials_pbrSpecularGlossiness) {
|
2023-07-13 09:51:56 +00:00
|
|
|
EXPECT_TRUE(importerMatTest(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured.gltf", true, true));
|
2021-06-10 17:13:46 +00:00
|
|
|
}
|
|
|
|
|
2021-06-11 13:34:42 +00:00
|
|
|
void VerifyClearCoatScene(const aiScene *scene) {
|
|
|
|
ASSERT_NE(nullptr, scene);
|
|
|
|
|
|
|
|
ASSERT_TRUE(scene->HasMaterials());
|
|
|
|
|
|
|
|
// Find a specific Clearcoat material and check the values
|
|
|
|
const aiString partial_coated("Partial_Coated");
|
|
|
|
bool found_partial_coat = false;
|
|
|
|
for (size_t i = 0; i < scene->mNumMaterials; ++i) {
|
|
|
|
const aiMaterial *material = scene->mMaterials[i];
|
|
|
|
ASSERT_NE(nullptr, material);
|
|
|
|
if (material->GetName() == partial_coated) {
|
|
|
|
found_partial_coat = true;
|
|
|
|
|
|
|
|
ai_real clearcoat_factor(0.0f);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_CLEARCOAT_FACTOR, clearcoat_factor));
|
|
|
|
EXPECT_EQ(ai_real(1.0f), clearcoat_factor);
|
|
|
|
|
|
|
|
ai_real clearcoat_rough_factor(0.0f);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->Get(AI_MATKEY_CLEARCOAT_ROUGHNESS_FACTOR, clearcoat_rough_factor));
|
|
|
|
EXPECT_EQ(ai_real(0.03f), clearcoat_rough_factor);
|
|
|
|
|
|
|
|
// Should import the texture as diffuse and as base color
|
|
|
|
aiString path;
|
|
|
|
std::array<aiTextureMapMode, 2> modes;
|
|
|
|
static const std::array<aiTextureMapMode, 2> exp_modes = { aiTextureMapMode_Wrap, aiTextureMapMode_Wrap };
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(AI_MATKEY_CLEARCOAT_TEXTURE, &path, nullptr, nullptr,
|
|
|
|
nullptr, nullptr, modes.data()));
|
|
|
|
EXPECT_STREQ(path.C_Str(), "PartialCoating.png");
|
|
|
|
EXPECT_EQ(exp_modes, modes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPECT_TRUE(found_partial_coat);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2_KHR_materials_clearcoat) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/ClearCoat-glTF/ClearCoatTest.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
VerifyClearCoatScene(scene);
|
|
|
|
}
|
|
|
|
|
2018-09-21 18:04:53 +00:00
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
2021-06-11 12:44:52 +00:00
|
|
|
|
2021-06-11 13:34:42 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2AndExport_KHR_materials_clearcoat) {
|
|
|
|
{
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/ClearCoat-glTF/ClearCoatTest.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(nullptr, scene);
|
|
|
|
// Export
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/ClearCoat-glTF/ClearCoatTest_out.glb"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// And re-import
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/ClearCoat-glTF/ClearCoatTest_out.glb", aiProcess_ValidateDataStructure);
|
|
|
|
VerifyClearCoatScene(scene);
|
|
|
|
}
|
|
|
|
|
2021-06-11 12:44:52 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2AndExport_KHR_materials_pbrSpecularGlossiness) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2023-05-23 07:50:20 +00:00
|
|
|
|
|
|
|
// Export with specular glossiness disabled
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured_out.glb"));
|
|
|
|
|
2023-07-13 09:51:56 +00:00
|
|
|
// And re-import
|
|
|
|
EXPECT_TRUE(importerMatTest(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured_out.glb", true, false));
|
|
|
|
|
2023-05-23 07:50:20 +00:00
|
|
|
// Export with specular glossiness enabled
|
2023-03-26 14:55:38 +00:00
|
|
|
ExportProperties props;
|
2023-03-26 15:13:16 +00:00
|
|
|
props.SetPropertyBool(AI_CONFIG_USE_GLTF_PBR_SPECULAR_GLOSSINESS, true);
|
2023-03-26 14:55:38 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured_out.glb", 0, &props));
|
2021-06-11 12:44:52 +00:00
|
|
|
|
|
|
|
// And re-import
|
2023-07-13 09:51:56 +00:00
|
|
|
EXPECT_TRUE(importerMatTest(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-pbrSpecularGlossiness/BoxTextured_out.glb", true, true));
|
2021-06-11 12:44:52 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 18:04:53 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2AndExportToOBJ) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
2019-07-19 08:38:44 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf",
|
2020-03-22 11:13:09 +00:00
|
|
|
aiProcess_ValidateDataStructure);
|
2018-09-21 18:04:53 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "obj", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured_out.obj"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2EmbeddedAndExportToOBJ) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
2019-07-19 08:38:44 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-Embedded/BoxTextured.gltf",
|
2020-03-22 11:13:09 +00:00
|
|
|
aiProcess_ValidateDataStructure);
|
2018-09-21 18:04:53 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "obj", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF-Embedded/BoxTextured_out.obj"));
|
|
|
|
}
|
2021-06-11 12:44:52 +00:00
|
|
|
|
2018-09-21 18:04:53 +00:00
|
|
|
#endif // ASSIMP_BUILD_NO_EXPORT
|
|
|
|
|
2018-08-04 10:20:56 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModePointsWithoutIndices) {
|
2018-08-01 21:27:04 +00:00
|
|
|
Assimp::Importer importer;
|
2018-08-04 10:20:56 +00:00
|
|
|
//Points without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_00.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 1024u);
|
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mNumIndices, 1u);
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLinesWithoutIndices) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Lines without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_01.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 8u);
|
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mNumIndices, 2u);
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], i * 2u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], i * 2u + 1u);
|
2018-08-04 10:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLinesLoopWithoutIndices) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Lines loop without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_02.gltf", aiProcess_ValidateDataStructure);
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2018-08-04 10:20:56 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 5> l1 = { { 0u, 1u, 2u, 3u, 0u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 2u);
|
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mNumIndices, 2u);
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], l1[i]);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], l1[i + 1u]);
|
2018-08-04 10:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLinesStripWithoutIndices) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Lines strip without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_03.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 5u);
|
2018-08-04 10:20:56 +00:00
|
|
|
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 2u);
|
2019-07-19 08:38:44 +00:00
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mNumIndices, 2u);
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], i);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], i + 1u);
|
2018-08-04 10:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesStripWithoutIndices) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Triangles strip without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_04.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 2u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f1 = { { 0u, 1u, 2u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 3u);
|
|
|
|
for (unsigned int i = 0; i < 3; ++i) {
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mIndices[i], f1[i]);
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f2 = { { 2u, 1u, 3u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mIndices[i], f2[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 10:20:56 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesFanWithoutIndices) {
|
2018-08-01 21:27:04 +00:00
|
|
|
Assimp::Importer importer;
|
2018-08-04 10:20:56 +00:00
|
|
|
//Triangles fan without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_05.gltf", aiProcess_ValidateDataStructure);
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 2u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f1 = { { 0u, 1u, 2u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mIndices[i], f1[i]);
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f2 = { { 0u, 2u, 3u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mIndices[i], f2[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesWithoutIndices) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Triangles without indices
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_06.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 2u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 6u);
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f1 = { { 0u, 1u, 2u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mIndices[i], f1[i]);
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::array<unsigned int, 3> f2 = { { 3u, 4u, 5u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-01 21:27:04 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mIndices[i], f2[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-02 17:07:51 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModePoints) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Line loop
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_07.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 1024u);
|
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mNumIndices, 1u);
|
2018-08-02 17:07:51 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 10:20:56 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLines) {
|
2018-08-02 17:05:45 +00:00
|
|
|
Assimp::Importer importer;
|
2018-08-04 10:20:56 +00:00
|
|
|
//Lines
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_08.gltf", aiProcess_ValidateDataStructure);
|
2018-08-02 17:05:45 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 5> l1 = { { 0u, 1u, 2u, 3u, 0u } };
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 2u);
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
2018-08-02 17:05:45 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], l1[i]);
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], l1[i + 1]);
|
2018-08-02 17:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 10:20:56 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLineLoop) {
|
2018-08-02 17:05:45 +00:00
|
|
|
Assimp::Importer importer;
|
2018-08-04 10:20:56 +00:00
|
|
|
//Line loop
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_09.gltf", aiProcess_ValidateDataStructure);
|
2018-08-02 17:05:45 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 5> l1 = { { 0, 1u, 2u, 3u, 0u } };
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 2u);
|
2020-03-22 11:13:09 +00:00
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
2018-08-02 17:05:45 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], l1[i]);
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], l1[i + 1]);
|
2018-08-02 17:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeLineStrip) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Lines Strip
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_10.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 5> l1 = { { 0u, 1u, 2u, 3u, 0u } };
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 2u);
|
|
|
|
for (unsigned int i = 0; i < scene->mMeshes[0]->mNumFaces; ++i) {
|
2018-08-02 17:05:45 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[0], l1[i]);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[i].mIndices[1], l1[i + 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 10:20:56 +00:00
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesStrip) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Triangles strip
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_11.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 2u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 3> f1 = { { 0u, 1u, 2u } };
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mIndices[i], f1[i]);
|
|
|
|
}
|
|
|
|
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 3> f2 = { { 2u, 1u, 3u } };
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mNumIndices, 3u);
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mIndices[i], f2[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2PrimitiveModeTrianglesFan) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
//Triangles fan
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Asset-Generator/Mesh_PrimitiveMode/Mesh_PrimitiveMode_12.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 2u);
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 3> f1 = { { 0u, 1u, 2u } };
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mNumIndices, 3u);
|
2019-07-19 08:38:44 +00:00
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[0].mIndices[i], f1[i]);
|
|
|
|
}
|
|
|
|
|
2023-03-10 17:36:43 +00:00
|
|
|
std::array<unsigned int, 3> f2 = { { 0u, 2u, 3u } };
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mNumIndices, 3u);
|
2019-07-19 08:38:44 +00:00
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
2018-08-04 10:20:56 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mFaces[1].mIndices[i], f2[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
std::vector<char> ReadFile(const char *name) {
|
2018-10-07 17:22:13 +00:00
|
|
|
std::vector<char> ret;
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
FILE *p = ::fopen(name, "r");
|
2018-10-08 18:40:01 +00:00
|
|
|
if (nullptr == p) {
|
|
|
|
return ret;
|
2018-10-07 17:22:13 +00:00
|
|
|
}
|
2018-10-08 18:40:01 +00:00
|
|
|
|
|
|
|
::fseek(p, 0, SEEK_END);
|
2018-12-28 00:44:56 +00:00
|
|
|
const size_t size = ::ftell(p);
|
2018-10-08 18:40:01 +00:00
|
|
|
::fseek(p, 0, SEEK_SET);
|
|
|
|
|
|
|
|
ret.resize(size);
|
2018-12-28 00:44:56 +00:00
|
|
|
const size_t readSize = ::fread(&ret[0], 1, size, p);
|
|
|
|
EXPECT_EQ(readSize, size);
|
2018-10-08 18:40:01 +00:00
|
|
|
::fclose(p);
|
|
|
|
|
2018-10-07 17:22:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, importglTF2FromMemory) {
|
2018-10-09 14:27:48 +00:00
|
|
|
/*const auto flags = aiProcess_CalcTangentSpace | aiProcess_Triangulate | aiProcess_RemoveComponent |
|
2018-10-07 17:22:13 +00:00
|
|
|
aiProcess_GenSmoothNormals | aiProcess_PreTransformVertices | aiProcess_FixInfacingNormals |
|
|
|
|
aiProcess_FindDegenerates | aiProcess_GenUVCoords | aiProcess_SortByPType;
|
2018-10-09 14:27:48 +00:00
|
|
|
const auto& buff = ReadFile("C:\\Users\\kimkulling\\Downloads\\camel\\camel\\scene.gltf");*/
|
2018-10-09 09:55:37 +00:00
|
|
|
/*const aiScene* Scene = ::aiImportFileFromMemory(&buff[0], buff.size(), flags, ".gltf");
|
|
|
|
EXPECT_EQ( nullptr, Scene );*/
|
2018-10-07 17:22:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, bug_import_simple_skin) {
|
2019-02-25 21:06:24 +00:00
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/simple_skin.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-02-25 21:06:24 +00:00
|
|
|
}
|
2019-02-25 22:19:21 +00:00
|
|
|
|
2023-09-22 21:10:39 +00:00
|
|
|
bool checkSkinnedScene(const aiScene *scene){
|
2023-10-07 15:49:29 +00:00
|
|
|
float eps = 0.001f;
|
2023-09-22 21:10:39 +00:00
|
|
|
bool result = true;
|
|
|
|
EXPECT_EQ(scene->mNumMeshes, 1u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumBones, 10u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].x - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].y - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].x - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].y - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].x - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].y - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].x - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].y - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].z - 0), eps);
|
|
|
|
|
2023-10-07 16:04:25 +00:00
|
|
|
unsigned int numWeights[] = {4u, 4u, 4u, 4u, 2u , 1u, 1u, 2u, 1u, 1u};
|
2023-10-07 15:49:29 +00:00
|
|
|
float weights[10][4] = {{0.207f, 0.291f, 0.057f, 0.303f},
|
|
|
|
{0.113f, 0.243f, 0.499f, 0.251f},
|
|
|
|
{0.005f, 0.010f, 0.041f, 0.093f},
|
|
|
|
{0.090f, 0.234f, 0.404f, 0.243f},
|
|
|
|
{0.090f, 0.222f, 0.000f, 0.000f},
|
|
|
|
{0.216f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.058f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.086f, 0.000f, 0.000f, 0.111f},
|
|
|
|
{0.088f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.049f, 0.000f, 0.000f, 0.000f}};
|
2023-09-22 21:10:39 +00:00
|
|
|
for (size_t boneIndex = 0; boneIndex < 10u; ++boneIndex) {
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mBones[boneIndex]->mNumWeights, numWeights[boneIndex]);
|
2023-10-07 16:43:05 +00:00
|
|
|
std::map<unsigned int, float> map;
|
2023-09-22 21:10:39 +00:00
|
|
|
for (size_t jointIndex = 0; jointIndex < scene->mMeshes[0]->mBones[boneIndex]->mNumWeights; ++jointIndex){
|
|
|
|
auto key = scene->mMeshes[0]->mBones[boneIndex]->mWeights[jointIndex].mVertexId;
|
|
|
|
auto weight = scene->mMeshes[0]->mBones[boneIndex]->mWeights[jointIndex].mWeight;
|
|
|
|
map[key] = weight;
|
|
|
|
}
|
|
|
|
|
2023-10-08 12:25:11 +00:00
|
|
|
for (unsigned int jointIndex = 0; jointIndex < scene->mMeshes[0]->mBones[boneIndex]->mNumWeights; ++jointIndex) {
|
2023-09-22 21:10:39 +00:00
|
|
|
auto weight = map[jointIndex];
|
|
|
|
EXPECT_LT(abs(ai_real(weight) - ai_real(weights[boneIndex][jointIndex])), 0.002);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void checkSkinnedSceneLimited(const aiScene *scene){
|
2023-10-07 15:49:29 +00:00
|
|
|
float eps = 0.001f;
|
2023-09-22 21:10:39 +00:00
|
|
|
EXPECT_EQ(scene->mNumMeshes, 1u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumBones, 10u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 4u);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].x - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].y - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[0].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].x - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].y - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[1].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].x - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].y - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[2].z - 0), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].x - -1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].y - 1), eps);
|
|
|
|
EXPECT_LT(abs(scene->mMeshes[0]->mVertices[3].z - 0), eps);
|
|
|
|
|
2023-10-07 16:04:25 +00:00
|
|
|
unsigned int numWeights[] = {4u, 4u, 1u, 4u, 1u , 1u, 1u, 1u, 1u, 1u};
|
2023-10-07 15:49:29 +00:00
|
|
|
float weights[10][4] = {{0.207f, 0.291f, 0.057f, 0.303f},
|
|
|
|
{0.113f, 0.243f, 0.499f, 0.251f},
|
|
|
|
{0.000f, 0.000f, 0.041f, 0.000f},
|
|
|
|
{0.090f, 0.234f, 0.404f, 0.243f},
|
|
|
|
{0.000f, 0.222f, 0.000f, 0.000f},
|
|
|
|
{0.216f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.000f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.000f, 0.000f, 0.000f, 0.111f},
|
|
|
|
{0.000f, 0.000f, 0.000f, 0.000f},
|
|
|
|
{0.000f, 0.000f, 0.000f, 0.000f}};
|
2023-10-08 13:20:44 +00:00
|
|
|
for (unsigned int boneIndex = 0; boneIndex < 10u; ++boneIndex) {
|
2023-09-22 21:10:39 +00:00
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mBones[boneIndex]->mNumWeights, numWeights[boneIndex]);
|
2023-10-07 16:43:05 +00:00
|
|
|
std::map<unsigned int, float> map;
|
2023-10-08 13:20:44 +00:00
|
|
|
for (unsigned int jointIndex = 0; jointIndex < scene->mMeshes[0]->mBones[boneIndex]->mNumWeights; ++jointIndex){
|
2023-09-22 21:10:39 +00:00
|
|
|
auto key = scene->mMeshes[0]->mBones[boneIndex]->mWeights[jointIndex].mVertexId;
|
|
|
|
auto weight = scene->mMeshes[0]->mBones[boneIndex]->mWeights[jointIndex].mWeight;
|
|
|
|
map[key] = weight;
|
|
|
|
}
|
2023-10-08 13:20:44 +00:00
|
|
|
for (unsigned int jointIndex = 0; jointIndex < scene->mMeshes[0]->mBones[boneIndex]->mNumWeights; ++jointIndex) {
|
2023-09-22 21:10:39 +00:00
|
|
|
auto weight = map[jointIndex];
|
|
|
|
EXPECT_LT(std::abs(ai_real(weight) - ai_real(weights[boneIndex][jointIndex])), 0.002);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, bug_import_simple_skin2) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene *scene = importer.ReadFile(
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_skin.glb",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
checkSkinnedScene(scene);
|
|
|
|
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2",
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_four_out.glb"));
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "gltf2",
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_four_out.gltf"));
|
|
|
|
|
|
|
|
// enable more than four bones per vertex
|
|
|
|
Assimp::ExportProperties properties = Assimp::ExportProperties();
|
|
|
|
properties.SetPropertyBool(
|
|
|
|
AI_CONFIG_EXPORT_GLTF_UNLIMITED_SKINNING_BONES_PER_VERTEX, true);
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2",
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_all_out.glb", 0u, &properties));
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "gltf2",
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_all_out.gltf", 0u, &properties));
|
|
|
|
|
|
|
|
// check skinning data of both exported files for limited number bones per vertex
|
|
|
|
const aiScene *limitedSceneImported = importer.ReadFile(
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_four_out.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
checkSkinnedSceneLimited(limitedSceneImported);
|
|
|
|
limitedSceneImported = importer.ReadFile(
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_four_out.glb",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
checkSkinnedSceneLimited(limitedSceneImported);
|
|
|
|
|
|
|
|
// check skinning data of both exported files for unlimited number bones per vertex
|
|
|
|
const aiScene *sceneImported = importer.ReadFile(
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_all_out.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
checkSkinnedScene(sceneImported);
|
|
|
|
sceneImported = importer.ReadFile(
|
|
|
|
ASSIMP_TEST_MODELS_DIR "/glTF2/simple_skin/quad_all_out.glb",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
checkSkinnedScene(sceneImported);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-09-11 20:34:53 +00:00
|
|
|
TEST_F(utglTF2ImportExport, import_cameras) {
|
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/cameras/Cameras.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
2019-09-11 20:34:53 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
}
|
|
|
|
|
2019-10-08 12:05:05 +00:00
|
|
|
TEST_F(utglTF2ImportExport, incorrect_vertex_arrays) {
|
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/IncorrectVertexArrays/Cube.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
2019-10-08 12:05:05 +00:00
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumVertices, 36u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 12u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[1]->mNumVertices, 35u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[1]->mNumFaces, 11u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[2]->mNumVertices, 36u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[2]->mNumFaces, 18u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[3]->mNumVertices, 35u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[3]->mNumFaces, 17u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[4]->mNumVertices, 36u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[4]->mNumFaces, 12u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[5]->mNumVertices, 35u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[5]->mNumFaces, 11u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[6]->mNumVertices, 36u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[6]->mNumFaces, 18u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[7]->mNumVertices, 35u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[7]->mNumFaces, 17u);
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, texture_transform_test) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/textureTransform/TextureTransformTest.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-11-14 20:15:30 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 13:57:58 +00:00
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, exportglTF2FromFileTest) {
|
|
|
|
EXPECT_TRUE(exporterTest());
|
2017-09-12 13:57:58 +00:00
|
|
|
}
|
2018-05-12 06:39:22 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utglTF2ImportExport, crash_in_anim_mesh_destructor) {
|
2019-08-28 17:42:49 +00:00
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Sample-Models/AnimatedMorphCube-glTF/AnimatedMorphCube.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(nullptr, scene);
|
2019-08-28 17:42:49 +00:00
|
|
|
Assimp::Exporter exporter;
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/glTF-Sample-Models/AnimatedMorphCube-glTF/AnimatedMorphCube_out.glTF"));
|
|
|
|
}
|
|
|
|
|
2019-11-18 16:57:01 +00:00
|
|
|
TEST_F(utglTF2ImportExport, error_string_preserved) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/MissingBin/BoxTextured.gltf",
|
2020-03-22 11:13:09 +00:00
|
|
|
aiProcess_ValidateDataStructure);
|
2019-11-18 16:57:01 +00:00
|
|
|
ASSERT_EQ(nullptr, scene);
|
|
|
|
std::string error = importer.GetErrorString();
|
|
|
|
ASSERT_NE(error.find("BoxTextured0.bin"), std::string::npos) << "Error string should contain an error about missing .bin file";
|
|
|
|
}
|
|
|
|
|
2020-05-07 06:41:05 +00:00
|
|
|
TEST_F(utglTF2ImportExport, export_bad_accessor_bounds) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxWithInfinites-glTF-Binary/BoxWithInfinites.glb", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
|
2020-05-07 06:59:48 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxWithInfinites-glTF-Binary/BoxWithInfinites_out.glb"));
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "gltf2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxWithInfinites-glTF-Binary/BoxWithInfinites_out.gltf"));
|
2020-05-07 06:41:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-07 08:21:54 +00:00
|
|
|
TEST_F(utglTF2ImportExport, export_normalized_normals) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxBadNormals-glTF-Binary/BoxBadNormals.glb", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxBadNormals-glTF-Binary/BoxBadNormals_out.glb"));
|
|
|
|
|
|
|
|
// load in again and ensure normal-length normals but no Nan's or Inf's introduced
|
|
|
|
scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxBadNormals-glTF-Binary/BoxBadNormals_out.glb", aiProcess_ValidateDataStructure);
|
|
|
|
for ( auto i = 0u; i < scene->mMeshes[0]->mNumVertices; ++i ) {
|
|
|
|
const auto length = scene->mMeshes[0]->mNormals[i].Length();
|
2022-02-16 19:07:27 +00:00
|
|
|
EXPECT_TRUE(abs(length) < 1e-6 || abs(length - 1) < ai_epsilon);
|
2020-05-07 08:21:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-12 13:57:58 +00:00
|
|
|
#endif // ASSIMP_BUILD_NO_EXPORT
|
2019-12-12 12:06:36 +00:00
|
|
|
|
2019-12-05 14:05:49 +00:00
|
|
|
TEST_F(utglTF2ImportExport, sceneMetadata) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf",
|
2020-03-22 11:13:09 +00:00
|
|
|
aiProcess_ValidateDataStructure);
|
2019-12-05 14:05:49 +00:00
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_NE(scene->mMetaData, nullptr);
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_FORMAT));
|
|
|
|
aiString format;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_FORMAT, format));
|
|
|
|
ASSERT_EQ(strcmp(format.C_Str(), "glTF2 Importer"), 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_FORMAT_VERSION));
|
|
|
|
aiString version;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_FORMAT_VERSION, version));
|
|
|
|
ASSERT_EQ(strcmp(version.C_Str(), "2.0"), 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_GENERATOR));
|
|
|
|
aiString generator;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_GENERATOR, generator));
|
|
|
|
ASSERT_EQ(strcmp(generator.C_Str(), "COLLADA2GLTF"), 0);
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 12:19:02 +00:00
|
|
|
|
2019-12-12 12:06:36 +00:00
|
|
|
TEST_F(utglTF2ImportExport, texcoords) {
|
2021-06-11 14:17:25 +00:00
|
|
|
|
2019-12-12 12:06:36 +00:00
|
|
|
Assimp::Importer importer;
|
2021-06-11 14:17:25 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTexcoords-glTF/boxTexcoords.gltf", aiProcess_ValidateDataStructure);
|
2019-12-12 12:06:36 +00:00
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_TRUE(scene->HasMaterials());
|
|
|
|
const aiMaterial *material = scene->mMaterials[0];
|
|
|
|
|
|
|
|
aiString path;
|
2021-06-11 14:17:25 +00:00
|
|
|
unsigned int uvIndex = 255;
|
2019-12-12 12:06:36 +00:00
|
|
|
aiTextureMapMode modes[2];
|
2021-06-11 14:17:25 +00:00
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(AI_MATKEY_BASE_COLOR_TEXTURE, &path, nullptr, &uvIndex, nullptr, nullptr, modes));
|
2019-12-12 12:06:36 +00:00
|
|
|
EXPECT_STREQ(path.C_Str(), "texture.png");
|
2021-08-20 18:20:47 +00:00
|
|
|
EXPECT_EQ(uvIndex, 0u);
|
2021-06-11 14:17:25 +00:00
|
|
|
|
|
|
|
uvIndex = 255;
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(AI_MATKEY_GLTF_PBRMETALLICROUGHNESS_METALLICROUGHNESS_TEXTURE, &path, nullptr, &uvIndex, nullptr, nullptr, modes));
|
|
|
|
EXPECT_STREQ(path.C_Str(), "texture.png");
|
2021-08-20 18:20:47 +00:00
|
|
|
EXPECT_EQ(uvIndex, 1u);
|
2021-06-11 14:17:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_EXPORT
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, texcoords_export) {
|
|
|
|
{
|
|
|
|
Assimp::Importer importer;
|
|
|
|
Assimp::Exporter exporter;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTexcoords-glTF/boxTexcoords.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, exporter.Export(scene, "glb2", ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTexcoords-glTF/boxTexcoords.gltf_out.glb"));
|
|
|
|
}
|
2019-12-12 12:06:36 +00:00
|
|
|
|
2021-06-11 14:17:25 +00:00
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTexcoords-glTF/boxTexcoords.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
|
|
|
|
ASSERT_TRUE(scene->HasMaterials());
|
|
|
|
const aiMaterial *material = scene->mMaterials[0];
|
|
|
|
|
|
|
|
aiString path;
|
|
|
|
unsigned int uvIndex = 255;
|
|
|
|
aiTextureMapMode modes[2];
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(AI_MATKEY_BASE_COLOR_TEXTURE, &path, nullptr, &uvIndex, nullptr, nullptr, modes));
|
|
|
|
EXPECT_STREQ(path.C_Str(), "texture.png");
|
2021-08-20 18:20:47 +00:00
|
|
|
EXPECT_EQ(uvIndex, 0u);
|
2019-12-12 12:06:36 +00:00
|
|
|
|
2021-06-11 14:17:25 +00:00
|
|
|
uvIndex = 255;
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, material->GetTexture(AI_MATKEY_GLTF_PBRMETALLICROUGHNESS_METALLICROUGHNESS_TEXTURE, &path, nullptr, &uvIndex, nullptr, nullptr, modes));
|
|
|
|
EXPECT_STREQ(path.C_Str(), "texture.png");
|
2021-08-20 18:20:47 +00:00
|
|
|
EXPECT_EQ(uvIndex, 1u);
|
2019-12-12 12:06:36 +00:00
|
|
|
}
|
2020-03-11 15:32:28 +00:00
|
|
|
|
2021-06-11 14:17:25 +00:00
|
|
|
#endif // ASSIMP_BUILD_NO_EXPORT
|
2020-03-11 15:32:28 +00:00
|
|
|
TEST_F(utglTF2ImportExport, recursive_nodes) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/RecursiveNodes/RecursiveNodes.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_EQ(nullptr, scene);
|
|
|
|
}
|
2020-03-26 10:16:58 +00:00
|
|
|
|
2020-03-11 15:56:54 +00:00
|
|
|
TEST_F(utglTF2ImportExport, norootnode_noscene) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/TestNoRootNode/NoScene.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_EQ(scene, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, norootnode_scenewithoutnodes) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/TestNoRootNode/SceneWithoutNodes.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_NE(scene->mRootNode, nullptr);
|
|
|
|
}
|
2020-06-12 09:43:31 +00:00
|
|
|
|
2020-06-12 10:29:51 +00:00
|
|
|
// Shall not crash!
|
2020-06-12 09:43:31 +00:00
|
|
|
TEST_F(utglTF2ImportExport, norootnode_issue_3269) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/issue_3269/texcoord_crash.gltf", aiProcess_ValidateDataStructure);
|
2020-06-12 10:29:51 +00:00
|
|
|
ASSERT_EQ(scene, nullptr);
|
2020-06-12 09:43:31 +00:00
|
|
|
}
|
2020-07-15 10:19:10 +00:00
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, indexOutOfRange) {
|
|
|
|
// The contents of an asset should not lead to an assert.
|
|
|
|
Assimp::Importer importer;
|
|
|
|
|
2020-07-24 08:57:24 +00:00
|
|
|
struct LogObserver : Assimp::LogStream {
|
2020-07-15 10:19:10 +00:00
|
|
|
bool m_observedWarning = false;
|
2020-07-24 08:57:24 +00:00
|
|
|
void write(const char *message) override {
|
2020-07-15 10:19:10 +00:00
|
|
|
m_observedWarning = m_observedWarning || std::strstr(message, "faces were dropped");
|
|
|
|
}
|
|
|
|
};
|
2020-07-15 11:19:00 +00:00
|
|
|
LogObserver logObserver;
|
2021-07-29 11:28:51 +00:00
|
|
|
|
2020-07-15 11:19:00 +00:00
|
|
|
DefaultLogger::get()->attachStream(&logObserver);
|
2020-07-15 10:19:10 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/IndexOutOfRange/IndexOutOfRange.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_NE(scene->mRootNode, nullptr);
|
2020-07-24 08:57:24 +00:00
|
|
|
ASSERT_EQ(scene->mNumMeshes, 1u);
|
|
|
|
EXPECT_EQ(scene->mMeshes[0]->mNumFaces, 11u);
|
2020-07-15 11:19:00 +00:00
|
|
|
DefaultLogger::get()->detachStream(&logObserver);
|
|
|
|
EXPECT_TRUE(logObserver.m_observedWarning);
|
2020-07-15 10:19:10 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 11:19:00 +00:00
|
|
|
TEST_F(utglTF2ImportExport, allIndicesOutOfRange) {
|
|
|
|
// The contents of an asset should not lead to an assert.
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/IndexOutOfRange/AllIndicesOutOfRange.gltf", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_EQ(scene, nullptr);
|
|
|
|
std::string error = importer.GetErrorString();
|
|
|
|
ASSERT_NE(error.find("Mesh \"Mesh\" has no faces"), std::string::npos);
|
|
|
|
}
|
2021-01-26 15:56:49 +00:00
|
|
|
|
|
|
|
/////////////////////////////////
|
|
|
|
// Draco decoding
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, import_dracoEncoded) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/draco/2CylinderEngine.gltf",
|
|
|
|
aiProcess_ValidateDataStructure);
|
2021-01-27 10:25:56 +00:00
|
|
|
#ifndef ASSIMP_ENABLE_DRACO
|
|
|
|
// No draco support, scene should not load
|
|
|
|
ASSERT_EQ(scene, nullptr);
|
|
|
|
#else
|
2021-01-26 15:56:49 +00:00
|
|
|
ASSERT_NE(scene, nullptr);
|
|
|
|
ASSERT_NE(scene->mMetaData, nullptr);
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_FORMAT));
|
|
|
|
aiString format;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_FORMAT, format));
|
|
|
|
ASSERT_EQ(strcmp(format.C_Str(), "glTF2 Importer"), 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_FORMAT_VERSION));
|
|
|
|
aiString version;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_FORMAT_VERSION, version));
|
|
|
|
ASSERT_EQ(strcmp(version.C_Str(), "2.0"), 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_GENERATOR));
|
|
|
|
aiString generator;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_GENERATOR, generator));
|
|
|
|
ASSERT_EQ(strcmp(generator.C_Str(), "COLLADA2GLTF"), 0);
|
|
|
|
}
|
2021-01-27 10:25:56 +00:00
|
|
|
#endif
|
2021-01-26 15:56:49 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 16:27:50 +00:00
|
|
|
TEST_F(utglTF2ImportExport, wrongTypes) {
|
|
|
|
// Deliberately broken version of the BoxTextured.gltf asset.
|
2021-08-20 17:40:04 +00:00
|
|
|
using tup_T = std::tuple<std::string, std::string, std::string, std::string>;
|
|
|
|
std::vector<tup_T> wrongTypes = {
|
2022-09-27 12:23:28 +00:00
|
|
|
#ifdef __cpp_lib_constexpr_tuple
|
2022-09-29 15:32:44 +00:00
|
|
|
#define TUPLE(x, y, z, w) {x, y, z, w}
|
2022-09-27 12:23:28 +00:00
|
|
|
#else
|
2022-09-29 15:32:44 +00:00
|
|
|
#define TUPLE(x, y, z, w) tup_T(x, y, z, w)
|
2022-09-27 12:23:28 +00:00
|
|
|
#endif
|
2022-09-29 14:48:15 +00:00
|
|
|
TUPLE("/glTF2/wrongTypes/badArray.gltf", "array", "primitives", "meshes[0]"),
|
|
|
|
TUPLE("/glTF2/wrongTypes/badString.gltf", "string", "name", "scenes[0]"),
|
|
|
|
TUPLE("/glTF2/wrongTypes/badUint.gltf", "uint", "index", "materials[0]"),
|
|
|
|
TUPLE("/glTF2/wrongTypes/badNumber.gltf", "number", "scale", "materials[0]"),
|
|
|
|
TUPLE("/glTF2/wrongTypes/badObject.gltf", "object", "pbrMetallicRoughness", "materials[0]"),
|
|
|
|
TUPLE("/glTF2/wrongTypes/badExtension.gltf", "object", "KHR_texture_transform", "materials[0]")
|
|
|
|
#undef TUPLE
|
2021-03-15 16:27:50 +00:00
|
|
|
};
|
|
|
|
for (const auto& tuple : wrongTypes)
|
|
|
|
{
|
|
|
|
const auto& file = std::get<0>(tuple);
|
|
|
|
const auto& type = std::get<1>(tuple);
|
2021-03-15 16:32:17 +00:00
|
|
|
const auto& member = std::get<2>(tuple);
|
|
|
|
const auto& context = std::get<3>(tuple);
|
2021-03-15 16:27:50 +00:00
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR + file , aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_EQ(scene, nullptr);
|
|
|
|
const std::string error = importer.GetErrorString();
|
|
|
|
EXPECT_FALSE(error.empty());
|
2021-03-15 16:32:17 +00:00
|
|
|
EXPECT_NE(error.find(member + "\" was not of type \"" + type + "\" when reading " + context), std::string::npos);
|
2021-03-15 16:27:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 14:46:48 +00:00
|
|
|
namespace {
|
|
|
|
/// This class provides a fake schema to the GLTF importer.
|
|
|
|
/// It just checks that the file has a top-level "scene" property which is an integer.
|
|
|
|
class FakeSchemaProvider : public rapidjson::IRemoteSchemaDocumentProvider
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FakeSchemaProvider(const char* schemaName) :
|
|
|
|
m_schemaName(schemaName)
|
|
|
|
{
|
|
|
|
rapidjson::Document schemaDoc;
|
|
|
|
schemaDoc.Parse(R"==({"properties":{"scene" : { "type" : "integer" }}, "required": [ "scene" ]})==");
|
|
|
|
EXPECT_FALSE(schemaDoc.HasParseError());
|
2021-10-07 08:29:56 +00:00
|
|
|
m_schema.reset(new rapidjson::SchemaDocument(schemaDoc, m_schemaName.c_str(), static_cast<rapidjson::SizeType>(m_schemaName.size()), this));
|
2021-10-06 14:46:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const rapidjson::SchemaDocument* GetRemoteDocument(const char* uri, rapidjson::SizeType) override {
|
|
|
|
if (m_schemaName == uri) {
|
|
|
|
return m_schema.get();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_schemaName;
|
|
|
|
std::unique_ptr<const rapidjson::SchemaDocument> m_schema;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, schemaCheckPass) {
|
|
|
|
FakeSchemaProvider schemaProvider("glTF.schema.json");
|
|
|
|
Assimp::Importer importer;
|
|
|
|
importer.SetPropertyPointer(AI_CONFIG_IMPORT_SCHEMA_DOCUMENT_PROVIDER, &schemaProvider);
|
2021-10-07 08:29:56 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf", aiProcess_ValidateDataStructure);
|
2021-10-06 14:46:48 +00:00
|
|
|
EXPECT_NE(scene, nullptr);
|
|
|
|
EXPECT_STREQ(importer.GetErrorString(), "");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, schemaCheckFail) {
|
|
|
|
FakeSchemaProvider schemaProvider("glTF.schema.json");
|
|
|
|
Assimp::Importer importer;
|
|
|
|
importer.SetPropertyPointer(AI_CONFIG_IMPORT_SCHEMA_DOCUMENT_PROVIDER, &schemaProvider);
|
2021-10-07 08:29:56 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/SchemaFailures/sceneWrongType.gltf", aiProcess_ValidateDataStructure);
|
2021-10-06 14:46:48 +00:00
|
|
|
EXPECT_EQ(scene, nullptr);
|
|
|
|
const std::string errorString = importer.GetErrorString();
|
|
|
|
EXPECT_NE(errorString.find("The JSON document did not satisfy the glTF2 schema"), std::string::npos);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utglTF2ImportExport, noSchemaFound) {
|
|
|
|
// More than one importer might make use the provider, but not all schemas might be present.
|
|
|
|
// Check that the glTF importer handles the case when an non-null provider returns null when asked for schemas.
|
|
|
|
FakeSchemaProvider schemaProvider("missingSchema.json");
|
|
|
|
Assimp::Importer importer;
|
|
|
|
importer.SetPropertyPointer(AI_CONFIG_IMPORT_SCHEMA_DOCUMENT_PROVIDER, &schemaProvider);
|
2021-10-07 08:29:56 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/glTF2/BoxTextured-glTF/BoxTextured.gltf", aiProcess_ValidateDataStructure);
|
2021-10-06 14:46:48 +00:00
|
|
|
EXPECT_NE(scene, nullptr);
|
|
|
|
EXPECT_STREQ(importer.GetErrorString(), "");
|
|
|
|
}
|
2024-02-06 20:24:41 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
TEST_F(utglTF2ImportExport, testSetIdentityMatrixEpsilon) {
|
|
|
|
// Assimp::Exporter exporter;
|
|
|
|
Assimp::ExportProperties properties = Assimp::ExportProperties();
|
|
|
|
EXPECT_EQ(AI_CONFIG_CHECK_IDENTITY_MATRIX_EPSILON_DEFAULT,
|
|
|
|
properties.GetPropertyFloat("CHECK_IDENTITY_MATRIX_EPSILON",
|
|
|
|
AI_CONFIG_CHECK_IDENTITY_MATRIX_EPSILON_DEFAULT));
|
|
|
|
aiMatrix4x4 m;
|
|
|
|
m = aiMatrix4x4(1.02f, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
|
|
|
|
EXPECT_FALSE(m.IsIdentity());
|
|
|
|
m = aiMatrix4x4(1.001f, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
|
|
|
|
EXPECT_TRUE(m.IsIdentity());
|
|
|
|
|
|
|
|
bool b = properties.SetPropertyFloat("CHECK_IDENTITY_MATRIX_EPSILON", 0.0001f);
|
|
|
|
EXPECT_TRUE(!b);
|
|
|
|
ai_real epsilon = properties.GetPropertyFloat("CHECK_IDENTITY_MATRIX_EPSILON", 0.01f);
|
|
|
|
EXPECT_EQ(0.0001f, epsilon);
|
|
|
|
m = aiMatrix4x4(1.0002f, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
|
|
|
|
EXPECT_FALSE(m.IsIdentity(epsilon));
|
|
|
|
m = aiMatrix4x4(1.00009f, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
|
|
|
|
EXPECT_TRUE(m.IsIdentity(epsilon));
|
|
|
|
}
|
|
|
|
|