Merge branch 'master' into clean_gltf_pbr_brdf
commit
760953c834
|
@ -513,7 +513,7 @@ void ProcessPolygonalBoundedBooleanHalfSpaceDifference(const Schema_2x3::IfcPoly
|
||||||
}
|
}
|
||||||
|
|
||||||
// we got a list of in-out-combinations of intersections. That should be an even number of intersections, or
|
// we got a list of in-out-combinations of intersections. That should be an even number of intersections, or
|
||||||
// we're fucked.
|
// we are facing a non-recoverable error.
|
||||||
if ((intersections.size() & 1) != 0) {
|
if ((intersections.size() & 1) != 0) {
|
||||||
IFCImporter::LogWarn("Odd number of intersections, can't work with that. Omitting half space boundary check.");
|
IFCImporter::LogWarn("Odd number of intersections, can't work with that. Omitting half space boundary check.");
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -518,9 +518,8 @@ void glTF2Exporter::GetMatTex(const aiMaterial& mat, Ref<Texture>& texture, unsi
|
||||||
std::string imgId = mAsset->FindUniqueID("", "image");
|
std::string imgId = mAsset->FindUniqueID("", "image");
|
||||||
texture->source = mAsset->images.Create(imgId);
|
texture->source = mAsset->images.Create(imgId);
|
||||||
|
|
||||||
if (path[0] == '*') { // embedded
|
const aiTexture* curTex = mScene->GetEmbeddedTexture(path.c_str());
|
||||||
aiTexture* curTex = mScene->mTextures[atoi(&path[1])];
|
if (curTex != nullptr) { // embedded
|
||||||
|
|
||||||
texture->source->name = curTex->mFilename.C_Str();
|
texture->source->name = curTex->mFilename.C_Str();
|
||||||
|
|
||||||
//basisu: embedded ktx2, bu
|
//basisu: embedded ktx2, bu
|
||||||
|
|
|
@ -4,7 +4,6 @@ Open Asset Import Library (assimp)
|
||||||
|
|
||||||
Copyright (c) 2006-2021, assimp team
|
Copyright (c) 2006-2021, assimp team
|
||||||
|
|
||||||
|
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use of this software in source and binary forms,
|
Redistribution and use of this software in source and binary forms,
|
||||||
|
@ -41,6 +40,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "EmbedTexturesProcess.h"
|
#include "EmbedTexturesProcess.h"
|
||||||
|
#include <assimp/IOStream.hpp>
|
||||||
|
#include <assimp/IOSystem.hpp>
|
||||||
#include <assimp/ParsingUtils.h>
|
#include <assimp/ParsingUtils.h>
|
||||||
#include "ProcessHelper.h"
|
#include "ProcessHelper.h"
|
||||||
|
|
||||||
|
@ -48,11 +49,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
|
|
||||||
EmbedTexturesProcess::EmbedTexturesProcess()
|
EmbedTexturesProcess::EmbedTexturesProcess() :
|
||||||
: BaseProcess() {
|
BaseProcess() {
|
||||||
|
// empty
|
||||||
}
|
}
|
||||||
|
|
||||||
EmbedTexturesProcess::~EmbedTexturesProcess() {
|
EmbedTexturesProcess::~EmbedTexturesProcess() {
|
||||||
|
// empty
|
||||||
}
|
}
|
||||||
|
|
||||||
bool EmbedTexturesProcess::IsActive(unsigned int pFlags) const {
|
bool EmbedTexturesProcess::IsActive(unsigned int pFlags) const {
|
||||||
|
@ -62,15 +65,16 @@ bool EmbedTexturesProcess::IsActive(unsigned int pFlags) const {
|
||||||
void EmbedTexturesProcess::SetupProperties(const Importer* pImp) {
|
void EmbedTexturesProcess::SetupProperties(const Importer* pImp) {
|
||||||
mRootPath = pImp->GetPropertyString("sourceFilePath");
|
mRootPath = pImp->GetPropertyString("sourceFilePath");
|
||||||
mRootPath = mRootPath.substr(0, mRootPath.find_last_of("\\/") + 1u);
|
mRootPath = mRootPath.substr(0, mRootPath.find_last_of("\\/") + 1u);
|
||||||
|
mIOHandler = pImp->GetIOHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
void EmbedTexturesProcess::Execute(aiScene* pScene) {
|
void EmbedTexturesProcess::Execute(aiScene* pScene) {
|
||||||
if (pScene == nullptr || pScene->mRootNode == nullptr) return;
|
if (pScene == nullptr || pScene->mRootNode == nullptr || mIOHandler == nullptr){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
aiString path;
|
aiString path;
|
||||||
|
|
||||||
uint32_t embeddedTexturesCount = 0u;
|
uint32_t embeddedTexturesCount = 0u;
|
||||||
|
|
||||||
for (auto matId = 0u; matId < pScene->mNumMaterials; ++matId) {
|
for (auto matId = 0u; matId < pScene->mNumMaterials; ++matId) {
|
||||||
auto material = pScene->mMaterials[matId];
|
auto material = pScene->mMaterials[matId];
|
||||||
|
|
||||||
|
@ -101,27 +105,31 @@ bool EmbedTexturesProcess::addTexture(aiScene* pScene, std::string path) const {
|
||||||
std::string imagePath = path;
|
std::string imagePath = path;
|
||||||
|
|
||||||
// Test path directly
|
// Test path directly
|
||||||
std::ifstream file(imagePath, std::ios::binary | std::ios::ate);
|
if (!mIOHandler->Exists(imagePath)) {
|
||||||
if ((imageSize = file.tellg()) == std::streampos(-1)) {
|
|
||||||
ASSIMP_LOG_WARN("EmbedTexturesProcess: Cannot find image: ", imagePath, ". Will try to find it in root folder.");
|
ASSIMP_LOG_WARN("EmbedTexturesProcess: Cannot find image: ", imagePath, ". Will try to find it in root folder.");
|
||||||
|
|
||||||
// Test path in root path
|
// Test path in root path
|
||||||
imagePath = mRootPath + path;
|
imagePath = mRootPath + path;
|
||||||
file.open(imagePath, std::ios::binary | std::ios::ate);
|
if (!mIOHandler->Exists(imagePath)) {
|
||||||
if ((imageSize = file.tellg()) == std::streampos(-1)) {
|
|
||||||
// Test path basename in root path
|
// Test path basename in root path
|
||||||
imagePath = mRootPath + path.substr(path.find_last_of("\\/") + 1u);
|
imagePath = mRootPath + path.substr(path.find_last_of("\\/") + 1u);
|
||||||
file.open(imagePath, std::ios::binary | std::ios::ate);
|
if (!mIOHandler->Exists(imagePath)) {
|
||||||
if ((imageSize = file.tellg()) == std::streampos(-1)) {
|
|
||||||
ASSIMP_LOG_ERROR("EmbedTexturesProcess: Unable to embed texture: ", path, ".");
|
ASSIMP_LOG_ERROR("EmbedTexturesProcess: Unable to embed texture: ", path, ".");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
IOStream* pFile = mIOHandler->Open(imagePath);
|
||||||
|
if (pFile == nullptr) {
|
||||||
|
ASSIMP_LOG_ERROR("EmbedTexturesProcess: Unable to embed texture: ", path, ".");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
imageSize = pFile->FileSize();
|
||||||
|
|
||||||
aiTexel* imageContent = new aiTexel[ 1ul + static_cast<unsigned long>( imageSize ) / sizeof(aiTexel)];
|
aiTexel* imageContent = new aiTexel[ 1ul + static_cast<unsigned long>( imageSize ) / sizeof(aiTexel)];
|
||||||
file.seekg(0, std::ios::beg);
|
pFile->Seek(0, aiOrigin_SET);
|
||||||
file.read(reinterpret_cast<char*>(imageContent), imageSize);
|
pFile->Read(reinterpret_cast<char*>(imageContent), imageSize, 1);
|
||||||
|
mIOHandler->Close(pFile);
|
||||||
|
|
||||||
// Enlarging the textures table
|
// Enlarging the textures table
|
||||||
unsigned int textureId = pScene->mNumTextures++;
|
unsigned int textureId = pScene->mNumTextures++;
|
||||||
|
|
|
@ -48,6 +48,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
struct aiNode;
|
struct aiNode;
|
||||||
|
|
||||||
|
class IOSystem;
|
||||||
|
|
||||||
namespace Assimp {
|
namespace Assimp {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -80,6 +82,7 @@ private:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string mRootPath;
|
std::string mRootPath;
|
||||||
|
IOSystem* mIOHandler = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Assimp
|
} // namespace Assimp
|
||||||
|
|
|
@ -5,8 +5,6 @@ Open Asset Import Library (assimp)
|
||||||
|
|
||||||
Copyright (c) 2006-2021, assimp team
|
Copyright (c) 2006-2021, assimp team
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use of this software in source and binary forms,
|
Redistribution and use of this software in source and binary forms,
|
||||||
|
@ -397,22 +395,35 @@ struct aiScene
|
||||||
|
|
||||||
//! Returns an embedded texture
|
//! Returns an embedded texture
|
||||||
const aiTexture* GetEmbeddedTexture(const char* filename) const {
|
const aiTexture* GetEmbeddedTexture(const char* filename) const {
|
||||||
|
return GetEmbeddedTextureAndIndex(filename).first;
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Returns an embedded texture and its index
|
||||||
|
std::pair<const aiTexture*, int> GetEmbeddedTextureAndIndex(const char* filename) const {
|
||||||
|
if(nullptr==filename) {
|
||||||
|
return std::make_pair(nullptr, -1);
|
||||||
|
}
|
||||||
// lookup using texture ID (if referenced like: "*1", "*2", etc.)
|
// lookup using texture ID (if referenced like: "*1", "*2", etc.)
|
||||||
if ('*' == *filename) {
|
if ('*' == *filename) {
|
||||||
int index = std::atoi(filename + 1);
|
int index = std::atoi(filename + 1);
|
||||||
if (0 > index || mNumTextures <= static_cast<unsigned>(index))
|
if (0 > index || mNumTextures <= static_cast<unsigned>(index)) {
|
||||||
return nullptr;
|
return std::make_pair(nullptr, -1);
|
||||||
return mTextures[index];
|
}
|
||||||
|
return std::make_pair(mTextures[index], index);
|
||||||
}
|
}
|
||||||
// lookup using filename
|
// lookup using filename
|
||||||
const char* shortFilename = GetShortFilename(filename);
|
const char* shortFilename = GetShortFilename(filename);
|
||||||
|
if (nullptr == shortFilename) {
|
||||||
|
return std::make_pair(nullptr, -1);
|
||||||
|
}
|
||||||
|
|
||||||
for (unsigned int i = 0; i < mNumTextures; i++) {
|
for (unsigned int i = 0; i < mNumTextures; i++) {
|
||||||
const char* shortTextureFilename = GetShortFilename(mTextures[i]->mFilename.C_Str());
|
const char* shortTextureFilename = GetShortFilename(mTextures[i]->mFilename.C_Str());
|
||||||
if (strcmp(shortTextureFilename, shortFilename) == 0) {
|
if (strcmp(shortTextureFilename, shortFilename) == 0) {
|
||||||
return mTextures[i];
|
return std::make_pair(mTextures[i], i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nullptr;
|
return std::make_pair(nullptr, -1);
|
||||||
}
|
}
|
||||||
#endif // __cplusplus
|
#endif // __cplusplus
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue