2016-12-02 10:32:34 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2020-01-20 13:53:12 +00:00
|
|
|
Copyright (c) 2006-2020, assimp team
|
2018-01-28 18:42:05 +00:00
|
|
|
|
2016-12-02 10:32:34 +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"
|
2016-12-02 10:32:34 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/commonMetaData.h>
|
2018-01-10 18:18:11 +00:00
|
|
|
#include <assimp/material.h>
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/postprocess.h>
|
2018-01-10 18:18:11 +00:00
|
|
|
#include <assimp/scene.h>
|
|
|
|
#include <assimp/types.h>
|
2020-03-22 11:13:09 +00:00
|
|
|
#include <assimp/Importer.hpp>
|
2016-12-02 10:32:34 +00:00
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
|
|
|
class utFBXImporterExporter : public AbstractImportExportBase {
|
|
|
|
public:
|
|
|
|
virtual bool importerTest() {
|
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/spider.fbx", aiProcess_ValidateDataStructure);
|
2016-12-02 10:32:34 +00:00
|
|
|
return nullptr != scene;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utFBXImporterExporter, importXFromFileTest) {
|
|
|
|
EXPECT_TRUE(importerTest());
|
2016-12-02 10:32:34 +00:00
|
|
|
}
|
2018-01-04 12:10:13 +00:00
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utFBXImporterExporter, importBareBoxWithoutColorsAndTextureCoords) {
|
2018-01-04 12:10:13 +00:00
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/box.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(scene->mNumMeshes, 1u);
|
2020-03-22 11:13:09 +00:00
|
|
|
aiMesh *mesh = scene->mMeshes[0];
|
2019-07-19 08:38:44 +00:00
|
|
|
EXPECT_EQ(mesh->mNumFaces, 12u);
|
|
|
|
EXPECT_EQ(mesh->mNumVertices, 36u);
|
2018-01-04 12:10:13 +00:00
|
|
|
}
|
2018-01-10 18:18:11 +00:00
|
|
|
|
2019-05-14 16:58:06 +00:00
|
|
|
TEST_F(utFBXImporterExporter, importCubesWithNoNames) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/cubes_nonames.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_TRUE(scene);
|
|
|
|
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
const auto root = scene->mRootNode;
|
|
|
|
ASSERT_STREQ(root->mName.C_Str(), "RootNode");
|
|
|
|
ASSERT_TRUE(root->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(root->mNumChildren, 2u);
|
2019-05-14 16:58:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importCubesWithUnicodeDuplicatedNames) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/cubes_with_names.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_TRUE(scene);
|
|
|
|
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
const auto root = scene->mRootNode;
|
|
|
|
ASSERT_STREQ(root->mName.C_Str(), "RootNode");
|
|
|
|
ASSERT_TRUE(root->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(root->mNumChildren, 2u);
|
2019-05-14 16:58:06 +00:00
|
|
|
|
|
|
|
const auto child0 = root->mChildren[0];
|
|
|
|
ASSERT_TRUE(child0);
|
|
|
|
ASSERT_STREQ(child0->mName.C_Str(), "Cube2");
|
|
|
|
ASSERT_TRUE(child0->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(child0->mNumChildren, 1u);
|
2019-05-14 16:58:06 +00:00
|
|
|
|
|
|
|
const auto child00 = child0->mChildren[0];
|
|
|
|
ASSERT_TRUE(child00);
|
|
|
|
ASSERT_STREQ(child00->mName.C_Str(), "\xd0\x9a\xd1\x83\xd0\xb1\x31");
|
|
|
|
|
|
|
|
const auto child1 = root->mChildren[1];
|
|
|
|
ASSERT_TRUE(child1);
|
|
|
|
ASSERT_STREQ(child1->mName.C_Str(), "Cube3");
|
|
|
|
ASSERT_TRUE(child1->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(child1->mNumChildren, 1u);
|
2019-05-14 16:58:06 +00:00
|
|
|
|
|
|
|
const auto child10 = child1->mChildren[0];
|
|
|
|
ASSERT_TRUE(child10);
|
2019-10-26 16:27:07 +00:00
|
|
|
ASSERT_STREQ(child10->mName.C_Str(), "\xd0\x9a\xd1\x83\xd0\xb1\x31");
|
2019-05-14 16:58:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importCubesComplexTransform) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/cubes_with_mirroring_and_pivot.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_TRUE(scene);
|
|
|
|
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
const auto root = scene->mRootNode;
|
|
|
|
ASSERT_STREQ(root->mName.C_Str(), "RootNode");
|
|
|
|
ASSERT_TRUE(root->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(root->mNumChildren, 2u);
|
2019-05-14 16:58:06 +00:00
|
|
|
|
|
|
|
const auto child0 = root->mChildren[0];
|
|
|
|
ASSERT_TRUE(child0);
|
|
|
|
ASSERT_STREQ(child0->mName.C_Str(), "Cube2");
|
|
|
|
ASSERT_TRUE(child0->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(child0->mNumChildren, 1u);
|
2019-05-14 16:58:06 +00:00
|
|
|
|
|
|
|
const auto child00 = child0->mChildren[0];
|
|
|
|
ASSERT_TRUE(child00);
|
|
|
|
ASSERT_STREQ(child00->mName.C_Str(), "Cube1");
|
|
|
|
|
|
|
|
const auto child1 = root->mChildren[1];
|
|
|
|
ASSERT_TRUE(child1);
|
|
|
|
ASSERT_STREQ(child1->mName.C_Str(), "Cube3");
|
|
|
|
|
|
|
|
auto parent = child1;
|
2019-05-15 10:26:09 +00:00
|
|
|
const size_t chain_length = 8u;
|
2020-03-22 11:13:09 +00:00
|
|
|
const char *chainStr[chain_length] = {
|
2019-10-26 16:27:07 +00:00
|
|
|
"Cube1_$AssimpFbx$_Translation",
|
|
|
|
"Cube1_$AssimpFbx$_RotationPivot",
|
|
|
|
"Cube1_$AssimpFbx$_RotationPivotInverse",
|
|
|
|
"Cube1_$AssimpFbx$_ScalingOffset",
|
|
|
|
"Cube1_$AssimpFbx$_ScalingPivot",
|
|
|
|
"Cube1_$AssimpFbx$_Scaling",
|
|
|
|
"Cube1_$AssimpFbx$_ScalingPivotInverse",
|
|
|
|
"Cube1"
|
2019-05-14 16:58:06 +00:00
|
|
|
};
|
2019-07-19 08:38:44 +00:00
|
|
|
for (size_t i = 0; i < chain_length; ++i) {
|
2019-05-14 16:58:06 +00:00
|
|
|
ASSERT_TRUE(parent->mChildren);
|
2019-07-19 08:38:44 +00:00
|
|
|
ASSERT_EQ(parent->mNumChildren, 1u);
|
2019-05-14 16:58:06 +00:00
|
|
|
auto node = parent->mChildren[0];
|
|
|
|
ASSERT_TRUE(node);
|
|
|
|
ASSERT_STREQ(node->mName.C_Str(), chainStr[i]);
|
|
|
|
parent = node;
|
|
|
|
}
|
2019-07-19 09:26:48 +00:00
|
|
|
ASSERT_EQ(0u, parent->mNumChildren) << "Leaf node";
|
2019-05-14 16:58:06 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 14:24:18 +00:00
|
|
|
TEST_F(utFBXImporterExporter, importCloseToIdentityTransforms) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
// This was asserting in FBXConverter.cpp because the transforms appeared to be the identity by one test, but not by another.
|
|
|
|
// This asset should now load successfully.
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/close_to_identity_transforms.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_TRUE(scene);
|
|
|
|
}
|
|
|
|
|
2020-03-22 11:13:09 +00:00
|
|
|
TEST_F(utFBXImporterExporter, importPhongMaterial) {
|
2018-01-10 18:18:11 +00:00
|
|
|
Assimp::Importer importer;
|
2020-03-22 11:13:09 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/phong_cube.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_EQ(1u, scene->mNumMaterials);
|
2018-01-10 18:18:11 +00:00
|
|
|
const aiMaterial *mat = scene->mMaterials[0];
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_NE(nullptr, mat);
|
2019-07-19 08:38:44 +00:00
|
|
|
float f;
|
|
|
|
aiColor3D c;
|
|
|
|
|
2018-01-10 18:18:11 +00:00
|
|
|
// phong_cube.fbx has all properties defined
|
2020-03-22 11:13:09 +00:00
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_COLOR_DIFFUSE, c), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(c, aiColor3D(0.5, 0.25, 0.25));
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_COLOR_SPECULAR, c), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(c, aiColor3D(0.25, 0.25, 0.5));
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_SHININESS_STRENGTH, f), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(f, 0.5f);
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_SHININESS, f), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(f, 10.0f);
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_COLOR_AMBIENT, c), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(c, aiColor3D(0.125, 0.25, 0.25));
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_COLOR_EMISSIVE, c), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(c, aiColor3D(0.25, 0.125, 0.25));
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_COLOR_TRANSPARENT, c), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(c, aiColor3D(0.75, 0.5, 0.25));
|
|
|
|
EXPECT_EQ(mat->Get(AI_MATKEY_OPACITY, f), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(f, 0.5f);
|
2018-01-10 18:18:11 +00:00
|
|
|
}
|
2018-01-23 14:13:23 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importUnitScaleFactor) {
|
|
|
|
Assimp::Importer importer;
|
2018-02-04 15:42:36 +00:00
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/global_settings.fbx", aiProcess_ValidateDataStructure);
|
2018-01-23 14:13:23 +00:00
|
|
|
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
EXPECT_NE(nullptr, scene->mMetaData);
|
|
|
|
|
2020-04-30 07:14:42 +00:00
|
|
|
float factor(0.0f);
|
2018-01-23 14:13:23 +00:00
|
|
|
scene->mMetaData->Get("UnitScaleFactor", factor);
|
2020-04-30 07:14:42 +00:00
|
|
|
EXPECT_EQ(500.0f, factor);
|
2020-04-06 09:16:16 +00:00
|
|
|
|
2020-04-30 07:14:42 +00:00
|
|
|
scene->mMetaData->Set("UnitScaleFactor", factor * 2.0f);
|
2020-04-06 09:16:16 +00:00
|
|
|
scene->mMetaData->Get("UnitScaleFactor", factor);
|
2020-04-30 07:14:42 +00:00
|
|
|
EXPECT_EQ(1000.0f, factor);
|
2018-01-23 14:13:23 +00:00
|
|
|
}
|
2019-04-08 15:37:40 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importEmbeddedAsciiTest) {
|
|
|
|
// see https://github.com/assimp/assimp/issues/1957
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/embedded_ascii/box.FBX", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
|
2019-07-19 09:55:12 +00:00
|
|
|
EXPECT_EQ(1u, scene->mNumMaterials);
|
2019-04-08 15:37:40 +00:00
|
|
|
aiMaterial *mat = scene->mMaterials[0];
|
|
|
|
ASSERT_NE(nullptr, mat);
|
|
|
|
|
|
|
|
aiString path;
|
|
|
|
aiTextureMapMode modes[2];
|
|
|
|
EXPECT_EQ(aiReturn_SUCCESS, mat->GetTexture(aiTextureType_DIFFUSE, 0, &path, nullptr, nullptr, nullptr, nullptr, modes));
|
2019-06-27 16:59:55 +00:00
|
|
|
ASSERT_STREQ(path.C_Str(), "..\\..\\..\\Desktop\\uv_test.png");
|
2019-05-14 13:43:16 +00:00
|
|
|
|
2019-07-19 09:26:48 +00:00
|
|
|
ASSERT_EQ(1u, scene->mNumTextures);
|
2019-05-14 13:43:16 +00:00
|
|
|
ASSERT_TRUE(scene->mTextures[0]->pcData);
|
|
|
|
ASSERT_EQ(439176u, scene->mTextures[0]->mWidth) << "FBX ASCII base64 compression splits data by 512Kb, it should be two parts for this texture";
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importEmbeddedFragmentedAsciiTest) {
|
|
|
|
// see https://github.com/assimp/assimp/issues/1957
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/embedded_ascii/box_embedded_texture_fragmented.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
|
2019-07-19 09:26:48 +00:00
|
|
|
EXPECT_EQ(1u, scene->mNumMaterials);
|
2019-05-14 13:43:16 +00:00
|
|
|
aiMaterial *mat = scene->mMaterials[0];
|
|
|
|
ASSERT_NE(nullptr, mat);
|
|
|
|
|
|
|
|
aiString path;
|
|
|
|
aiTextureMapMode modes[2];
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, mat->GetTexture(aiTextureType_DIFFUSE, 0, &path, nullptr, nullptr, nullptr, nullptr, modes));
|
|
|
|
ASSERT_STREQ(path.C_Str(), "paper.png");
|
|
|
|
|
2019-07-19 09:26:48 +00:00
|
|
|
ASSERT_EQ(1u, scene->mNumTextures);
|
2019-05-14 13:43:16 +00:00
|
|
|
ASSERT_TRUE(scene->mTextures[0]->pcData);
|
|
|
|
ASSERT_EQ(968029u, scene->mTextures[0]->mWidth) << "FBX ASCII base64 compression splits data by 512Kb, it should be two parts for this texture";
|
2019-04-08 15:37:40 +00:00
|
|
|
}
|
2019-09-14 08:31:35 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, fbxTokenizeTestTest) {
|
2019-09-18 12:09:48 +00:00
|
|
|
//Assimp::Importer importer;
|
|
|
|
//const aiScene* scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/transparentTest2.fbx", aiProcess_ValidateDataStructure);
|
2019-09-18 09:50:26 +00:00
|
|
|
//EXPECT_NE(nullptr, scene);
|
2019-09-14 08:31:35 +00:00
|
|
|
}
|
2019-11-01 12:29:54 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importOrphantEmbeddedTextureTest) {
|
|
|
|
// see https://github.com/assimp/assimp/issues/1957
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/box_orphant_embedded_texture.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
EXPECT_NE(nullptr, scene);
|
|
|
|
|
|
|
|
EXPECT_EQ(1u, scene->mNumMaterials);
|
|
|
|
aiMaterial *mat = scene->mMaterials[0];
|
|
|
|
ASSERT_NE(nullptr, mat);
|
|
|
|
|
|
|
|
aiString path;
|
|
|
|
aiTextureMapMode modes[2];
|
|
|
|
ASSERT_EQ(aiReturn_SUCCESS, mat->GetTexture(aiTextureType_DIFFUSE, 0, &path, nullptr, nullptr, nullptr, nullptr, modes));
|
|
|
|
ASSERT_STREQ(path.C_Str(), "..\\Primitives\\GridGrey.tga");
|
|
|
|
|
|
|
|
ASSERT_EQ(1u, scene->mNumTextures);
|
|
|
|
ASSERT_TRUE(scene->mTextures[0]->pcData);
|
|
|
|
ASSERT_EQ(9026u, scene->mTextures[0]->mWidth) << "FBX ASCII base64 compression used for a texture.";
|
|
|
|
}
|
2019-12-05 14:05:49 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, sceneMetadata) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/global_settings.fbx",
|
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(), "Autodesk FBX 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(), "7400"), 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ASSERT_TRUE(scene->mMetaData->HasKey(AI_METADATA_SOURCE_GENERATOR));
|
|
|
|
aiString generator;
|
|
|
|
ASSERT_TRUE(scene->mMetaData->Get(AI_METADATA_SOURCE_GENERATOR, generator));
|
|
|
|
ASSERT_EQ(strncmp(generator.C_Str(), "Blender", 7), 0);
|
|
|
|
}
|
|
|
|
}
|
2020-03-11 12:46:13 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importCubesWithOutOfRangeFloat) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/cubes_with_outofrange_float.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(nullptr, scene);
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
}
|
2020-12-01 12:05:42 +00:00
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importMaxPbrMaterialsMetalRoughness) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/maxPbrMaterial_metalRough.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(nullptr, scene);
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
|
2021-01-31 00:49:32 +00:00
|
|
|
ASSERT_EQ(scene->mNumMaterials, 1u);
|
2020-12-01 12:05:42 +00:00
|
|
|
const aiMaterial* mat = scene->mMaterials[0];
|
|
|
|
aiString texture;
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_BASE_COLOR, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\albedo.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_METALNESS, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\metalness.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_EMISSION_COLOR, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\emission.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_NORMAL_CAMERA, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\normal.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_DIFFUSE_ROUGHNESS, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\roughness.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_AMBIENT_OCCLUSION, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\occlusion.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_OPACITY, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\opacity.png"));
|
|
|
|
|
|
|
|
// The material contains values for standard properties (e.g. SpecularColor), where 3ds Max has presumably
|
|
|
|
// used formulas to map the Pbr values into the standard material model. However, the pbr values themselves
|
|
|
|
// are available in the material as untyped "raw" properties. We check that these are correctly parsed:
|
|
|
|
|
|
|
|
aiColor4D baseColor;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|basecolor", aiTextureType_NONE, 0, baseColor), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(baseColor, aiColor4D(0, 1, 1, 1));
|
|
|
|
|
|
|
|
float metalness;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|metalness", aiTextureType_NONE, 0, metalness), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(metalness, 0.25f);
|
|
|
|
|
|
|
|
float roughness;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|roughness", aiTextureType_NONE, 0, roughness), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(roughness, 0.5f);
|
|
|
|
|
|
|
|
int useGlossiness;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|useGlossiness", aiTextureType_NONE, 0, useGlossiness), aiReturn_SUCCESS);
|
2020-12-02 16:59:29 +00:00
|
|
|
EXPECT_EQ(useGlossiness, 2); // 1 = Roughness map is glossiness, 2 = Roughness map is roughness.
|
2020-12-01 12:05:42 +00:00
|
|
|
|
|
|
|
float bumpMapAmt; // Presumably amount.
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|bump_map_amt", aiTextureType_NONE, 0, bumpMapAmt), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(bumpMapAmt, 0.75f);
|
|
|
|
|
|
|
|
aiColor4D emitColor;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|emit_color", aiTextureType_NONE, 0, emitColor), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(emitColor, aiColor4D(1, 1, 0, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(utFBXImporterExporter, importMaxPbrMaterialsSpecularGloss) {
|
|
|
|
Assimp::Importer importer;
|
|
|
|
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/FBX/maxPbrMaterial_specGloss.fbx", aiProcess_ValidateDataStructure);
|
|
|
|
ASSERT_NE(nullptr, scene);
|
|
|
|
ASSERT_TRUE(scene->mRootNode);
|
|
|
|
|
2021-01-31 00:49:32 +00:00
|
|
|
ASSERT_EQ(scene->mNumMaterials, 1u);
|
2020-12-01 12:05:42 +00:00
|
|
|
const aiMaterial* mat = scene->mMaterials[0];
|
|
|
|
aiString texture;
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_BASE_COLOR, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\albedo.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_SPECULAR, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\specular.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_EMISSION_COLOR, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\emission.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_NORMAL_CAMERA, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\normal.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_SHININESS, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\glossiness.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_AMBIENT_OCCLUSION, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\occlusion.png"));
|
|
|
|
ASSERT_EQ(mat->Get(AI_MATKEY_TEXTURE(aiTextureType_OPACITY, 0), texture), AI_SUCCESS);
|
|
|
|
EXPECT_EQ(texture, aiString("Textures\\opacity.png"));
|
|
|
|
|
|
|
|
// The material contains values for standard properties (e.g. SpecularColor), where 3ds Max has presumably
|
|
|
|
// used formulas to map the Pbr values into the standard material model. However, the pbr values themselves
|
|
|
|
// are available in the material as untyped "raw" properties. We check that these are correctly parsed:
|
|
|
|
|
|
|
|
aiColor4D baseColor;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|basecolor", aiTextureType_NONE, 0, baseColor), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(baseColor, aiColor4D(0, 1, 1, 1));
|
|
|
|
|
|
|
|
aiColor4D specular;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|Specular", aiTextureType_NONE, 0, specular), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(specular, aiColor4D(1, 1, 0, 1));
|
|
|
|
|
|
|
|
float glossiness;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|glossiness", aiTextureType_NONE, 0, glossiness), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(glossiness, 0.33f);
|
|
|
|
|
|
|
|
int useGlossiness;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|useGlossiness", aiTextureType_NONE, 0, useGlossiness), aiReturn_SUCCESS);
|
2020-12-02 16:59:29 +00:00
|
|
|
EXPECT_EQ(useGlossiness, 1); // 1 = Glossiness map is glossiness, 2 = Glossiness map is roughness.
|
2020-12-01 12:05:42 +00:00
|
|
|
|
|
|
|
float bumpMapAmt; // Presumably amount.
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|bump_map_amt", aiTextureType_NONE, 0, bumpMapAmt), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(bumpMapAmt, 0.66f);
|
|
|
|
|
|
|
|
aiColor4D emitColor;
|
|
|
|
ASSERT_EQ(mat->Get("$raw.3dsMax|main|emit_color", aiTextureType_NONE, 0, emitColor), aiReturn_SUCCESS);
|
|
|
|
EXPECT_EQ(emitColor, aiColor4D(1, 0, 1, 1));
|
|
|
|
}
|