assimp/code/AssetLib/Obj/ObjFileImporter.cpp

736 lines
28 KiB
C++
Raw Normal View History

/*
---------------------------------------------------------------------------
Open Asset Import Library (assimp)
---------------------------------------------------------------------------
Copyright (c) 2006-2020, assimp team
2018-01-28 18:42:05 +00:00
All rights reserved.
2015-05-19 03:52:10 +00:00
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.
2015-05-19 03:52:10 +00:00
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
2015-05-19 03:52:10 +00:00
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2015-05-19 03:52:10 +00:00
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2015-05-19 03:52:10 +00:00
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.
---------------------------------------------------------------------------
*/
#ifndef ASSIMP_BUILD_NO_OBJ_IMPORTER
#include "ObjFileImporter.h"
#include "ObjFileData.h"
2020-03-15 09:21:08 +00:00
#include "ObjFileParser.h"
#include <assimp/DefaultIOSystem.h>
2020-03-15 09:21:08 +00:00
#include <assimp/IOStreamBuffer.h>
2015-07-09 23:21:10 +00:00
#include <assimp/ai_assert.h>
2017-02-22 16:20:26 +00:00
#include <assimp/importerdesc.h>
2020-03-15 09:21:08 +00:00
#include <assimp/scene.h>
#include <assimp/DefaultLogger.hpp>
#include <assimp/Importer.hpp>
#include <memory>
static const aiImporterDesc desc = {
"Wavefront Object Importer",
"",
"",
"surfaces not supported",
aiImporterFlags_SupportTextFlavour,
0,
0,
0,
0,
"obj"
};
static const unsigned int ObjMinSize = 16;
namespace Assimp {
using namespace std;
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Default constructor
2020-03-15 09:21:08 +00:00
ObjFileImporter::ObjFileImporter() :
m_Buffer(), m_pRootObject(nullptr), m_strAbsPath(std::string(1, DefaultIOSystem().getOsSeparator())) {}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Destructor.
2018-05-06 22:07:41 +00:00
ObjFileImporter::~ObjFileImporter() {
delete m_pRootObject;
2018-05-06 22:07:41 +00:00
m_pRootObject = nullptr;
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Returns true, if file is an obj file.
2020-03-15 09:21:08 +00:00
bool ObjFileImporter::CanRead(const std::string &pFile, IOSystem *pIOHandler, bool checkSig) const {
if (!checkSig) {
2018-05-06 22:07:41 +00:00
//Check File Extension
2020-03-15 09:21:08 +00:00
return SimpleExtensionCheck(pFile, "obj");
2018-05-06 22:07:41 +00:00
} else {
// Check file Header
static const char *pTokens[] = { "mtllib", "usemtl", "v ", "vt ", "vn ", "o ", "g ", "s ", "f " };
2020-03-15 09:21:08 +00:00
return BaseImporter::SearchFileHeaderForToken(pIOHandler, pFile, pTokens, 9, 200, false, true);
}
}
// ------------------------------------------------------------------------------------------------
2020-03-15 09:21:08 +00:00
const aiImporterDesc *ObjFileImporter::GetInfo() const {
return &desc;
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Obj-file import implementation
2020-03-15 09:21:08 +00:00
void ObjFileImporter::InternReadFile(const std::string &file, aiScene *pScene, IOSystem *pIOHandler) {
// Read file into memory
static const std::string mode = "rb";
2020-03-15 09:21:08 +00:00
std::unique_ptr<IOStream> fileStream(pIOHandler->Open(file, mode));
if (!fileStream.get()) {
throw DeadlyImportError("Failed to open file " + file + ".");
}
// Get the file-size and validate it, throwing an exception when fails
size_t fileSize = fileStream->FileSize();
2020-03-15 09:21:08 +00:00
if (fileSize < ObjMinSize) {
throw DeadlyImportError("OBJ-file is too small.");
}
IOStreamBuffer<char> streamedBuffer;
2020-03-15 09:21:08 +00:00
streamedBuffer.open(fileStream.get());
// Allocate buffer and read file into it
//TextFileToBuffer( fileStream.get(),m_Buffer);
// Get the model name
2020-03-15 09:21:08 +00:00
std::string modelName, folderName;
std::string::size_type pos = file.find_last_of("\\/");
if (pos != std::string::npos) {
modelName = file.substr(pos + 1, file.size() - pos - 1);
folderName = file.substr(0, pos);
if (!folderName.empty()) {
pIOHandler->PushDirectory(folderName);
}
} else {
modelName = file;
}
// parse the file into a temporary representation
2020-03-15 09:21:08 +00:00
ObjFileParser parser(streamedBuffer, modelName, pIOHandler, m_progress, file);
// And create the proper return structures out of it
CreateDataFromImport(parser.GetModel(), pScene);
streamedBuffer.close();
2015-05-19 03:52:10 +00:00
// Clean up allocated storage for the next import
m_Buffer.clear();
// Pop directory stack
2020-03-15 09:21:08 +00:00
if (pIOHandler->StackSize() > 0) {
pIOHandler->PopDirectory();
}
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Create the data from parsed obj-file
2020-03-15 09:21:08 +00:00
void ObjFileImporter::CreateDataFromImport(const ObjFile::Model *pModel, aiScene *pScene) {
if (0L == pModel) {
return;
}
2015-05-19 03:52:10 +00:00
// Create the root node of the scene
pScene->mRootNode = new aiNode;
2020-03-15 09:21:08 +00:00
if (!pModel->m_ModelName.empty()) {
// Set the name of the scene
pScene->mRootNode->mName.Set(pModel->m_ModelName);
2018-03-20 22:38:08 +00:00
} else {
// This is a fatal error, so break down the application
ai_assert(false);
2015-05-19 03:52:10 +00:00
}
if (!pModel->m_Objects.empty()) {
unsigned int meshCount = 0;
unsigned int childCount = 0;
for (auto object : pModel->m_Objects) {
2020-03-15 09:21:08 +00:00
if (object) {
++childCount;
meshCount += (unsigned int)object->m_Meshes.size();
}
}
// Allocate space for the child nodes on the root node
2020-03-15 09:21:08 +00:00
pScene->mRootNode->mChildren = new aiNode *[childCount];
// Create nodes for the whole scene
2020-03-15 09:21:08 +00:00
std::vector<aiMesh *> MeshArray;
MeshArray.reserve(meshCount);
for (size_t index = 0; index < pModel->m_Objects.size(); ++index) {
createNodes(pModel, pModel->m_Objects[index], pScene->mRootNode, pScene, MeshArray);
}
ai_assert(pScene->mRootNode->mNumChildren == childCount);
// Create mesh pointer buffer for this scene
if (pScene->mNumMeshes > 0) {
2020-03-15 09:21:08 +00:00
pScene->mMeshes = new aiMesh *[MeshArray.size()];
for (size_t index = 0; index < MeshArray.size(); ++index) {
pScene->mMeshes[index] = MeshArray[index];
}
}
// Create all materials
createMaterials(pModel, pScene);
2020-03-15 09:21:08 +00:00
} else {
if (pModel->m_Vertices.empty()) {
return;
}
2020-03-15 09:21:08 +00:00
std::unique_ptr<aiMesh> mesh(new aiMesh);
mesh->mPrimitiveTypes = aiPrimitiveType_POINT;
2018-10-06 14:30:38 +00:00
unsigned int n = (unsigned int)pModel->m_Vertices.size();
mesh->mNumVertices = n;
mesh->mVertices = new aiVector3D[n];
2020-03-15 09:21:08 +00:00
memcpy(mesh->mVertices, pModel->m_Vertices.data(), n * sizeof(aiVector3D));
2020-03-15 09:21:08 +00:00
if (!pModel->m_Normals.empty()) {
mesh->mNormals = new aiVector3D[n];
if (pModel->m_Normals.size() < n) {
throw DeadlyImportError("OBJ: vertex normal index out of range");
}
2020-03-15 09:21:08 +00:00
memcpy(mesh->mNormals, pModel->m_Normals.data(), n * sizeof(aiVector3D));
}
2020-03-15 09:21:08 +00:00
if (!pModel->m_VertexColors.empty()) {
mesh->mColors[0] = new aiColor4D[mesh->mNumVertices];
for (unsigned int i = 0; i < n; ++i) {
2020-03-15 09:21:08 +00:00
if (i < pModel->m_VertexColors.size()) {
const aiVector3D &color = pModel->m_VertexColors[i];
mesh->mColors[0][i] = aiColor4D(color.x, color.y, color.z, 1.0);
2020-03-15 09:21:08 +00:00
} else {
throw DeadlyImportError("OBJ: vertex color index out of range");
}
}
2018-08-14 23:27:56 +00:00
}
pScene->mRootNode->mNumMeshes = 1;
pScene->mRootNode->mMeshes = new unsigned int[1];
pScene->mRootNode->mMeshes[0] = 0;
2020-03-15 09:21:08 +00:00
pScene->mMeshes = new aiMesh *[1];
2018-08-14 23:27:56 +00:00
pScene->mNumMeshes = 1;
pScene->mMeshes[0] = mesh.release();
}
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Creates all nodes of the model
2020-03-15 09:21:08 +00:00
aiNode *ObjFileImporter::createNodes(const ObjFile::Model *pModel, const ObjFile::Object *pObject,
aiNode *pParent, aiScene *pScene,
std::vector<aiMesh *> &MeshArray) {
ai_assert(nullptr != pModel);
if (nullptr == pObject) {
return nullptr;
}
2015-05-19 03:52:10 +00:00
// Store older mesh size to be able to computes mesh offsets for new mesh instances
const size_t oldMeshSize = MeshArray.size();
aiNode *pNode = new aiNode;
pNode->mName = pObject->m_strObjName;
2015-05-19 03:52:10 +00:00
// If we have a parent node, store it
ai_assert(nullptr != pParent);
2020-03-15 09:21:08 +00:00
appendChildToParentNode(pParent, pNode);
2020-03-15 09:21:08 +00:00
for (size_t i = 0; i < pObject->m_Meshes.size(); ++i) {
unsigned int meshId = pObject->m_Meshes[i];
aiMesh *pMesh = createTopology(pModel, pObject, meshId);
if (pMesh) {
2017-12-19 17:38:38 +00:00
if (pMesh->mNumFaces > 0) {
2020-03-15 09:21:08 +00:00
MeshArray.push_back(pMesh);
2017-12-19 17:38:38 +00:00
} else {
delete pMesh;
}
}
}
// Create all nodes from the sub-objects stored in the current object
2020-03-15 09:21:08 +00:00
if (!pObject->m_SubObjects.empty()) {
size_t numChilds = pObject->m_SubObjects.size();
2020-03-15 09:21:08 +00:00
pNode->mNumChildren = static_cast<unsigned int>(numChilds);
pNode->mChildren = new aiNode *[numChilds];
pNode->mNumMeshes = 1;
2020-03-15 09:21:08 +00:00
pNode->mMeshes = new unsigned int[1];
}
// Set mesh instances into scene- and node-instances
2020-03-15 09:21:08 +00:00
const size_t meshSizeDiff = MeshArray.size() - oldMeshSize;
if (meshSizeDiff > 0) {
pNode->mMeshes = new unsigned int[meshSizeDiff];
pNode->mNumMeshes = static_cast<unsigned int>(meshSizeDiff);
size_t index = 0;
2020-03-15 09:21:08 +00:00
for (size_t i = oldMeshSize; i < MeshArray.size(); ++i) {
pNode->mMeshes[index] = pScene->mNumMeshes;
pScene->mNumMeshes++;
2018-03-20 22:38:08 +00:00
++index;
}
}
2015-05-19 03:52:10 +00:00
return pNode;
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Create topology data
2020-03-15 09:21:08 +00:00
aiMesh *ObjFileImporter::createTopology(const ObjFile::Model *pModel, const ObjFile::Object *pData, unsigned int meshIndex) {
// Checking preconditions
ai_assert(nullptr != pModel);
2015-05-19 03:52:10 +00:00
if (nullptr == pData) {
return nullptr;
}
// Create faces
2020-03-15 09:21:08 +00:00
ObjFile::Mesh *pObjMesh = pModel->m_Meshes[meshIndex];
if (!pObjMesh) {
return nullptr;
}
2020-03-15 09:21:08 +00:00
if (pObjMesh->m_Faces.empty()) {
return nullptr;
}
2017-12-19 16:24:03 +00:00
std::unique_ptr<aiMesh> pMesh(new aiMesh);
2020-03-15 09:21:08 +00:00
if (!pObjMesh->m_name.empty()) {
pMesh->mName.Set(pObjMesh->m_name);
}
2020-03-15 09:21:08 +00:00
for (size_t index = 0; index < pObjMesh->m_Faces.size(); index++) {
ObjFile::Face *const inp = pObjMesh->m_Faces[index];
ai_assert(nullptr != inp);
if (inp->m_PrimitiveType == aiPrimitiveType_LINE) {
pMesh->mNumFaces += static_cast<unsigned int>(inp->m_vertices.size() - 1);
pMesh->mPrimitiveTypes |= aiPrimitiveType_LINE;
} else if (inp->m_PrimitiveType == aiPrimitiveType_POINT) {
pMesh->mNumFaces += static_cast<unsigned int>(inp->m_vertices.size());
pMesh->mPrimitiveTypes |= aiPrimitiveType_POINT;
} else {
++pMesh->mNumFaces;
if (inp->m_vertices.size() > 3) {
pMesh->mPrimitiveTypes |= aiPrimitiveType_POLYGON;
} else {
pMesh->mPrimitiveTypes |= aiPrimitiveType_TRIANGLE;
}
}
}
2020-03-15 09:21:08 +00:00
unsigned int uiIdxCount(0u);
if (pMesh->mNumFaces > 0) {
pMesh->mFaces = new aiFace[pMesh->mNumFaces];
if (pObjMesh->m_uiMaterialIndex != ObjFile::Mesh::NoMaterial) {
pMesh->mMaterialIndex = pObjMesh->m_uiMaterialIndex;
}
2020-03-15 09:21:08 +00:00
unsigned int outIndex(0);
// Copy all data from all stored meshes
2020-03-15 09:21:08 +00:00
for (auto &face : pObjMesh->m_Faces) {
ObjFile::Face *const inp = face;
if (inp->m_PrimitiveType == aiPrimitiveType_LINE) {
2020-03-15 09:21:08 +00:00
for (size_t i = 0; i < inp->m_vertices.size() - 1; ++i) {
aiFace &f = pMesh->mFaces[outIndex++];
uiIdxCount += f.mNumIndices = 2;
f.mIndices = new unsigned int[2];
}
continue;
2020-03-15 09:21:08 +00:00
} else if (inp->m_PrimitiveType == aiPrimitiveType_POINT) {
for (size_t i = 0; i < inp->m_vertices.size(); ++i) {
aiFace &f = pMesh->mFaces[outIndex++];
uiIdxCount += f.mNumIndices = 1;
f.mIndices = new unsigned int[1];
}
continue;
}
2020-03-15 09:21:08 +00:00
aiFace *pFace = &pMesh->mFaces[outIndex++];
const unsigned int uiNumIndices = (unsigned int)face->m_vertices.size();
uiIdxCount += pFace->mNumIndices = (unsigned int)uiNumIndices;
if (pFace->mNumIndices > 0) {
2020-03-15 09:21:08 +00:00
pFace->mIndices = new unsigned int[uiNumIndices];
}
}
}
// Create mesh vertices
2017-12-19 16:24:03 +00:00
createVertexArray(pModel, pData, meshIndex, pMesh.get(), uiIdxCount);
2017-12-19 16:24:03 +00:00
return pMesh.release();
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Creates a vertex array
2020-03-15 09:21:08 +00:00
void ObjFileImporter::createVertexArray(const ObjFile::Model *pModel,
const ObjFile::Object *pCurrentObject,
unsigned int uiMeshIndex,
aiMesh *pMesh,
unsigned int numIndices) {
// Checking preconditions
ai_assert(nullptr != pCurrentObject);
2015-05-19 03:52:10 +00:00
// Break, if no faces are stored in object
2020-03-15 09:21:08 +00:00
if (pCurrentObject->m_Meshes.empty())
return;
// Get current mesh
2020-03-15 09:21:08 +00:00
ObjFile::Mesh *pObjMesh = pModel->m_Meshes[uiMeshIndex];
if (nullptr == pObjMesh || pObjMesh->m_uiNumIndices < 1) {
return;
}
// Copy vertices of this mesh instance
pMesh->mNumVertices = numIndices;
if (pMesh->mNumVertices == 0) {
2020-03-15 09:21:08 +00:00
throw DeadlyImportError("OBJ: no vertices");
} else if (pMesh->mNumVertices > AI_MAX_VERTICES) {
2020-03-15 09:21:08 +00:00
throw DeadlyImportError("OBJ: Too many vertices");
}
2020-03-15 09:21:08 +00:00
pMesh->mVertices = new aiVector3D[pMesh->mNumVertices];
2015-05-19 03:52:10 +00:00
// Allocate buffer for normal vectors
2020-03-15 09:21:08 +00:00
if (!pModel->m_Normals.empty() && pObjMesh->m_hasNormals)
pMesh->mNormals = new aiVector3D[pMesh->mNumVertices];
2015-05-19 03:52:10 +00:00
2016-06-28 00:08:22 +00:00
// Allocate buffer for vertex-color vectors
2020-03-15 09:21:08 +00:00
if (!pModel->m_VertexColors.empty())
pMesh->mColors[0] = new aiColor4D[pMesh->mNumVertices];
2016-06-28 00:08:22 +00:00
// Allocate buffer for texture coordinates
2020-03-15 09:21:08 +00:00
if (!pModel->m_TextureCoord.empty() && pObjMesh->m_uiUVCoordinates[0]) {
pMesh->mNumUVComponents[0] = pModel->m_TextureCoordDim;
pMesh->mTextureCoords[0] = new aiVector3D[pMesh->mNumVertices];
}
2015-05-19 03:52:10 +00:00
// Copy vertices, normals and textures into aiMesh instance
bool normalsok = true, uvok = true;
unsigned int newIndex = 0, outIndex = 0;
for (auto sourceFace : pObjMesh->m_Faces) {
// Copy all index arrays
2020-03-15 09:21:08 +00:00
for (size_t vertexIndex = 0, outVertexIndex = 0; vertexIndex < sourceFace->m_vertices.size(); vertexIndex++) {
const unsigned int vertex = sourceFace->m_vertices.at(vertexIndex);
if (vertex >= pModel->m_Vertices.size()) {
throw DeadlyImportError("OBJ: vertex index out of range");
}
2015-05-19 03:52:10 +00:00
2020-03-15 09:21:08 +00:00
if (pMesh->mNumVertices <= newIndex) {
throw DeadlyImportError("OBJ: bad vertex index");
}
2020-03-15 09:21:08 +00:00
pMesh->mVertices[newIndex] = pModel->m_Vertices[vertex];
2015-05-19 03:52:10 +00:00
// Copy all normals
2020-03-15 09:21:08 +00:00
if (normalsok && !pModel->m_Normals.empty() && vertexIndex < sourceFace->m_normals.size()) {
const unsigned int normal = sourceFace->m_normals.at(vertexIndex);
if (normal >= pModel->m_Normals.size()) {
normalsok = false;
2020-03-15 09:21:08 +00:00
} else {
pMesh->mNormals[newIndex] = pModel->m_Normals[normal];
}
}
2015-05-19 03:52:10 +00:00
2016-06-28 00:08:22 +00:00
// Copy all vertex colors
2020-03-15 09:21:08 +00:00
if (!pModel->m_VertexColors.empty()) {
const aiVector3D &color = pModel->m_VertexColors[vertex];
pMesh->mColors[0][newIndex] = aiColor4D(color.x, color.y, color.z, 1.0);
2016-06-28 00:08:22 +00:00
}
// Copy all texture coordinates
2020-03-15 09:21:08 +00:00
if (uvok && !pModel->m_TextureCoord.empty() && vertexIndex < sourceFace->m_texturCoords.size()) {
const unsigned int tex = sourceFace->m_texturCoords.at(vertexIndex);
2015-05-19 03:52:10 +00:00
2020-03-15 09:21:08 +00:00
if (tex >= pModel->m_TextureCoord.size()) {
uvok = false;
2020-03-15 09:21:08 +00:00
} else {
const aiVector3D &coord3d = pModel->m_TextureCoord[tex];
pMesh->mTextureCoords[0][newIndex] = aiVector3D(coord3d.x, coord3d.y, coord3d.z);
}
}
// Get destination face
2020-03-15 09:21:08 +00:00
aiFace *pDestFace = &pMesh->mFaces[outIndex];
2020-03-15 09:21:08 +00:00
const bool last = (vertexIndex == sourceFace->m_vertices.size() - 1);
if (sourceFace->m_PrimitiveType != aiPrimitiveType_LINE || !last) {
2020-03-15 09:21:08 +00:00
pDestFace->mIndices[outVertexIndex] = newIndex;
outVertexIndex++;
}
if (sourceFace->m_PrimitiveType == aiPrimitiveType_POINT) {
outIndex++;
outVertexIndex = 0;
} else if (sourceFace->m_PrimitiveType == aiPrimitiveType_LINE) {
outVertexIndex = 0;
2020-03-15 09:21:08 +00:00
if (!last)
outIndex++;
if (vertexIndex) {
2020-03-15 09:21:08 +00:00
if (!last) {
pMesh->mVertices[newIndex + 1] = pMesh->mVertices[newIndex];
if (!sourceFace->m_normals.empty() && !pModel->m_Normals.empty()) {
2020-03-15 09:21:08 +00:00
pMesh->mNormals[newIndex + 1] = pMesh->mNormals[newIndex];
}
2020-03-15 09:21:08 +00:00
if (!pModel->m_TextureCoord.empty()) {
for (size_t i = 0; i < pMesh->GetNumUVChannels(); i++) {
pMesh->mTextureCoords[i][newIndex + 1] = pMesh->mTextureCoords[i][newIndex];
}
}
++newIndex;
}
pDestFace[-1].mIndices[1] = newIndex;
}
2020-03-15 09:21:08 +00:00
} else if (last) {
outIndex++;
}
++newIndex;
}
2015-05-19 03:52:10 +00:00
}
2020-03-15 09:21:08 +00:00
if (!normalsok) {
delete[] pMesh->mNormals;
pMesh->mNormals = nullptr;
}
2020-03-15 09:21:08 +00:00
if (!uvok) {
delete[] pMesh->mTextureCoords[0];
pMesh->mTextureCoords[0] = nullptr;
}
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Counts all stored meshes
2020-03-15 09:21:08 +00:00
void ObjFileImporter::countObjects(const std::vector<ObjFile::Object *> &rObjects, int &iNumMeshes) {
iNumMeshes = 0;
2020-03-15 09:21:08 +00:00
if (rObjects.empty())
return;
2020-03-15 09:21:08 +00:00
iNumMeshes += static_cast<unsigned int>(rObjects.size());
for (auto object : rObjects) {
if (!object->m_SubObjects.empty()) {
countObjects(object->m_SubObjects, iNumMeshes);
}
}
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Add clamp mode property to material if necessary
2020-03-15 09:21:08 +00:00
void ObjFileImporter::addTextureMappingModeProperty(aiMaterial *mat, aiTextureType type, int clampMode, int index) {
if (nullptr == mat) {
return;
}
2020-03-15 09:21:08 +00:00
mat->AddProperty<int>(&clampMode, 1, AI_MATKEY_MAPPINGMODE_U(type, index));
mat->AddProperty<int>(&clampMode, 1, AI_MATKEY_MAPPINGMODE_V(type, index));
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Creates the material
2020-03-15 09:21:08 +00:00
void ObjFileImporter::createMaterials(const ObjFile::Model *pModel, aiScene *pScene) {
if (nullptr == pScene) {
return;
}
2020-03-15 09:21:08 +00:00
const unsigned int numMaterials = (unsigned int)pModel->m_MaterialLib.size();
pScene->mNumMaterials = 0;
2020-03-15 09:21:08 +00:00
if (pModel->m_MaterialLib.empty()) {
2018-04-26 12:10:18 +00:00
ASSIMP_LOG_DEBUG("OBJ: no materials specified");
return;
}
2015-05-19 03:52:10 +00:00
2020-03-15 09:21:08 +00:00
pScene->mMaterials = new aiMaterial *[numMaterials];
for (unsigned int matIndex = 0; matIndex < numMaterials; matIndex++) {
// Store material name
2020-03-15 09:21:08 +00:00
std::map<std::string, ObjFile::Material *>::const_iterator it;
it = pModel->m_MaterialMap.find(pModel->m_MaterialLib[matIndex]);
2015-05-19 03:52:10 +00:00
// No material found, use the default material
2020-03-15 09:21:08 +00:00
if (pModel->m_MaterialMap.end() == it)
continue;
2020-03-15 09:21:08 +00:00
aiMaterial *mat = new aiMaterial;
ObjFile::Material *pCurrentMaterial = (*it).second;
2020-03-15 09:21:08 +00:00
mat->AddProperty(&pCurrentMaterial->MaterialName, AI_MATKEY_NAME);
// convert illumination model
int sm = 0;
2020-03-15 09:21:08 +00:00
switch (pCurrentMaterial->illumination_model) {
case 0:
sm = aiShadingMode_NoShading;
break;
case 1:
sm = aiShadingMode_Gouraud;
break;
case 2:
sm = aiShadingMode_Phong;
break;
default:
sm = aiShadingMode_Gouraud;
ASSIMP_LOG_ERROR("OBJ: unexpected illumination model (0-2 recognized)");
}
2015-05-19 03:52:10 +00:00
2020-03-15 09:21:08 +00:00
mat->AddProperty<int>(&sm, 1, AI_MATKEY_SHADING_MODEL);
// Adding material colors
2020-03-15 09:21:08 +00:00
mat->AddProperty(&pCurrentMaterial->ambient, 1, AI_MATKEY_COLOR_AMBIENT);
mat->AddProperty(&pCurrentMaterial->diffuse, 1, AI_MATKEY_COLOR_DIFFUSE);
mat->AddProperty(&pCurrentMaterial->specular, 1, AI_MATKEY_COLOR_SPECULAR);
mat->AddProperty(&pCurrentMaterial->emissive, 1, AI_MATKEY_COLOR_EMISSIVE);
mat->AddProperty(&pCurrentMaterial->shineness, 1, AI_MATKEY_SHININESS);
mat->AddProperty(&pCurrentMaterial->alpha, 1, AI_MATKEY_OPACITY);
mat->AddProperty(&pCurrentMaterial->transparent, 1, AI_MATKEY_COLOR_TRANSPARENT);
// Adding refraction index
2020-03-15 09:21:08 +00:00
mat->AddProperty(&pCurrentMaterial->ior, 1, AI_MATKEY_REFRACTI);
// Adding textures
const int uvwIndex = 0;
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->texture.length) {
mat->AddProperty(&pCurrentMaterial->texture, AI_MATKEY_TEXTURE_DIFFUSE(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_DIFFUSE(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureDiffuseType]) {
addTextureMappingModeProperty(mat, aiTextureType_DIFFUSE);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureAmbient.length) {
mat->AddProperty(&pCurrentMaterial->textureAmbient, AI_MATKEY_TEXTURE_AMBIENT(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_AMBIENT(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureAmbientType]) {
addTextureMappingModeProperty(mat, aiTextureType_AMBIENT);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureEmissive.length) {
mat->AddProperty(&pCurrentMaterial->textureEmissive, AI_MATKEY_TEXTURE_EMISSIVE(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_EMISSIVE(0));
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureSpecular.length) {
mat->AddProperty(&pCurrentMaterial->textureSpecular, AI_MATKEY_TEXTURE_SPECULAR(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_SPECULAR(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureSpecularType]) {
addTextureMappingModeProperty(mat, aiTextureType_SPECULAR);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureBump.length) {
mat->AddProperty(&pCurrentMaterial->textureBump, AI_MATKEY_TEXTURE_HEIGHT(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_HEIGHT(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureBumpType]) {
addTextureMappingModeProperty(mat, aiTextureType_HEIGHT);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureNormal.length) {
mat->AddProperty(&pCurrentMaterial->textureNormal, AI_MATKEY_TEXTURE_NORMALS(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_NORMALS(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureNormalType]) {
addTextureMappingModeProperty(mat, aiTextureType_NORMALS);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureReflection[0].length) {
ObjFile::Material::TextureType type = 0 != pCurrentMaterial->textureReflection[1].length ?
2020-03-15 09:21:08 +00:00
ObjFile::Material::TextureReflectionCubeTopType :
ObjFile::Material::TextureReflectionSphereType;
unsigned count = type == ObjFile::Material::TextureReflectionSphereType ? 1 : 6;
2020-03-15 09:21:08 +00:00
for (unsigned i = 0; i < count; i++) {
mat->AddProperty(&pCurrentMaterial->textureReflection[i], AI_MATKEY_TEXTURE_REFLECTION(i));
2020-03-15 09:21:08 +00:00
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_REFLECTION(i));
2020-03-15 09:21:08 +00:00
if (pCurrentMaterial->clamp[type])
2016-12-09 18:31:07 +00:00
addTextureMappingModeProperty(mat, aiTextureType_REFLECTION, 1, i);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureDisp.length) {
mat->AddProperty(&pCurrentMaterial->textureDisp, AI_MATKEY_TEXTURE_DISPLACEMENT(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_DISPLACEMENT(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureDispType]) {
addTextureMappingModeProperty(mat, aiTextureType_DISPLACEMENT);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureOpacity.length) {
mat->AddProperty(&pCurrentMaterial->textureOpacity, AI_MATKEY_TEXTURE_OPACITY(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_OPACITY(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureOpacityType]) {
addTextureMappingModeProperty(mat, aiTextureType_OPACITY);
}
}
2020-03-15 09:21:08 +00:00
if (0 != pCurrentMaterial->textureSpecularity.length) {
mat->AddProperty(&pCurrentMaterial->textureSpecularity, AI_MATKEY_TEXTURE_SHININESS(0));
mat->AddProperty(&uvwIndex, 1, AI_MATKEY_UVWSRC_SHININESS(0));
if (pCurrentMaterial->clamp[ObjFile::Material::TextureSpecularityType]) {
addTextureMappingModeProperty(mat, aiTextureType_SHININESS);
}
}
2015-05-19 03:52:10 +00:00
// Store material property info in material array in scene
2020-03-15 09:21:08 +00:00
pScene->mMaterials[pScene->mNumMaterials] = mat;
pScene->mNumMaterials++;
}
2015-05-19 03:52:10 +00:00
// Test number of created materials.
2020-03-15 09:21:08 +00:00
ai_assert(pScene->mNumMaterials == numMaterials);
}
// ------------------------------------------------------------------------------------------------
2015-05-19 03:57:13 +00:00
// Appends this node to the parent node
2020-03-15 09:21:08 +00:00
void ObjFileImporter::appendChildToParentNode(aiNode *pParent, aiNode *pChild) {
// Checking preconditions
ai_assert(nullptr != pParent);
ai_assert(nullptr != pChild);
// Assign parent to child
pChild->mParent = pParent;
2015-05-19 03:52:10 +00:00
// Copy node instances into parent node
pParent->mNumChildren++;
2020-03-15 09:21:08 +00:00
pParent->mChildren[pParent->mNumChildren - 1] = pChild;
}
// ------------------------------------------------------------------------------------------------
2020-03-15 09:21:08 +00:00
} // Namespace Assimp
#endif // !! ASSIMP_BUILD_NO_OBJ_IMPORTER