| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350 |
- /*
- ---------------------------------------------------------------------------
- Open Asset Import Library (ASSIMP)
- ---------------------------------------------------------------------------
- Copyright (c) 2006-2008, ASSIMP Development Team
- 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 Development 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 Implementation of the 3ds importer class */
- // internal headers
- #include "3DSLoader.h"
- #include "MaterialSystem.h"
- #include "TextureTransform.h"
- #include "StringComparison.h"
- #include "qnan.h"
- // public ASSIMP headers
- #include "../include/DefaultLogger.h"
- #include "../include/IOStream.h"
- #include "../include/IOSystem.h"
- #include "../include/aiMesh.h"
- #include "../include/aiScene.h"
- #include "../include/aiAssert.h"
- // boost headers
- #include <boost/scoped_ptr.hpp>
- using namespace Assimp;
- #if (!defined ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG)
- # define ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG \
- "WARNING: Size of chunk data plus size of " \
- "subordinate chunks is larger than the size " \
- "specified in the top-level chunk header."
- #endif
- // ------------------------------------------------------------------------------------------------
- // Constructor to be privately used by Importer
- Dot3DSImporter::Dot3DSImporter()
- {
- }
- // ------------------------------------------------------------------------------------------------
- // Destructor, private as well
- Dot3DSImporter::~Dot3DSImporter()
- {
- }
- // ------------------------------------------------------------------------------------------------
- // Returns whether the class can handle the format of the given file.
- bool Dot3DSImporter::CanRead( const std::string& pFile, IOSystem* pIOHandler) const
- {
- // simple check of file extension is enough for the moment
- std::string::size_type pos = pFile.find_last_of('.');
- // no file extension - can't read
- if( pos == std::string::npos)
- return false;
- std::string extension = pFile.substr( pos);
- // not brilliant but working ;-)
- if( extension == ".3ds" || extension == ".3DS" ||
- extension == ".3Ds" || extension == ".3dS")
- return true;
- return false;
- }
- // ------------------------------------------------------------------------------------------------
- // Imports the given file into the given scene structure.
- void Dot3DSImporter::InternReadFile(
- const std::string& pFile, aiScene* pScene, IOSystem* pIOHandler)
- {
- boost::scoped_ptr<IOStream> file( pIOHandler->Open( pFile));
- // Check whether we can read from the file
- if( file.get() == NULL)
- {
- throw new ImportErrorException( "Failed to open file " + pFile + ".");
- }
- // check whether the .3ds file is large enough to contain
- // at least one chunk.
- size_t fileSize = file->FileSize();
- if( fileSize < 16)
- {
- throw new ImportErrorException( "3DS File is too small.");
- }
- this->mScene = new Dot3DS::Scene();
- // allocate storage and copy the contents of the file to a memory buffer
- this->mBuffer = new unsigned char[fileSize];
- file->Read( mBuffer, 1, fileSize);
- this->mCurrent = this->mBuffer;
- this->mLast = this->mBuffer+fileSize;
- // initialize members
- this->mLastNodeIndex = -1;
- this->mCurrentNode = new Dot3DS::Node();
- this->mRootNode = this->mCurrentNode;
- this->mRootNode->mHierarchyPos = -1;
- this->mRootNode->mHierarchyIndex = -1;
- this->mRootNode->mParent = NULL;
- this->mMasterScale = 1.0f;
- this->mBackgroundImage = "";
- this->bHasBG = false;
- int iRemaining = (unsigned int)fileSize;
- // parse the file
- try
- {
- this->ParseMainChunk(iRemaining);
- }
- catch ( ImportErrorException* ex)
- {
- delete[] this->mBuffer;
- throw ex;
- };
- // Generate an unique set of vertices/indices for
- // all meshes contained in the file
- for (std::vector<Dot3DS::Mesh>::iterator
- i = this->mScene->mMeshes.begin();
- i != this->mScene->mMeshes.end();++i)
- {
- // TODO: see function body
- this->CheckIndices(&(*i));
- this->MakeUnique(&(*i));
- // first generate normals for the mesh
- this->GenNormals(&(*i));
- }
- // Apply scaling and offsets to all texture coordinates
- TextureTransform::ApplyScaleNOffset(this->mScene->mMaterials);
- // Replace all occurences of the default material with a valid material.
- // Generate it if no material containing DEFAULT in its name has been
- // found in the file
- this->ReplaceDefaultMaterial();
-
- // Convert the scene from our internal representation to an aiScene object
- this->ConvertScene(pScene);
- // Generate the node graph for the scene. This is a little bit
- // tricky since we'll need to split some meshes into submeshes
- this->GenerateNodeGraph(pScene);
- // Now apply a master scaling factor to the scene
- this->ApplyMasterScale(pScene);
- delete[] this->mBuffer;
- delete this->mScene;
- return;
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ApplyMasterScale(aiScene* pScene)
- {
- // NOTE: Some invalid files have masterscale set to 0.0
- if (0.0f == this->mMasterScale)
- {
- this->mMasterScale = 1.0f;
- }
- else this->mMasterScale = 1.0f / this->mMasterScale;
- // construct an uniform scaling matrix and multiply with it
- pScene->mRootNode->mTransformation *= aiMatrix4x4(
- this->mMasterScale,0.0f, 0.0f, 0.0f,
- 0.0f, this->mMasterScale,0.0f, 0.0f,
- 0.0f, 0.0f, this->mMasterScale,0.0f,
- 0.0f, 0.0f, 0.0f, 1.0f);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ReadChunk(const Dot3DSFile::Chunk** p_ppcOut)
- {
- ai_assert(p_ppcOut != NULL);
- // read chunk
- if (this->mCurrent >= this->mLast)
- {
- throw new ImportErrorException("Unexpected end of file, can't read chunk header");
- }
- const uintptr_t iDiff = this->mLast - this->mCurrent;
- if (iDiff < sizeof(Dot3DSFile::Chunk))
- {
- *p_ppcOut = NULL;
- return;
- }
- *p_ppcOut = (const Dot3DSFile::Chunk*) this->mCurrent;
- if ((**p_ppcOut).Size + this->mCurrent > this->mLast)
- {
- throw new ImportErrorException("Unexpected end of file, can't read chunk footer");
- }
- this->mCurrent += sizeof(Dot3DSFile::Chunk);
- return;
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseMainChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- int iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_MAIN:
- //case 0x444d: // bugfix
- this->ParseEditorChunk(iRemaining);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseMainChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseEditorChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- int iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_OBJMESH:
- this->ParseObjectChunk(iRemaining);
- break;
- // NOTE: In several documentations in the internet this
- // chunk appears at different locations
- case Dot3DSFile::CHUNK_KEYFRAMER:
- this->ParseKeyframeChunk(iRemaining);
- break;
- case Dot3DSFile::CHUNK_VERSION:
- if (psChunk->Size >= 2+sizeof(Dot3DSFile::Chunk))
- {
- // print the version number
- char szBuffer[128];
- #if _MSC_VER >= 1400
- ::sprintf_s(szBuffer,"3DS file version chunk: %i",
- (int) *((uint16_t*)this->mCurrent));
- #else
- ::sprintf(szBuffer,"3DS file version chunk: %i",
- (int) *((uint16_t*)this->mCurrent));
- #endif
- DefaultLogger::get()->info(szBuffer);
- }
- else
- {
- DefaultLogger::get()->warn("Invalid version chunk in 3DS file");
- }
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseEditorChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseObjectChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- const unsigned char* sz = this->mCurrent;
- unsigned int iCnt = 0;
- // get chunk type
- int iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_OBJBLOCK:
- this->mScene->mMeshes.push_back(Dot3DS::Mesh());
- // at first we need to parse the name of the
- // geometry object
- while (*sz++ != '\0')
- {
- if (sz > pcCurNext-1)break;
- ++iCnt;
- }
- this->mScene->mMeshes.back().mName = std::string(
- (const char*)this->mCurrent,iCnt);
- ++iCnt;
- this->mCurrent += iCnt;
- iRemaining -= iCnt;
- this->ParseChunk(iRemaining);
- break;
- case Dot3DSFile::CHUNK_MAT_MATERIAL:
- this->mScene->mMaterials.push_back(Dot3DS::Material());
- this->ParseMaterialChunk(iRemaining);
- break;
- case Dot3DSFile::CHUNK_AMBCOLOR:
- // This is the ambient base color of the scene.
- // We add it to the ambient color of all materials
- this->ParseColorChunk(&this->mClrAmbient,true);
- if (is_qnan(this->mClrAmbient.r))
- {
- this->mClrAmbient.r = 0.0f;
- this->mClrAmbient.g = 0.0f;
- this->mClrAmbient.b = 0.0f;
- }
- break;
- case Dot3DSFile::CHUNK_BIT_MAP:
- this->mBackgroundImage = std::string((const char*)this->mCurrent);
- break;
- case Dot3DSFile::CHUNK_BIT_MAP_EXISTS:
- bHasBG = true;
- break;
- case Dot3DSFile::CHUNK_MASTER_SCALE:
- this->mMasterScale = *((float*)this->mCurrent);
- this->mCurrent += sizeof(float);
- break;
- // NOTE: In several documentations in the internet this
- // chunk appears at different locations
- case Dot3DSFile::CHUNK_KEYFRAMER:
- this->ParseKeyframeChunk(iRemaining);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseObjectChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::SkipChunk()
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- this->mCurrent += psChunk->Size - sizeof(Dot3DSFile::Chunk);
- return;
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- int iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_TRIMESH:
- // this starts a new mesh
- this->ParseMeshChunk(iRemaining);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseKeyframeChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- int iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_TRACKINFO:
- // this starts a new mesh
- this->ParseHierarchyChunk(iRemaining);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseKeyframeChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::InverseNodeSearch(Dot3DS::Node* pcNode,Dot3DS::Node* pcCurrent)
- {
- if (NULL == pcCurrent)
- {
- this->mRootNode->push_back(pcNode);
- return;
- }
- if (pcCurrent->mHierarchyPos == pcNode->mHierarchyPos)
- {
- if(NULL != pcCurrent->mParent)
- pcCurrent->mParent->push_back(pcNode);
- else pcCurrent->push_back(pcNode);
- return;
- }
- return this->InverseNodeSearch(pcNode,pcCurrent->mParent);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseHierarchyChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- const unsigned char* sz = (unsigned char*)this->mCurrent;
- unsigned int iCnt = 0;
- uint16_t iHierarchy;
- // uint16_t iTemp;
- Dot3DS::Node* pcNode;
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_TRACKOBJNAME:
-
- // get object name
- while (*sz++ != '\0')
- {
- if (sz > pcCurNext-1)break;
- ++iCnt;
- }
- pcNode = new Dot3DS::Node();
- pcNode->mName = std::string((const char*)this->mCurrent,iCnt);
- iCnt++;
- // there are two unknown values which we can safely ignore
- this->mCurrent += iCnt + sizeof(uint16_t)*2;
- iHierarchy = *((uint16_t*)this->mCurrent);
- iHierarchy++;
- pcNode->mHierarchyPos = iHierarchy;
- pcNode->mHierarchyIndex = this->mLastNodeIndex;
- if (this->mCurrentNode && this->mCurrentNode->mHierarchyPos == iHierarchy)
- {
- // add to the parent of the last touched node
- this->mCurrentNode->mParent->push_back(pcNode);
- this->mLastNodeIndex++;
- }
- else if(iHierarchy >= this->mLastNodeIndex)
- {
- // place it at the current position in the hierarchy
- this->mCurrentNode->push_back(pcNode);
- this->mLastNodeIndex = iHierarchy;
- }
- else
- {
- // need to go back to the specified position in the hierarchy.
- this->InverseNodeSearch(pcNode,this->mCurrentNode);
- this->mLastNodeIndex++;
- }
- this->mCurrentNode = pcNode;
- break;
- case Dot3DSFile::CHUNK_TRACKPIVOT:
- // pivot = origin of rotation and scaling
- this->mCurrentNode->vPivot = *((const aiVector3D*)this->mCurrent);
- this->mCurrent += sizeof(aiVector3D);
- break;
- #ifdef AI_3DS_KEYFRAME_ANIMATION
- case Dot3DSFile::CHUNK_TRACKPOS:
- /*
- +2 short flags;
- +8 short unknown[4];
- +2 short keys;
- +2 short unknown;
- struct {
- +2 short framenum;
- +4 long unknown;
- float pos_x, pos_y, pos_z;
- } pos[keys];
- */
- this->mCurrent += 10;
- iTemp = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t) * 2;
- for (unsigned int i = 0; i < (unsigned int)iTemp;++i)
- {
- uint16_t sNum = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t);
- aiVectorKey v;
- v.mTime = (double)sNum;
- this->mCurrent += sizeof(uint32_t);
- v.mValue = *((const aiVector3D*)this->mCurrent);
- this->mCurrent += sizeof(aiVector3D);
- // check whether we do already have this keyframe
- for (std::vector<aiVectorKey>::const_iterator
- i = this->mCurrentNode->aPositionKeys.begin();
- i != this->mCurrentNode->aPositionKeys.end();++i)
- {
- if ((*i).mTime == v.mTime){v.mTime = -10e10f;break;}
- }
- // add the new keyframe
- if (v.mTime != -10e10f)this->mCurrentNode->aPositionKeys.push_back(v);
- }
- break;
- case Dot3DSFile::CHUNK_TRACKROTATE:
- /*
- +2 short flags;
- +8 short unknown[4];
- +2 short keys;
- +2 short unknown;
- struct {
- +2 short framenum;
- +4 long unknown;
- float rad , pos_x, pos_y, pos_z;
- } pos[keys];
- */
- this->mCurrent += 10;
- iTemp = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t) * 2;
- for (unsigned int i = 0; i < (unsigned int)iTemp;++i)
- {
- uint16_t sNum = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t);
- aiQuatKey v;
- v.mTime = (double)sNum;
- this->mCurrent += sizeof(uint32_t);
- float fRadians = *((const float*)this->mCurrent);
- this->mCurrent += sizeof(float);
- aiVector3D vAxis = *((const aiVector3D*)this->mCurrent);
- this->mCurrent += sizeof(aiVector3D);
- // construct a rotation quaternion from the axis-angle pair
- v.mValue = aiQuaternion(vAxis,fRadians);
- // check whether we do already have this keyframe
- for (std::vector<aiQuatKey>::const_iterator
- i = this->mCurrentNode->aRotationKeys.begin();
- i != this->mCurrentNode->aRotationKeys.end();++i)
- {
- if ((*i).mTime == v.mTime){v.mTime = -10e10f;break;}
- }
- // add the new keyframe
- if (v.mTime != -10e10f)this->mCurrentNode->aRotationKeys.push_back(v);
- }
- break;
- case Dot3DSFile::CHUNK_TRACKSCALE:
- /*
- +2 short flags;
- +8 short unknown[4];
- +2 short keys;
- +2 short unknown;
- struct {
- +2 short framenum;
- +4 long unknown;
- float pos_x, pos_y, pos_z;
- } pos[keys];
- */
- this->mCurrent += 10;
- iTemp = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t) * 2;
- for (unsigned int i = 0; i < (unsigned int)iTemp;++i)
- {
- uint16_t sNum = *((const uint16_t*)mCurrent);
- this->mCurrent += sizeof(uint16_t);
- aiVectorKey v;
- v.mTime = (double)sNum;
- this->mCurrent += sizeof(uint32_t);
- v.mValue = *((const aiVector3D*)this->mCurrent);
- this->mCurrent += sizeof(aiVector3D);
- // check whether we do already have this keyframe
- for (std::vector<aiVectorKey>::const_iterator
- i = this->mCurrentNode->aScalingKeys.begin();
- i != this->mCurrentNode->aScalingKeys.end();++i)
- {
- if ((*i).mTime == v.mTime){v.mTime = -10e10f;break;}
- }
- // add the new keyframe
- if (v.mTime != -10e10f)this->mCurrentNode->aScalingKeys.push_back(v);
- if (v.mValue.x && v.mValue.y && v.mValue.z)
- {
- DefaultLogger::get()->warn("Found zero scaled axis in scaling keyframe");
- ++iCnt;
- }
- }
- // there are 3DS files that have only zero scalings
- if (iTemp == iCnt)
- {
- DefaultLogger::get()->warn("All scaling keys are zero. They will be removed");
- this->mCurrentNode->aScalingKeys.clear();
- }
- break;
- #endif
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next top-level chunk
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return this->ParseHierarchyChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseFaceChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- Dot3DS::Mesh& mMesh = this->mScene->mMeshes.back();
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- const unsigned char* sz = this->mCurrent;
- uint32_t iCnt = 0,iTemp;
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_SMOOLIST:
- // one int32 for each face
- for (std::vector<Dot3DS::Face>::iterator
- i = mMesh.mFaces.begin();
- i != mMesh.mFaces.end();++i)
- {
- // nth bit is set for nth smoothing group
- (*i).iSmoothGroup = *((uint32_t*)this->mCurrent);
- this->mCurrent += sizeof(uint32_t);
- }
- break;
- case Dot3DSFile::CHUNK_FACEMAT:
- // at fist an asciiz with the material name
- while (*sz++)
- {
- // make sure we don't run over the end of the chunk
- if (sz > pcCurNext-1)break;
- }
- // find the index of the material
- unsigned int iIndex = 0xFFFFFFFF;
- iCnt = 0;
- for (std::vector<Dot3DS::Material>::const_iterator
- i = this->mScene->mMaterials.begin();
- i != this->mScene->mMaterials.end();++i,++iCnt)
- {
- // compare case-independent to be sure it works
- if (0 == ASSIMP_stricmp((const char*)this->mCurrent,
- (const char*)((*i).mName.c_str())))
- {
- iIndex = iCnt;
- break;
- }
- }
- if (0xFFFFFFFF == iIndex)
- {
- // this material is not known. Ignore this. We will later
- // assign the default material to all faces using *this*
- // material. Use 0xcdcdcdcd as special value to indicate
- // this.
- iIndex = 0xcdcdcdcd;
- }
- this->mCurrent = sz;
- iCnt = (int)(*((uint16_t*)this->mCurrent));
- this->mCurrent += sizeof(uint16_t);
- for (unsigned int i = 0; i < iCnt;++i)
- {
- iTemp = (uint16_t)*((uint16_t*)this->mCurrent);
- // check range
- if (iTemp >= mMesh.mFaceMaterials.size())
- {
- DefaultLogger::get()->error("Invalid face index in face material list");
- mMesh.mFaceMaterials[mMesh.mFaceMaterials.size()-1] = iIndex;
- }
- else
- {
- mMesh.mFaceMaterials[iTemp] = iIndex;
- }
- this->mCurrent += sizeof(uint16_t);
- }
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next chunk on this level
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return ParseFaceChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseMeshChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- Dot3DS::Mesh& mMesh = this->mScene->mMeshes.back();
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- const unsigned char* sz = this->mCurrent;
- unsigned int iCnt = 0;
- int iRemaining;
- uint16_t iNum = 0;
- float* pf;
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_VERTLIST:
- iNum = *((short*)this->mCurrent);
- this->mCurrent += sizeof(short);
- while (iNum-- > 0)
- {
- mMesh.mPositions.push_back(*((aiVector3D*)this->mCurrent));
- aiVector3D& v = mMesh.mPositions.back();
- //std::swap( v.y, v.z);
- //v.y *= -1.0f;
- this->mCurrent += sizeof(aiVector3D);
- }
- break;
- case Dot3DSFile::CHUNK_TRMATRIX:
- {
- // http://www.gamedev.net/community/forums/topic.asp?topic_id=263063
- // http://www.gamedev.net/community/forums/topic.asp?topic_id=392310
- pf = (float*)this->mCurrent;
- this->mCurrent += 12 * sizeof(float);
- mMesh.mMat.a1 = pf[0];
- mMesh.mMat.b1 = pf[1];
- mMesh.mMat.c1 = pf[2];
- mMesh.mMat.a2 = pf[3];
- mMesh.mMat.b2 = pf[4];
- mMesh.mMat.c2 = pf[5];
- mMesh.mMat.a3 = pf[6];
- mMesh.mMat.b3 = pf[7];
- mMesh.mMat.c3 = pf[8];
- mMesh.mMat.a4 = pf[9];
- mMesh.mMat.b4 = pf[10];
- mMesh.mMat.c4 = pf[11];
- //mMesh.mMat.Transpose(); // todo ----
- // now check whether the matrix has got a negative determinant
- // If yes, we need to flip all vertices' x axis ....
- // From lib3ds, mesh.c
- if (mMesh.mMat.Determinant() < 0.0f)
- {
- aiMatrix4x4 mInv = mMesh.mMat;
- mInv.Inverse();
- aiMatrix4x4 mMe = mMesh.mMat;
- mMe.a1 *= -1.0f;
- mMe.b1 *= -1.0f;
- mMe.c1 *= -1.0f;
- mMe.d1 *= -1.0f;
- mInv = mInv * mMe;
- for (register unsigned int i = 0; i < mMesh.mPositions.size();++i)
- {
- aiVector3D a,c;
- a = mMesh.mPositions[i];
- c[0]= mInv[0][0]*a[0] + mInv[1][0]*a[1] + mInv[2][0]*a[2] + mInv[3][0];
- c[1]= mInv[0][1]*a[0] + mInv[1][1]*a[1] + mInv[2][1]*a[2] + mInv[3][1];
- c[2]= mInv[0][2]*a[0] + mInv[1][2]*a[1] + mInv[2][2]*a[2] + mInv[3][2];
- mMesh.mPositions[i] = c;
- }
- }
-
- }
- break;
- case Dot3DSFile::CHUNK_MAPLIST:
- iNum = *((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- while (iNum-- > 0)
- {
- mMesh.mTexCoords.push_back(*((aiVector2D*)this->mCurrent));
- this->mCurrent += sizeof(aiVector2D);
- }
- break;
- #if 0
- case Dot3DSFile::CHUNK_TXTINFO:
- // for debugging purposes. Read two bytes to determine the mapping type
- iNum = *((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- break;
- #endif
- case Dot3DSFile::CHUNK_FACELIST:
- iNum = *((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- while (iNum-- > 0)
- {
- Dot3DS::Face sFace;
- sFace.mIndices[0] = *((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- sFace.mIndices[1] = *((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- sFace.mIndices[2] = *((uint16_t*)this->mCurrent);
- this->mCurrent += 2*sizeof(uint16_t);
- mMesh.mFaces.push_back(sFace);
- }
- // resize the material array (0xcdcdcdcd marks the
- // default material; so if a face is not referenced
- // by a material $$DEFAULT will be assigned to it)
- mMesh.mFaceMaterials.resize(mMesh.mFaces.size(),0xcdcdcdcd);
- iRemaining = (int)(pcCurNext - this->mCurrent);
- if (iRemaining > 0)this->ParseFaceChunk(iRemaining);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next chunk on this level
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return ParseMeshChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseMaterialChunk(int& piRemaining)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- const unsigned char* sz = this->mCurrent;
- unsigned int iCnt = 0;
- int iRemaining;
- aiColor3D* pc;
- float* pcf;
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_MAT_MATNAME:
- // string in file is zero-terminated,
- // this should be no problem. However, validate whether
- // it overlaps the end of the chunk, if yes we should
- // truncate it.
- while (*sz++ != '\0')
- {
- if (sz > pcCurNext-1)break;
- ++iCnt;
- }
- this->mScene->mMaterials.back().mName = std::string(
- (const char*)this->mCurrent,iCnt);
- break;
- case Dot3DSFile::CHUNK_MAT_DIFFUSE:
- pc = &this->mScene->mMaterials.back().mDiffuse;
- this->ParseColorChunk(pc);
- if (is_qnan(pc->r))
- {
- // color chunk is invalid. Simply ignore it
- pc->r = pc->g = pc->b = 1.0f;
- }
- break;
- case Dot3DSFile::CHUNK_MAT_SPECULAR:
- pc = &this->mScene->mMaterials.back().mSpecular;
- this->ParseColorChunk(pc);
- if (is_qnan(pc->r))
- {
- // color chunk is invalid. Simply ignore it
- pc->r = pc->g = pc->b = 1.0f;
- }
- break;
- case Dot3DSFile::CHUNK_MAT_AMBIENT:
- pc = &this->mScene->mMaterials.back().mAmbient;
- this->ParseColorChunk(pc);
- if (is_qnan(pc->r))
- {
- // color chunk is invalid. Simply ignore it
- pc->r = pc->g = pc->b = 1.0f;
- }
- break;
- case Dot3DSFile::CHUNK_MAT_SELF_ILLUM:
- pc = &this->mScene->mMaterials.back().mEmissive;
- this->ParseColorChunk(pc);
- if (is_qnan(pc->r))
- {
- // color chunk is invalid. Simply ignore it
- // EMISSSIVE TO 0|0|0
- pc->r = pc->g = pc->b = 0.0f;
- }
- break;
- case Dot3DSFile::CHUNK_MAT_TRANSPARENCY:
- pcf = &this->mScene->mMaterials.back().mTransparency;
- *pcf = this->ParsePercentageChunk();
- // NOTE: transparency, not opacity
- if (is_qnan(*pcf))
- *pcf = 1.0f;
- else *pcf = 1.0f - *pcf * (float)0xFFFF / 100.0f;
- break;
- case Dot3DSFile::CHUNK_MAT_SHADING:
-
- this->mScene->mMaterials.back().mShading =
- (Dot3DS::Dot3DSFile::shadetype3ds)*((uint16_t*)this->mCurrent);
- this->mCurrent += sizeof(uint16_t);
- break;
- case Dot3DSFile::CHUNK_MAT_TWO_SIDE:
- this->mScene->mMaterials.back().mTwoSided = true;
- break;
- case Dot3DSFile::CHUNK_MAT_SHININESS:
- pcf = &this->mScene->mMaterials.back().mSpecularExponent;
- *pcf = this->ParsePercentageChunk();
- if (is_qnan(*pcf))
- *pcf = 0.0f;
- else *pcf *= (float)0xFFFF;
- break;
- case Dot3DSFile::CHUNK_MAT_SHININESS_PERCENT:
- pcf = &this->mScene->mMaterials.back().mShininessStrength;
- *pcf = this->ParsePercentageChunk();
- if (is_qnan(*pcf))
- *pcf = 0.0f;
- else *pcf *= (float)0xffff / 100.0f;
- break;
- case Dot3DSFile::CHUNK_MAT_SELF_ILPCT:
- // TODO: need to multiply with emissive base color?
- pcf = &this->mScene->mMaterials.back().sTexEmissive.mTextureBlend;
- *pcf = this->ParsePercentageChunk();
- if (is_qnan(*pcf))
- *pcf = 0.0f;
- else *pcf = *pcf * (float)0xFFFF / 100.0f;
- break;
- // parse texture chunks
- case Dot3DSFile::CHUNK_MAT_TEXTURE:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexDiffuse);
- break;
- case Dot3DSFile::CHUNK_MAT_BUMPMAP:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexBump);
- break;
- case Dot3DSFile::CHUNK_MAT_OPACMAP:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexOpacity);
- break;
- case Dot3DSFile::CHUNK_MAT_MAT_SHINMAP:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexShininess);
- break;
- case Dot3DSFile::CHUNK_MAT_SPECMAP:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexSpecular);
- break;
- case Dot3DSFile::CHUNK_MAT_SELFIMAP:
- iRemaining = (psChunk->Size - sizeof(Dot3DSFile::Chunk));
- this->ParseTextureChunk(iRemaining,&this->mScene->mMaterials.back().sTexEmissive);
- break;
- };
- if (pcCurNext < this->mCurrent)
- {
- // place an error message. If we crash the programmer
- // will be able to find it
- DefaultLogger::get()->warn(ASSIMP_3DS_WARN_CHUNK_OVERFLOW_MSG);
- pcCurNext = this->mCurrent;
- }
- // Go to the starting position of the next chunk on this level
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return ParseMaterialChunk(piRemaining);
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseTextureChunk(int& piRemaining,Dot3DS::Texture* pcOut)
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
-
- const unsigned char* pcCur = this->mCurrent;
- const unsigned char* pcCurNext = pcCur + (psChunk->Size
- - sizeof(Dot3DSFile::Chunk));
- // get chunk type
- const unsigned char* sz = this->mCurrent;
- unsigned int iCnt = 0;
- switch (psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_MAPFILE:
- // string in file is zero-terminated,
- // this should be no problem. However, validate whether
- // it overlaps the end of the chunk, if yes we should
- // truncate it.
- while (*sz++ != '\0')
- {
- if (sz > pcCurNext-1)break;
- ++iCnt;
- }
- pcOut->mMapName = std::string((const char*)this->mCurrent,iCnt);
- break;
- // manually parse the blend factor
- case Dot3DSFile::CHUNK_PERCENTF:
- pcOut->mTextureBlend = *((float*)this->mCurrent);
- break;
- // manually parse the blend factor
- case Dot3DSFile::CHUNK_PERCENTW:
- pcOut->mTextureBlend = (float)(*((short*)this->mCurrent)) / 100.0f;
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_USCALE:
- pcOut->mScaleU = *((float*)this->mCurrent);
- if (0.0f == pcOut->mScaleU)
- {
- DefaultLogger::get()->warn("Texture coordinate scaling in the "
- "x direction is zero. Assuming this should be 1.0 ... ");
- pcOut->mScaleU = 1.0f;
- }
- // NOTE: some docs state it is 1/u, others say it is u ... ARGHH!
- //pcOut->mScaleU = 1.0f / pcOut->mScaleU;
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_VSCALE:
- pcOut->mScaleV = *((float*)this->mCurrent);
- if (0.0f == pcOut->mScaleV)
- {
- DefaultLogger::get()->warn("Texture coordinate scaling in the "
- "y direction is zero. Assuming this should be 1.0 ... ");
- pcOut->mScaleV = 1.0f;
- }
- // NOTE: some docs state it is 1/v, others say it is v ... ARGHH!
- //pcOut->mScaleV = 1.0f / pcOut->mScaleV;
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_UOFFSET:
- pcOut->mOffsetU = *((float*)this->mCurrent);
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_VOFFSET:
- pcOut->mOffsetV = *((float*)this->mCurrent);
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_ANG:
- pcOut->mRotation = *((float*)this->mCurrent);
- break;
- case Dot3DSFile::CHUNK_MAT_MAP_TILING:
- uint16_t iFlags = *((uint16_t*)this->mCurrent);
- // check whether the mirror flag is set
- if (iFlags & 0x2u)
- {
- pcOut->mMapMode = aiTextureMapMode_Mirror;
- }
- // assume that "decal" means clamping ...
- else if (iFlags & 0x10u && iFlags & 0x1u)
- {
- pcOut->mMapMode = aiTextureMapMode_Clamp;
- }
- break;
- };
- // Go to the starting position of the next chunk on this level
- this->mCurrent = pcCurNext;
- piRemaining -= psChunk->Size;
- if (0 >= piRemaining)return;
- return ParseTextureChunk(piRemaining,pcOut);
- }
- // ------------------------------------------------------------------------------------------------
- float Dot3DSImporter::ParsePercentageChunk()
- {
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
- if (NULL == psChunk)return std::numeric_limits<float>::quiet_NaN();
- if (Dot3DSFile::CHUNK_PERCENTF == psChunk->Flag)
- {
- if (sizeof(float) > psChunk->Size)
- return std::numeric_limits<float>::quiet_NaN();
- return *((float*)this->mCurrent);
- }
- else if (Dot3DSFile::CHUNK_PERCENTW == psChunk->Flag)
- {
- if (2 > psChunk->Size)
- return std::numeric_limits<float>::quiet_NaN();
- return (float)(*((short*)this->mCurrent)) / (float)0xFFFF;
- }
- this->mCurrent += psChunk->Size - sizeof(Dot3DSFile::Chunk);
- return std::numeric_limits<float>::quiet_NaN();
- }
- // ------------------------------------------------------------------------------------------------
- void Dot3DSImporter::ParseColorChunk(aiColor3D* p_pcOut,
- bool p_bAcceptPercent)
- {
- ai_assert(p_pcOut != NULL);
- // error return value
- static const aiColor3D clrError = aiColor3D(std::numeric_limits<float>::quiet_NaN(),
- std::numeric_limits<float>::quiet_NaN(),
- std::numeric_limits<float>::quiet_NaN());
- const Dot3DSFile::Chunk* psChunk;
- this->ReadChunk(&psChunk);
- if (NULL == psChunk)
- {
- *p_pcOut = clrError;
- return;
- }
- const unsigned char* pcCur = this->mCurrent;
- this->mCurrent += psChunk->Size - sizeof(Dot3DSFile::Chunk);
- bool bGamma = false;
- switch(psChunk->Flag)
- {
- case Dot3DSFile::CHUNK_LINRGBF:
- bGamma = true;
- case Dot3DSFile::CHUNK_RGBF:
- if (sizeof(float) * 3 > psChunk->Size - sizeof(Dot3DSFile::Chunk))
- {
- *p_pcOut = clrError;
- return;
- }
- p_pcOut->r = ((float*)pcCur)[0];
- p_pcOut->g = ((float*)pcCur)[1];
- p_pcOut->b = ((float*)pcCur)[2];
- break;
- case Dot3DSFile::CHUNK_LINRGBB:
- bGamma = true;
- case Dot3DSFile::CHUNK_RGBB:
- if (sizeof(char) * 3 > psChunk->Size - sizeof(Dot3DSFile::Chunk))
- {
- *p_pcOut = clrError;
- return;
- }
- p_pcOut->r = (float)pcCur[0] / 255.0f;
- p_pcOut->g = (float)pcCur[1] / 255.0f;
- p_pcOut->b = (float)pcCur[2] / 255.0f;
- break;
- // percentage chunks: accepted to be compatible with various
- // .3ds files with very curious content
- case Dot3DSFile::CHUNK_PERCENTF:
- if (p_bAcceptPercent && 4 <= psChunk->Size - sizeof(Dot3DSFile::Chunk))
- {
- p_pcOut->r = *((float*)pcCur);
- p_pcOut->g = *((float*)pcCur);
- p_pcOut->b = *((float*)pcCur);
- break;
- }
- *p_pcOut = clrError;
- return;
- case Dot3DSFile::CHUNK_PERCENTW:
- if (p_bAcceptPercent && 1 <= psChunk->Size - sizeof(Dot3DSFile::Chunk))
- {
- p_pcOut->r = (float)pcCur[0] / 255.0f;
- p_pcOut->g = (float)pcCur[0] / 255.0f;
- p_pcOut->b = (float)pcCur[0] / 255.0f;
- break;
- }
- *p_pcOut = clrError;
- return;
- default:
- // skip unknown chunks, hope this won't cause any problems.
- return this->ParseColorChunk(p_pcOut,p_bAcceptPercent);
- };
- // assume input gamma = 1.0, output gamma = 2.2
- // Not sure whether this is correct, too tired to
- // think about it ;-)
- if (bGamma)
- {
- p_pcOut->r = powf(p_pcOut->r, 1.0f / 2.2f);
- p_pcOut->g = powf(p_pcOut->g, 1.0f / 2.2f);
- p_pcOut->b = powf(p_pcOut->b, 1.0f / 2.2f);
- }
- return;
- }
|