Merge pull request #3214 from jercytryn/master
[gltf2 Export] More robust handling for non-finites and 0-length normalspull/3215/head^2
commit
0fc82388f9
|
@ -530,7 +530,9 @@ namespace glTF {
|
||||||
StringBuffer docBuffer;
|
StringBuffer docBuffer;
|
||||||
|
|
||||||
PrettyWriter<StringBuffer> writer(docBuffer);
|
PrettyWriter<StringBuffer> writer(docBuffer);
|
||||||
mDoc.Accept(writer);
|
if (!mDoc.Accept(writer)) {
|
||||||
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
}
|
||||||
|
|
||||||
if (jsonOutFile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
if (jsonOutFile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
||||||
throw DeadlyExportError("Failed to write scene data!");
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
@ -569,7 +571,9 @@ namespace glTF {
|
||||||
|
|
||||||
StringBuffer docBuffer;
|
StringBuffer docBuffer;
|
||||||
Writer<StringBuffer> writer(docBuffer);
|
Writer<StringBuffer> writer(docBuffer);
|
||||||
mDoc.Accept(writer);
|
if (!mDoc.Accept(writer)) {
|
||||||
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
}
|
||||||
|
|
||||||
if (outfile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
if (outfile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
||||||
throw DeadlyExportError("Failed to write scene data!");
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
|
|
@ -613,7 +613,9 @@ namespace glTF2 {
|
||||||
StringBuffer docBuffer;
|
StringBuffer docBuffer;
|
||||||
|
|
||||||
PrettyWriter<StringBuffer> writer(docBuffer);
|
PrettyWriter<StringBuffer> writer(docBuffer);
|
||||||
mDoc.Accept(writer);
|
if (!mDoc.Accept(writer)) {
|
||||||
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
}
|
||||||
|
|
||||||
if (jsonOutFile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
if (jsonOutFile->Write(docBuffer.GetString(), docBuffer.GetSize(), 1) != 1) {
|
||||||
throw DeadlyExportError("Failed to write scene data!");
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
@ -664,7 +666,9 @@ namespace glTF2 {
|
||||||
|
|
||||||
StringBuffer docBuffer;
|
StringBuffer docBuffer;
|
||||||
Writer<StringBuffer> writer(docBuffer);
|
Writer<StringBuffer> writer(docBuffer);
|
||||||
mDoc.Accept(writer);
|
if (!mDoc.Accept(writer)) {
|
||||||
|
throw DeadlyExportError("Failed to write scene data!");
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t jsonChunkLength = (docBuffer.GetSize() + 3) & ~3; // Round up to next multiple of 4
|
uint32_t jsonChunkLength = (docBuffer.GetSize() + 3) & ~3; // Round up to next multiple of 4
|
||||||
auto paddingLength = jsonChunkLength - docBuffer.GetSize();
|
auto paddingLength = jsonChunkLength - docBuffer.GetSize();
|
||||||
|
@ -816,5 +820,3 @@ namespace glTF2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/*
|
/*
|
||||||
Open Asset Import Library (assimp)
|
Open Asset Import Library (assimp)
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -172,6 +172,13 @@ void SetAccessorRange(Ref<Accessor> acc, void* data, size_t count,
|
||||||
for (unsigned int j = 0 ; j < numCompsOut ; j++) {
|
for (unsigned int j = 0 ; j < numCompsOut ; j++) {
|
||||||
double valueTmp = buffer_ptr[j];
|
double valueTmp = buffer_ptr[j];
|
||||||
|
|
||||||
|
// Gracefully tolerate rogue NaN's in buffer data
|
||||||
|
// Any NaNs/Infs introduced in accessor bounds will end up in
|
||||||
|
// document and prevent rapidjson from writing out valid JSON
|
||||||
|
if (!std::isfinite(valueTmp)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (valueTmp < acc->min[j]) {
|
if (valueTmp < acc->min[j]) {
|
||||||
acc->min[j] = valueTmp;
|
acc->min[j] = valueTmp;
|
||||||
}
|
}
|
||||||
|
@ -751,7 +758,7 @@ void glTF2Exporter::ExportMeshes()
|
||||||
// Normalize all normals as the validator can emit a warning otherwise
|
// Normalize all normals as the validator can emit a warning otherwise
|
||||||
if ( nullptr != aim->mNormals) {
|
if ( nullptr != aim->mNormals) {
|
||||||
for ( auto i = 0u; i < aim->mNumVertices; ++i ) {
|
for ( auto i = 0u; i < aim->mNumVertices; ++i ) {
|
||||||
aim->mNormals[ i ].Normalize();
|
aim->mNormals[ i ].NormalizeSafe();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -436,6 +436,31 @@ TEST_F(utglTF2ImportExport, error_string_preserved) {
|
||||||
ASSERT_NE(error.find("BoxTextured0.bin"), std::string::npos) << "Error string should contain an error about missing .bin file";
|
ASSERT_NE(error.find("BoxTextured0.bin"), std::string::npos) << "Error string should contain an error about missing .bin file";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
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"));
|
||||||
|
}
|
||||||
|
|
||||||
|
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();
|
||||||
|
EXPECT_TRUE(abs(length) < 1e-6 || abs(length - 1) < 1e-6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endif // ASSIMP_BUILD_NO_EXPORT
|
#endif // ASSIMP_BUILD_NO_EXPORT
|
||||||
|
|
||||||
TEST_F(utglTF2ImportExport, sceneMetadata) {
|
TEST_F(utglTF2ImportExport, sceneMetadata) {
|
||||||
|
|
Loading…
Reference in New Issue