2019-02-08 16:25:43 -06:00
|
|
|
/*
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
Open Asset Import Library (assimp)
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
Copyright (c) 2006-2026, assimp team
|
2019-02-08 16:25:43 -06: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.
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** @file PlyLoader.cpp
|
|
|
|
|
* @brief Implementation of the PLY importer class
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ASSIMP_BUILD_NO_PLY_IMPORTER
|
|
|
|
|
|
|
|
|
|
// internal headers
|
|
|
|
|
#include "PlyLoader.h"
|
2026-06-09 12:46:56 -05:00
|
|
|
|
|
|
|
|
// standard headers
|
2019-03-05 14:39:38 -06:00
|
|
|
#include <assimp/IOStreamBuffer.h>
|
2019-02-08 16:25:43 -06:00
|
|
|
#include <assimp/importerdesc.h>
|
2022-04-26 11:56:24 -05:00
|
|
|
#include <assimp/scene.h>
|
|
|
|
|
#include <assimp/IOSystem.hpp>
|
2026-06-09 12:46:56 -05:00
|
|
|
|
|
|
|
|
// other headers
|
2022-04-26 11:56:24 -05:00
|
|
|
#include <memory>
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2024-12-09 20:22:47 +00:00
|
|
|
namespace Assimp {
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2024-12-09 20:22:47 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2026-06-09 12:46:56 -05:00
|
|
|
static constexpr ai_uint NotSet = 0xFFFFFFFF;
|
|
|
|
|
|
|
|
|
|
static constexpr aiImporterDesc desc = {
|
|
|
|
|
"Stanford Polygon Library (PLY) Importer",
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
aiImporterFlags_SupportBinaryFlavour | aiImporterFlags_SupportTextFlavour,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
"ply"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
namespace { // Internal stuff
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Checks that property index is within range
|
|
|
|
|
template <class T>
|
|
|
|
|
const T &GetProperty(const std::vector<T> &props, int idx) {
|
|
|
|
|
if (static_cast<size_t>(idx) >= props.size()) {
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Property index is out of range.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return props[idx];
|
2024-12-09 20:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
bool isBigEndian(const char *szMe) {
|
|
|
|
|
ai_assert(nullptr != szMe);
|
2024-12-09 20:22:47 +00:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// binary_little_endian
|
|
|
|
|
// binary_big_endian
|
|
|
|
|
bool isBigEndian{ false };
|
|
|
|
|
#if (defined AI_BUILD_BIG_ENDIAN)
|
|
|
|
|
if ('l' == *szMe || 'L' == *szMe) {
|
|
|
|
|
isBigEndian = true;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
if ('b' == *szMe || 'B' == *szMe) {
|
|
|
|
|
isBigEndian = true;
|
|
|
|
|
}
|
|
|
|
|
#endif // ! AI_BUILD_BIG_ENDIAN
|
|
|
|
|
|
|
|
|
|
return isBigEndian;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Convert a color component to [0...1]
|
|
|
|
|
ai_real NormalizeColorValue(PropertyInstance::ValueUnion val, EDataType eType) {
|
|
|
|
|
switch (eType) {
|
|
|
|
|
case EDT_Float:
|
|
|
|
|
return val.fFloat;
|
|
|
|
|
case EDT_Double:
|
|
|
|
|
return static_cast<ai_real>(val.fDouble);
|
|
|
|
|
case EDT_UChar:
|
|
|
|
|
return static_cast<ai_real>(val.iUInt) / static_cast<ai_real>(0xFF);
|
|
|
|
|
case EDT_Char:
|
|
|
|
|
return static_cast<ai_real>(val.iInt + (0xFF / 2)) / static_cast<ai_real>(0xFF);
|
|
|
|
|
case EDT_UShort:
|
|
|
|
|
return static_cast<ai_real>(val.iUInt) / static_cast<ai_real>(0xFFFF);
|
|
|
|
|
case EDT_Short:
|
|
|
|
|
return static_cast<ai_real>(val.iInt + (0xFFFF / 2)) / static_cast<ai_real>(0xFFFF);
|
|
|
|
|
case EDT_UInt:
|
|
|
|
|
return static_cast<ai_real>(val.iUInt) / static_cast<ai_real>(0xFFFF);
|
|
|
|
|
case EDT_Int:
|
|
|
|
|
return (static_cast<ai_real>(val.iInt) / static_cast<ai_real>(0xFF)) + 0.5f;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0.0f;
|
2024-12-09 20:22:47 +00:00
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Get a RGBA color in [0...1] range
|
|
|
|
|
void GetMaterialColor(const std::vector<PLY::PropertyInstance> &avList, unsigned int positions[4], EDataType types[4],
|
|
|
|
|
aiColor4D *clrOut) {
|
|
|
|
|
ai_assert(nullptr != clrOut);
|
|
|
|
|
|
|
|
|
|
if (NotSet == positions[0]) {
|
|
|
|
|
clrOut->r = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
clrOut->r = NormalizeColorValue(GetProperty(avList, positions[0]).avList.front(), types[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NotSet == positions[1]) {
|
|
|
|
|
clrOut->g = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
clrOut->g = NormalizeColorValue(GetProperty(avList, positions[1]).avList.front(), types[1]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NotSet == positions[2]) {
|
|
|
|
|
clrOut->b = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
clrOut->b = NormalizeColorValue(GetProperty(avList, positions[2]).avList.front(), types[2]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// assume 1.0 for the alpha channel ifit is not set
|
|
|
|
|
if (NotSet == positions[3]) {
|
|
|
|
|
clrOut->a = 1.0f;
|
|
|
|
|
} else {
|
|
|
|
|
clrOut->a = NormalizeColorValue(GetProperty(avList, positions[3]).avList.front(), types[3]);
|
|
|
|
|
}
|
2024-12-09 20:22:47 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
PLYImporter::~PLYImporter() {
|
|
|
|
|
delete mGeneratedMesh;
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Returns whether the class can handle the format of the given file.
|
|
|
|
|
bool PLYImporter::CanRead(const std::string &pFile, IOSystem *pIOHandler, bool) const {
|
|
|
|
|
static const char *tokens[] = { "ply" };
|
|
|
|
|
return SearchFileHeaderForToken(pIOHandler, pFile, tokens, AI_COUNT_OF(tokens));
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2019-02-28 16:37:15 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
const aiImporterDesc *PLYImporter::GetInfo() const {
|
|
|
|
|
return &desc;
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Imports the given file into the given scene structure.
|
|
|
|
|
void PLYImporter::InternReadFile(const std::string &pFile, aiScene *pScene, IOSystem *pIOHandler) {
|
|
|
|
|
const std::string mode = "rb";
|
|
|
|
|
std::unique_ptr<IOStream> fileStream(pIOHandler->Open(pFile, mode));
|
|
|
|
|
if (!fileStream) {
|
|
|
|
|
throw DeadlyImportError("Failed to open file ", pFile, ".");
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Get the file-size
|
|
|
|
|
const size_t fileSize = fileStream->FileSize();
|
|
|
|
|
if (0 == fileSize) {
|
|
|
|
|
throw DeadlyImportError("File ", pFile, " is empty.");
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
IOStreamBuffer<char> streamedBuffer(1024 * 1024);
|
|
|
|
|
streamedBuffer.open(fileStream.get());
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// the beginning of the file must be PLY - magic, magic
|
|
|
|
|
std::vector<char> headerCheck;
|
|
|
|
|
streamedBuffer.getNextLine(headerCheck);
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if ((headerCheck.size() < 3) ||
|
|
|
|
|
(headerCheck[0] != 'P' && headerCheck[0] != 'p') ||
|
|
|
|
|
(headerCheck[1] != 'L' && headerCheck[1] != 'l') ||
|
|
|
|
|
(headerCheck[2] != 'Y' && headerCheck[2] != 'y')) {
|
|
|
|
|
streamedBuffer.close();
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Incorrect magic number (expected 'ply' or 'PLY').");
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
std::vector<char> mBuffer2;
|
|
|
|
|
streamedBuffer.getNextLine(mBuffer2);
|
|
|
|
|
mBuffer = (unsigned char *)&mBuffer2[0];
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
auto szMe = (char *)&this->mBuffer[0];
|
|
|
|
|
const char *end = &mBuffer2[0] + mBuffer2.size();
|
|
|
|
|
SkipSpacesAndLineEnd(szMe, (const char **)&szMe, end);
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// determine the format of the file data and construct the aiMesh
|
|
|
|
|
DOM sPlyDom;
|
|
|
|
|
this->pcDOM = &sPlyDom;
|
|
|
|
|
|
|
|
|
|
if (TokenMatch(szMe, "format", 6)) {
|
|
|
|
|
if (TokenMatch(szMe, "ascii", 5)) {
|
|
|
|
|
SkipLine(szMe, (const char **)&szMe, end);
|
|
|
|
|
if (!DOM::ParseInstance(streamedBuffer, &sPlyDom, this)) {
|
|
|
|
|
if (mGeneratedMesh != nullptr) {
|
|
|
|
|
delete (mGeneratedMesh);
|
|
|
|
|
mGeneratedMesh = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
streamedBuffer.close();
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Unable to build DOM (#1)");
|
|
|
|
|
}
|
|
|
|
|
} else if (!strncmp(szMe, "binary_", 7)) {
|
|
|
|
|
szMe += 7;
|
|
|
|
|
|
|
|
|
|
// skip the line, parse the rest of the header and build the DOM
|
|
|
|
|
if (const bool bIsBE = isBigEndian(szMe); !PLY::DOM::ParseInstanceBinary(streamedBuffer, &sPlyDom, this, bIsBE)) {
|
|
|
|
|
if (mGeneratedMesh != nullptr) {
|
|
|
|
|
delete (mGeneratedMesh);
|
|
|
|
|
mGeneratedMesh = nullptr;
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
streamedBuffer.close();
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Unable to build DOM (#2)");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-03-05 14:39:38 -06:00
|
|
|
if (mGeneratedMesh != nullptr) {
|
2026-06-09 12:46:56 -05:00
|
|
|
delete mGeneratedMesh;
|
2019-03-05 14:39:38 -06:00
|
|
|
mGeneratedMesh = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
streamedBuffer.close();
|
2026-06-09 12:46:56 -05:00
|
|
|
throw DeadlyImportError("Invalid .ply file: Unknown file format");
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
|
|
|
|
} else {
|
2026-06-09 12:46:56 -05:00
|
|
|
AI_DEBUG_INVALIDATE_PTR(this->mBuffer);
|
2019-03-05 14:39:38 -06:00
|
|
|
if (mGeneratedMesh != nullptr) {
|
2022-04-26 11:56:24 -05:00
|
|
|
delete (mGeneratedMesh);
|
2019-03-05 14:39:38 -06:00
|
|
|
mGeneratedMesh = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
streamedBuffer.close();
|
2026-06-09 12:46:56 -05:00
|
|
|
throw DeadlyImportError("Invalid .ply file: Missing format specification");
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// free the file buffer
|
2019-02-08 16:25:43 -06:00
|
|
|
streamedBuffer.close();
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (mGeneratedMesh == nullptr) {
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Unable to extract mesh data ");
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// if no face list is existing we assume that the vertex
|
|
|
|
|
// list is containing a list of points
|
|
|
|
|
bool pointsOnly = mGeneratedMesh->mFaces == nullptr ? true : false;
|
|
|
|
|
if (pointsOnly) {
|
|
|
|
|
mGeneratedMesh->mPrimitiveTypes = aiPrimitiveType::aiPrimitiveType_POINT;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// now load a list of all materials
|
|
|
|
|
std::vector<aiMaterial *> avMaterials;
|
|
|
|
|
std::string defaultTexture;
|
|
|
|
|
LoadMaterial(&avMaterials, defaultTexture, pointsOnly);
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// now generate the output scene object. Fill the material list
|
|
|
|
|
pScene->mNumMaterials = static_cast<unsigned int>(avMaterials.size());
|
|
|
|
|
pScene->mMaterials = new aiMaterial *[pScene->mNumMaterials];
|
|
|
|
|
for (unsigned int i = 0; i < pScene->mNumMaterials; ++i) {
|
|
|
|
|
pScene->mMaterials[i] = avMaterials[i];
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// fill the mesh list
|
|
|
|
|
pScene->mNumMeshes = 1;
|
|
|
|
|
pScene->mMeshes = new aiMesh *[pScene->mNumMeshes];
|
|
|
|
|
pScene->mMeshes[0] = mGeneratedMesh;
|
2024-12-09 20:22:47 +00:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Move the mesh ownership into the scene instance
|
|
|
|
|
mGeneratedMesh = nullptr;
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// generate a simple node structure
|
|
|
|
|
pScene->mRootNode = new aiNode();
|
|
|
|
|
pScene->mRootNode->mNumMeshes = pScene->mNumMeshes;
|
|
|
|
|
pScene->mRootNode->mMeshes = new unsigned int[pScene->mNumMeshes];
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
for (unsigned int i = 0; i < pScene->mRootNode->mNumMeshes; ++i) {
|
|
|
|
|
pScene->mRootNode->mMeshes[i] = i;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
2024-12-09 20:22:47 +00:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
void PLYImporter::LoadVertex(const Element *pcElement, const ElementInstance *instElement, unsigned int pos) {
|
|
|
|
|
ai_assert(nullptr != pcElement);
|
|
|
|
|
ai_assert(nullptr != instElement);
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
ai_uint aiPositions[3] = { NotSet, NotSet, NotSet };
|
|
|
|
|
EDataType aiTypes[3] = { EDT_Char, EDT_Char, EDT_Char };
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
ai_uint aiNormal[3] = { NotSet, NotSet, NotSet };
|
|
|
|
|
EDataType aiNormalTypes[3] = { EDT_Char, EDT_Char, EDT_Char };
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
unsigned int aiColors[4] = { NotSet, NotSet, NotSet, NotSet };
|
|
|
|
|
EDataType aiColorsTypes[4] = { EDT_Char, EDT_Char, EDT_Char, EDT_Char };
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
unsigned int aiTexcoord[2] = { NotSet, NotSet };
|
|
|
|
|
EDataType aiTexcoordTypes[2] = { EDT_Char, EDT_Char };
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// now check whether which normal components are available
|
|
|
|
|
unsigned int _a(0), cnt(0);
|
|
|
|
|
for (auto a = pcElement->alProperties.begin(); a != pcElement->alProperties.end(); ++a, ++_a) {
|
|
|
|
|
if (a->bIsList) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Positions
|
|
|
|
|
if (EST_XCoord == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiPositions[0] = _a;
|
|
|
|
|
aiTypes[0] = a->eType;
|
|
|
|
|
} else if (EST_YCoord == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiPositions[1] = _a;
|
|
|
|
|
aiTypes[1] = a->eType;
|
|
|
|
|
} else if (EST_ZCoord == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiPositions[2] = _a;
|
|
|
|
|
aiTypes[2] = a->eType;
|
|
|
|
|
} else if (EST_XNormal == a->Semantic) {
|
|
|
|
|
// Normals
|
|
|
|
|
++cnt;
|
|
|
|
|
aiNormal[0] = _a;
|
|
|
|
|
aiNormalTypes[0] = a->eType;
|
|
|
|
|
} else if (EST_YNormal == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiNormal[1] = _a;
|
|
|
|
|
aiNormalTypes[1] = a->eType;
|
|
|
|
|
} else if (EST_ZNormal == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiNormal[2] = _a;
|
|
|
|
|
aiNormalTypes[2] = a->eType;
|
|
|
|
|
} else if (EST_Red == a->Semantic) {
|
|
|
|
|
// Colors
|
|
|
|
|
++cnt;
|
|
|
|
|
aiColors[0] = _a;
|
|
|
|
|
aiColorsTypes[0] = a->eType;
|
|
|
|
|
} else if (EST_Green == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiColors[1] = _a;
|
|
|
|
|
aiColorsTypes[1] = a->eType;
|
|
|
|
|
} else if (EST_Blue == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiColors[2] = _a;
|
|
|
|
|
aiColorsTypes[2] = a->eType;
|
|
|
|
|
} else if (EST_Alpha == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiColors[3] = _a;
|
|
|
|
|
aiColorsTypes[3] = a->eType;
|
|
|
|
|
} else if (EST_UTextureCoord == a->Semantic) {
|
|
|
|
|
// Texture coordinates
|
|
|
|
|
++cnt;
|
|
|
|
|
aiTexcoord[0] = _a;
|
|
|
|
|
aiTexcoordTypes[0] = a->eType;
|
|
|
|
|
} else if (EST_VTextureCoord == a->Semantic) {
|
|
|
|
|
++cnt;
|
|
|
|
|
aiTexcoord[1] = _a;
|
|
|
|
|
aiTexcoordTypes[1] = a->eType;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// check whether we have a valid source for the vertex data
|
|
|
|
|
if (0 != cnt) {
|
|
|
|
|
// Position
|
|
|
|
|
aiVector3D vOut;
|
|
|
|
|
if (NotSet != aiPositions[0]) {
|
|
|
|
|
vOut.x = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiPositions[0]).avList.front(), aiTypes[0]);
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiPositions[1]) {
|
|
|
|
|
vOut.y = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiPositions[1]).avList.front(), aiTypes[1]);
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiPositions[2]) {
|
|
|
|
|
vOut.z = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiPositions[2]).avList.front(), aiTypes[2]);
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Normals
|
|
|
|
|
aiVector3D nOut;
|
|
|
|
|
bool haveNormal = false;
|
|
|
|
|
if (NotSet != aiNormal[0]) {
|
|
|
|
|
nOut.x = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiNormal[0]).avList.front(), aiNormalTypes[0]);
|
|
|
|
|
haveNormal = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiNormal[1]) {
|
|
|
|
|
nOut.y = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiNormal[1]).avList.front(), aiNormalTypes[1]);
|
|
|
|
|
haveNormal = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiNormal[2]) {
|
|
|
|
|
nOut.z = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiNormal[2]).avList.front(), aiNormalTypes[2]);
|
|
|
|
|
haveNormal = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Colors
|
|
|
|
|
aiColor4D cOut;
|
|
|
|
|
bool haveColor = false;
|
|
|
|
|
if (NotSet != aiColors[0]) {
|
|
|
|
|
cOut.r = NormalizeColorValue(GetProperty(instElement->alProperties,
|
|
|
|
|
aiColors[0])
|
|
|
|
|
.avList.front(),
|
|
|
|
|
aiColorsTypes[0]);
|
|
|
|
|
haveColor = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiColors[1]) {
|
|
|
|
|
cOut.g = NormalizeColorValue(GetProperty(instElement->alProperties,
|
|
|
|
|
aiColors[1])
|
|
|
|
|
.avList.front(),
|
|
|
|
|
aiColorsTypes[1]);
|
|
|
|
|
haveColor = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiColors[2]) {
|
|
|
|
|
cOut.b = NormalizeColorValue(GetProperty(instElement->alProperties,
|
|
|
|
|
aiColors[2])
|
|
|
|
|
.avList.front(),
|
|
|
|
|
aiColorsTypes[2]);
|
|
|
|
|
haveColor = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// assume 1.0 for the alpha channel if it is not set
|
|
|
|
|
if (NotSet == aiColors[3]) {
|
|
|
|
|
cOut.a = 1.0;
|
|
|
|
|
} else {
|
|
|
|
|
cOut.a = NormalizeColorValue(GetProperty(instElement->alProperties,
|
|
|
|
|
aiColors[3])
|
|
|
|
|
.avList.front(),
|
|
|
|
|
aiColorsTypes[3]);
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
haveColor = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// Texture coordinates
|
|
|
|
|
aiVector3D tOut;
|
|
|
|
|
tOut.z = 0;
|
|
|
|
|
bool haveTextureCoords = false;
|
|
|
|
|
if (NotSet != aiTexcoord[0]) {
|
|
|
|
|
tOut.x = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiTexcoord[0]).avList.front(), aiTexcoordTypes[0]);
|
|
|
|
|
haveTextureCoords = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != aiTexcoord[1]) {
|
|
|
|
|
tOut.y = PropertyInstance::ConvertTo<ai_real>(
|
|
|
|
|
GetProperty(instElement->alProperties, aiTexcoord[1]).avList.front(), aiTexcoordTypes[1]);
|
|
|
|
|
haveTextureCoords = true;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// create aiMesh if needed
|
|
|
|
|
if (nullptr == mGeneratedMesh) {
|
|
|
|
|
mGeneratedMesh = new aiMesh();
|
|
|
|
|
mGeneratedMesh->mMaterialIndex = 0;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (nullptr == mGeneratedMesh->mVertices) {
|
|
|
|
|
mGeneratedMesh->mNumVertices = pcElement->NumOccur;
|
|
|
|
|
mGeneratedMesh->mVertices = new aiVector3D[mGeneratedMesh->mNumVertices];
|
|
|
|
|
}
|
|
|
|
|
if (pos >= mGeneratedMesh->mNumVertices) {
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Too many vertices");
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
mGeneratedMesh->mVertices[pos] = vOut;
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (haveNormal) {
|
|
|
|
|
if (nullptr == mGeneratedMesh->mNormals)
|
|
|
|
|
mGeneratedMesh->mNormals = new aiVector3D[mGeneratedMesh->mNumVertices];
|
|
|
|
|
mGeneratedMesh->mNormals[pos] = nOut;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (haveColor) {
|
|
|
|
|
if (nullptr == mGeneratedMesh->mColors[0])
|
|
|
|
|
mGeneratedMesh->mColors[0] = new aiColor4D[mGeneratedMesh->mNumVertices];
|
|
|
|
|
mGeneratedMesh->mColors[0][pos] = cOut;
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (haveTextureCoords) {
|
|
|
|
|
if (nullptr == mGeneratedMesh->mTextureCoords[0]) {
|
|
|
|
|
mGeneratedMesh->mNumUVComponents[0] = 2;
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0] = new aiVector3D[mGeneratedMesh->mNumVertices];
|
|
|
|
|
}
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0][pos] = tOut;
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Try to extract proper faces from the PLY DOM
|
|
|
|
|
void PLYImporter::LoadFace(const Element *pcElement, const ElementInstance *instElement,
|
|
|
|
|
unsigned int pos) {
|
|
|
|
|
ai_assert(nullptr != pcElement);
|
|
|
|
|
ai_assert(nullptr != instElement);
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (mGeneratedMesh == nullptr) {
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Vertices should be declared before faces");
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
bool bOne = false;
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// index of the vertex index list
|
|
|
|
|
unsigned int iProperty = NotSet;
|
|
|
|
|
EDataType eType = EDT_Char;
|
|
|
|
|
bool bIsTriStrip = false;
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// texture coordinates
|
|
|
|
|
unsigned int iTextureCoord = NotSet;
|
|
|
|
|
EDataType eType3 = EDT_Char;
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// face = unique number of vertex indices
|
|
|
|
|
if (EEST_Face == pcElement->eSemantic) {
|
|
|
|
|
unsigned int _a = 0;
|
|
|
|
|
for (std::vector<Property>::const_iterator a = pcElement->alProperties.begin();
|
|
|
|
|
a != pcElement->alProperties.end(); ++a, ++_a) {
|
|
|
|
|
if (EST_VertexIndex == a->Semantic) {
|
|
|
|
|
// must be a dynamic list!
|
|
|
|
|
if (!a->bIsList) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
iProperty = _a;
|
|
|
|
|
bOne = true;
|
|
|
|
|
eType = a->eType;
|
|
|
|
|
} else if (EST_TextureCoordinates == a->Semantic) {
|
|
|
|
|
// must be a dynamic list!
|
|
|
|
|
if (!a->bIsList) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
iTextureCoord = _a;
|
|
|
|
|
bOne = true;
|
|
|
|
|
eType3 = a->eType;
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// triangle strip
|
|
|
|
|
// TODO: material index support???
|
|
|
|
|
else if (EEST_TriStrip == pcElement->eSemantic) {
|
|
|
|
|
unsigned int _a = 0;
|
|
|
|
|
for (auto a = pcElement->alProperties.begin(); a != pcElement->alProperties.end(); ++a, ++_a) {
|
2019-03-05 14:39:38 -06:00
|
|
|
// must be a dynamic list!
|
2026-06-09 12:46:56 -05:00
|
|
|
if (!a->bIsList) {
|
2019-03-05 14:39:38 -06:00
|
|
|
continue;
|
|
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
iProperty = _a;
|
2019-03-05 14:39:38 -06:00
|
|
|
bOne = true;
|
2026-06-09 12:46:56 -05:00
|
|
|
bIsTriStrip = true;
|
|
|
|
|
eType = a->eType;
|
|
|
|
|
break;
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
|
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// check whether we have at least one per-face information set
|
|
|
|
|
if (bOne) {
|
|
|
|
|
if (mGeneratedMesh->mFaces == nullptr) {
|
|
|
|
|
mGeneratedMesh->mNumFaces = pcElement->NumOccur;
|
|
|
|
|
mGeneratedMesh->mFaces = new aiFace[mGeneratedMesh->mNumFaces];
|
|
|
|
|
} else {
|
|
|
|
|
if (mGeneratedMesh->mNumFaces < pcElement->NumOccur) {
|
|
|
|
|
throw DeadlyImportError("Invalid .ply file: Too many faces");
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
2019-02-28 16:37:15 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (!bIsTriStrip) {
|
|
|
|
|
// parse the list of vertex indices
|
|
|
|
|
if (NotSet != iProperty) {
|
|
|
|
|
const unsigned int iNum = static_cast<unsigned int>(GetProperty(instElement->alProperties, iProperty).avList.size());
|
|
|
|
|
mGeneratedMesh->mFaces[pos].mNumIndices = iNum;
|
|
|
|
|
mGeneratedMesh->mFaces[pos].mIndices = new unsigned int[iNum];
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
std::vector<PropertyInstance::ValueUnion>::const_iterator p =
|
|
|
|
|
GetProperty(instElement->alProperties, iProperty).avList.begin();
|
2019-03-05 14:39:38 -06:00
|
|
|
|
|
|
|
|
for (unsigned int a = 0; a < iNum; ++a, ++p) {
|
2026-06-09 12:46:56 -05:00
|
|
|
mGeneratedMesh->mFaces[pos].mIndices[a] = PropertyInstance::ConvertTo<unsigned int>(*p, eType);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-05 14:39:38 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (NotSet != iTextureCoord) {
|
|
|
|
|
const auto iNum = static_cast<unsigned int>(GetProperty(instElement->alProperties, iTextureCoord).avList.size());
|
|
|
|
|
|
|
|
|
|
// should be 6 coords
|
|
|
|
|
auto p = GetProperty(instElement->alProperties, iTextureCoord).avList.begin();
|
|
|
|
|
if ((iNum / 3) == 2) { // X Y coord
|
|
|
|
|
for (unsigned int a = 0; a < iNum; ++a, ++p) {
|
|
|
|
|
unsigned int vindex = mGeneratedMesh->mFaces[pos].mIndices[a / 2];
|
|
|
|
|
if (vindex < mGeneratedMesh->mNumVertices) {
|
|
|
|
|
if (mGeneratedMesh->mTextureCoords[0] == nullptr) {
|
|
|
|
|
mGeneratedMesh->mNumUVComponents[0] = 2;
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0] = new aiVector3D[mGeneratedMesh->mNumVertices];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (a % 2 == 0) {
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0][vindex].x = PLY::PropertyInstance::ConvertTo<ai_real>(*p, eType3);
|
|
|
|
|
} else {
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0][vindex].y = PLY::PropertyInstance::ConvertTo<ai_real>(*p, eType3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mGeneratedMesh->mTextureCoords[0][vindex].z = 0;
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
} else { // triangle strips
|
|
|
|
|
// normally we have only one triangle strip instance where
|
|
|
|
|
// a value of -1 indicates a restart of the strip
|
|
|
|
|
createFromeTriStrip(instElement, iProperty, eType);
|
2019-03-05 14:39:38 -06:00
|
|
|
}
|
2019-02-28 16:37:15 -06:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
void PLYImporter::createFromeTriStrip(const ElementInstance *instElement, unsigned int iProperty, EDataType eType) {
|
|
|
|
|
bool flip = false;
|
|
|
|
|
const auto &quak = GetProperty(instElement->alProperties, iProperty).avList;
|
|
|
|
|
|
|
|
|
|
std::vector<aiFace> cache;
|
|
|
|
|
int aiTable[2] = { -1, -1 };
|
|
|
|
|
for (auto a = quak.begin(); a != quak.end(); ++a) {
|
|
|
|
|
const int p = PropertyInstance::ConvertTo<int>(*a, eType);
|
|
|
|
|
|
|
|
|
|
if (-1 == p) {
|
|
|
|
|
// restart the strip ...
|
|
|
|
|
aiTable[0] = aiTable[1] = -1;
|
|
|
|
|
flip = false;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (-1 == aiTable[0]) {
|
|
|
|
|
aiTable[0] = p;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (-1 == aiTable[1]) {
|
|
|
|
|
aiTable[1] = p;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
aiFace face;
|
|
|
|
|
face.mNumIndices = 3;
|
|
|
|
|
face.mIndices = new unsigned int[3];
|
|
|
|
|
face.mIndices[0] = aiTable[0];
|
|
|
|
|
face.mIndices[1] = aiTable[1];
|
|
|
|
|
face.mIndices[2] = p;
|
|
|
|
|
if (flip) {
|
|
|
|
|
std::swap(face.mIndices[0], face.mIndices[1]);
|
|
|
|
|
}
|
|
|
|
|
cache.push_back(face);
|
|
|
|
|
// every second pass swap the indices.
|
|
|
|
|
flip = !flip;
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
aiTable[0] = aiTable[1];
|
|
|
|
|
aiTable[1] = p;
|
|
|
|
|
}
|
|
|
|
|
if (mGeneratedMesh->mFaces != nullptr) {
|
|
|
|
|
delete[] mGeneratedMesh->mFaces;
|
|
|
|
|
}
|
|
|
|
|
mGeneratedMesh->mNumFaces = static_cast<unsigned int>(cache.size());
|
|
|
|
|
mGeneratedMesh->mFaces = new aiFace[mGeneratedMesh->mNumFaces];
|
|
|
|
|
std::copy(cache.begin(), cache.end(), mGeneratedMesh->mFaces);
|
2022-04-26 11:56:24 -05:00
|
|
|
}
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
// Extract a material from the PLY DOM
|
|
|
|
|
void PLYImporter::LoadMaterial(std::vector<aiMaterial *> *pvOut, std::string &defaultTexture, const bool pointsOnly) {
|
|
|
|
|
ai_assert(nullptr != pvOut);
|
|
|
|
|
|
|
|
|
|
// diffuse[4], specular[4], ambient[4]
|
|
|
|
|
// rgba order
|
|
|
|
|
unsigned int aaiPositions[3][4] = {
|
|
|
|
|
{ 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF },
|
|
|
|
|
{ 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF },
|
|
|
|
|
{ 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
EDataType aaiTypes[3][4] = {
|
|
|
|
|
{ EDT_Char, EDT_Char, EDT_Char, EDT_Char },
|
|
|
|
|
{ EDT_Char, EDT_Char, EDT_Char, EDT_Char },
|
|
|
|
|
{ EDT_Char, EDT_Char, EDT_Char, EDT_Char }
|
|
|
|
|
};
|
|
|
|
|
ElementInstanceList *pcList = nullptr;
|
|
|
|
|
|
|
|
|
|
unsigned int iPhong = 0xFFFFFFFF;
|
|
|
|
|
EDataType ePhong = EDT_Char;
|
|
|
|
|
|
|
|
|
|
unsigned int iOpacity = 0xFFFFFFFF;
|
|
|
|
|
EDataType eOpacity = EDT_Char;
|
|
|
|
|
|
|
|
|
|
// search in the DOM for a vertex entry
|
|
|
|
|
unsigned int _i = 0;
|
|
|
|
|
for (std::vector<Element>::const_iterator i = this->pcDOM->alElements.begin();
|
|
|
|
|
i != this->pcDOM->alElements.end(); ++i, ++_i) {
|
|
|
|
|
if (EEST_Material == i->eSemantic) {
|
|
|
|
|
pcList = &this->pcDOM->alElementData[_i];
|
|
|
|
|
|
|
|
|
|
// now check whether which coordinate sets are available
|
|
|
|
|
unsigned int _a = 0;
|
|
|
|
|
for (std::vector<Property>::const_iterator a = i->alProperties.begin(); a != i->alProperties.end(); ++a, ++_a) {
|
|
|
|
|
if (a->bIsList) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// pohng specularity -----------------------------------
|
|
|
|
|
if (EST_PhongPower == (*a).Semantic) {
|
|
|
|
|
iPhong = _a;
|
|
|
|
|
ePhong = (*a).eType;
|
|
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// general opacity -----------------------------------
|
|
|
|
|
if (EST_Opacity == (*a).Semantic) {
|
|
|
|
|
iOpacity = _a;
|
|
|
|
|
eOpacity = (*a).eType;
|
|
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// diffuse color channels -----------------------------------
|
|
|
|
|
if (EST_DiffuseRed == (*a).Semantic) {
|
|
|
|
|
aaiPositions[0][0] = _a;
|
|
|
|
|
aaiTypes[0][0] = (*a).eType;
|
|
|
|
|
} else if (EST_DiffuseGreen == (*a).Semantic) {
|
|
|
|
|
aaiPositions[0][1] = _a;
|
|
|
|
|
aaiTypes[0][1] = (*a).eType;
|
|
|
|
|
} else if (EST_DiffuseBlue == (*a).Semantic) {
|
|
|
|
|
aaiPositions[0][2] = _a;
|
|
|
|
|
aaiTypes[0][2] = (*a).eType;
|
|
|
|
|
} else if (EST_DiffuseAlpha == (*a).Semantic) {
|
|
|
|
|
aaiPositions[0][3] = _a;
|
|
|
|
|
aaiTypes[0][3] = (*a).eType;
|
|
|
|
|
}
|
|
|
|
|
// specular color channels -----------------------------------
|
|
|
|
|
else if (EST_SpecularRed == (*a).Semantic) {
|
|
|
|
|
aaiPositions[1][0] = _a;
|
|
|
|
|
aaiTypes[1][0] = (*a).eType;
|
|
|
|
|
} else if (EST_SpecularGreen == (*a).Semantic) {
|
|
|
|
|
aaiPositions[1][1] = _a;
|
|
|
|
|
aaiTypes[1][1] = (*a).eType;
|
|
|
|
|
} else if (EST_SpecularBlue == (*a).Semantic) {
|
|
|
|
|
aaiPositions[1][2] = _a;
|
|
|
|
|
aaiTypes[1][2] = (*a).eType;
|
|
|
|
|
} else if (EST_SpecularAlpha == (*a).Semantic) {
|
|
|
|
|
aaiPositions[1][3] = _a;
|
|
|
|
|
aaiTypes[1][3] = (*a).eType;
|
|
|
|
|
}
|
|
|
|
|
// ambient color channels -----------------------------------
|
|
|
|
|
else if (EST_AmbientRed == (*a).Semantic) {
|
|
|
|
|
aaiPositions[2][0] = _a;
|
|
|
|
|
aaiTypes[2][0] = (*a).eType;
|
|
|
|
|
} else if (EST_AmbientGreen == (*a).Semantic) {
|
|
|
|
|
aaiPositions[2][1] = _a;
|
|
|
|
|
aaiTypes[2][1] = (*a).eType;
|
|
|
|
|
} else if (EST_AmbientBlue == (*a).Semantic) {
|
|
|
|
|
aaiPositions[2][2] = _a;
|
|
|
|
|
aaiTypes[2][2] = (*a).eType;
|
|
|
|
|
} else if (EST_AmbientAlpha == (*a).Semantic) {
|
|
|
|
|
aaiPositions[2][3] = _a;
|
|
|
|
|
aaiTypes[2][3] = (*a).eType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
} else if (EEST_TextureFile == i->eSemantic) {
|
|
|
|
|
defaultTexture = i->szName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// check whether we have a valid source for the material data
|
|
|
|
|
if (nullptr != pcList) {
|
|
|
|
|
for (std::vector<ElementInstance>::const_iterator i = pcList->alInstances.begin(); i != pcList->alInstances.end(); ++i) {
|
|
|
|
|
aiColor4D clrOut;
|
|
|
|
|
aiMaterial *pcHelper = new aiMaterial();
|
|
|
|
|
|
|
|
|
|
// build the diffuse material color
|
|
|
|
|
GetMaterialColor((*i).alProperties, aaiPositions[0], aaiTypes[0], &clrOut);
|
|
|
|
|
pcHelper->AddProperty<aiColor4D>(&clrOut, 1, AI_MATKEY_COLOR_DIFFUSE);
|
|
|
|
|
|
|
|
|
|
// build the specular material color
|
|
|
|
|
GetMaterialColor((*i).alProperties, aaiPositions[1], aaiTypes[1], &clrOut);
|
|
|
|
|
pcHelper->AddProperty<aiColor4D>(&clrOut, 1, AI_MATKEY_COLOR_SPECULAR);
|
|
|
|
|
|
|
|
|
|
// build the ambient material color
|
|
|
|
|
GetMaterialColor((*i).alProperties, aaiPositions[2], aaiTypes[2], &clrOut);
|
|
|
|
|
pcHelper->AddProperty<aiColor4D>(&clrOut, 1, AI_MATKEY_COLOR_AMBIENT);
|
|
|
|
|
|
|
|
|
|
// handle phong power and shading mode
|
|
|
|
|
int iMode = aiShadingMode_Gouraud;
|
|
|
|
|
if (0xFFFFFFFF != iPhong) {
|
|
|
|
|
ai_real fSpec = PropertyInstance::ConvertTo<ai_real>(GetProperty((*i).alProperties, iPhong).avList.front(), ePhong);
|
|
|
|
|
|
|
|
|
|
// if shininess is 0 (and the pow() calculation would therefore always
|
|
|
|
|
// become 1, not depending on the angle), use gouraud lighting
|
|
|
|
|
if (fSpec) {
|
|
|
|
|
// scale this with 15 ... hopefully this is correct
|
|
|
|
|
fSpec *= 15;
|
|
|
|
|
pcHelper->AddProperty<ai_real>(&fSpec, 1, AI_MATKEY_SHININESS);
|
|
|
|
|
|
|
|
|
|
iMode = static_cast<int>(aiShadingMode_Phong);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pcHelper->AddProperty<int>(&iMode, 1, AI_MATKEY_SHADING_MODEL);
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// handle opacity
|
|
|
|
|
if (0xFFFFFFFF != iOpacity) {
|
|
|
|
|
ai_real fOpacity = PropertyInstance::ConvertTo<ai_real>(GetProperty((*i).alProperties, iPhong).avList.front(), eOpacity);
|
|
|
|
|
pcHelper->AddProperty<ai_real>(&fOpacity, 1, AI_MATKEY_OPACITY);
|
|
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// The face order is absolutely undefined for PLY, so we have to
|
|
|
|
|
// use two-sided rendering to be sure it's ok.
|
|
|
|
|
const int two_sided = 1;
|
|
|
|
|
pcHelper->AddProperty(&two_sided, 1, AI_MATKEY_TWOSIDED);
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// default texture
|
|
|
|
|
if (!defaultTexture.empty()) {
|
|
|
|
|
const aiString name(defaultTexture.c_str());
|
|
|
|
|
pcHelper->AddProperty(&name, _AI_MATKEY_TEXTURE_BASE, aiTextureType_DIFFUSE, 0);
|
2022-04-26 11:56:24 -05:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
if (!pointsOnly) {
|
|
|
|
|
pcHelper->AddProperty(&two_sided, 1, AI_MATKEY_TWOSIDED);
|
2022-04-26 11:56:24 -05:00
|
|
|
}
|
2019-02-08 16:25:43 -06:00
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// set to wireframe, so when using this material info we can switch to points rendering
|
|
|
|
|
if (pointsOnly) {
|
|
|
|
|
constexpr int wireframe = 1;
|
|
|
|
|
pcHelper->AddProperty(&wireframe, 1, AI_MATKEY_ENABLE_WIREFRAME);
|
2022-04-26 11:56:24 -05:00
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
|
|
|
|
|
// add the newly created material instance to the list
|
|
|
|
|
pvOut->push_back(pcHelper);
|
2022-04-26 11:56:24 -05:00
|
|
|
}
|
2026-06-09 12:46:56 -05:00
|
|
|
} else {
|
|
|
|
|
// generate a default material
|
2022-04-26 11:56:24 -05:00
|
|
|
aiMaterial *pcHelper = new aiMaterial();
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// fill in a default material
|
|
|
|
|
int iMode = aiShadingMode_Gouraud;
|
2022-04-26 11:56:24 -05:00
|
|
|
pcHelper->AddProperty<int>(&iMode, 1, AI_MATKEY_SHADING_MODEL);
|
|
|
|
|
|
2026-06-09 12:46:56 -05:00
|
|
|
// generate white material most 3D engine just multiply ambient / diffuse color with actual ambient / light color
|
|
|
|
|
aiColor3D clr;
|
|
|
|
|
clr.b = clr.g = clr.r = 1.0f;
|
|
|
|
|
pcHelper->AddProperty<aiColor3D>(&clr, 1, AI_MATKEY_COLOR_DIFFUSE);
|
|
|
|
|
pcHelper->AddProperty<aiColor3D>(&clr, 1, AI_MATKEY_COLOR_SPECULAR);
|
|
|
|
|
|
|
|
|
|
clr.b = clr.g = clr.r = 1.0f;
|
|
|
|
|
pcHelper->AddProperty<aiColor3D>(&clr, 1, AI_MATKEY_COLOR_AMBIENT);
|
2022-04-26 11:56:24 -05:00
|
|
|
|
|
|
|
|
// The face order is absolutely undefined for PLY, so we have to
|
|
|
|
|
// use two-sided rendering to be sure it's ok.
|
2026-06-09 12:46:56 -05:00
|
|
|
if (!pointsOnly) {
|
|
|
|
|
const int two_sided = 1;
|
|
|
|
|
pcHelper->AddProperty(&two_sided, 1, AI_MATKEY_TWOSIDED);
|
|
|
|
|
}
|
2022-04-26 11:56:24 -05:00
|
|
|
|
2024-12-09 20:22:47 +00:00
|
|
|
// default texture
|
2022-04-26 11:56:24 -05:00
|
|
|
if (!defaultTexture.empty()) {
|
|
|
|
|
const aiString name(defaultTexture.c_str());
|
|
|
|
|
pcHelper->AddProperty(&name, _AI_MATKEY_TEXTURE_BASE, aiTextureType_DIFFUSE, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-09 20:22:47 +00:00
|
|
|
// set to wireframe, so when using this material info we can switch to points rendering
|
2022-04-26 11:56:24 -05:00
|
|
|
if (pointsOnly) {
|
2026-06-09 12:46:56 -05:00
|
|
|
constexpr int wireframe = 1;
|
2022-04-26 11:56:24 -05:00
|
|
|
pcHelper->AddProperty(&wireframe, 1, AI_MATKEY_ENABLE_WIREFRAME);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pvOut->push_back(pcHelper);
|
2019-02-08 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-09 20:22:47 +00:00
|
|
|
} // namespace Assimp
|
|
|
|
|
|
2019-02-08 16:25:43 -06:00
|
|
|
#endif // !! ASSIMP_BUILD_NO_PLY_IMPORTER
|