1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171 |
- /*
- ---------------------------------------------------------------------------
- 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 PLY parser class */
- #include "PlyLoader.h"
- #include "MaterialSystem.h"
- #include "fast_atof.h"
- #include "StringComparison.h"
- #include "ByteSwap.h"
- #include "../include/IOStream.h"
- #include "../include/IOSystem.h"
- #include "../include/aiMesh.h"
- #include "../include/aiScene.h"
- #include "../include/aiAssert.h"
- #include "../include/DefaultLogger.h"
- #include <boost/scoped_ptr.hpp>
- using namespace Assimp;
- // ------------------------------------------------------------------------------------------------
- void ValidateOut(const char* szCur, const char* szMax)
- {
- if (szCur > szMax)
- {
- throw new ImportErrorException("Buffer overflow. PLY file contains invalid indices");
- }
- return;
- }
- // ------------------------------------------------------------------------------------------------
- PLY::EDataType PLY::Property::ParseDataType(const char* p_szIn,const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- const char* szMax = *p_szOut;
- PLY::EDataType eOut = PLY::EDT_INVALID;
- if (0 == ASSIMP_strincmp(p_szIn,"char",4) ||
- 0 == ASSIMP_strincmp(p_szIn,"int8",4))
- {
- p_szIn+=4;
- eOut = PLY::EDT_Char;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"uchar",5) ||
- 0 == ASSIMP_strincmp(p_szIn,"uint8",5))
- {
- p_szIn+=5;
- eOut = PLY::EDT_UChar;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"short",5) ||
- 0 == ASSIMP_strincmp(p_szIn,"int16",5))
- {
- p_szIn+=5;
- eOut = PLY::EDT_Short;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ushort",6) ||
- 0 == ASSIMP_strincmp(p_szIn,"uint16",6))
- {
- p_szIn+=6;
- eOut = PLY::EDT_UShort;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"int32",5))
- {
- p_szIn+=5;
- eOut = PLY::EDT_Int;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"uint32",6))
- {
- p_szIn+=6;
- eOut = PLY::EDT_UInt;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"int",3))
- {
- p_szIn+=3;
- eOut = PLY::EDT_Int;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"uint",4))
- {
- p_szIn+=4;
- eOut = PLY::EDT_UInt;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"float32",7))
- {
- p_szIn+=7;
- eOut = PLY::EDT_Float;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"float",5))
- {
- p_szIn+=5;
- eOut = PLY::EDT_Float;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"float64",7))
- {
- p_szIn+=7;
- eOut = PLY::EDT_Double;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"double64",8))
- {
- p_szIn+=8;
- eOut = PLY::EDT_Double;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"double",6))
- {
- p_szIn+=6;
- eOut = PLY::EDT_Double;
- }
- // either end of line or space, but no other characters allowed
- if (!(IsSpace(*p_szIn) || IsLineEnd(*p_szIn)))
- {
- eOut = PLY::EDT_INVALID;
- }
- if (PLY::EDT_INVALID == eOut)
- {
- DefaultLogger::get()->info("Found unknown data type in PLY file. This is OK");
- }
- *p_szOut = p_szIn;
- ValidateOut(p_szIn,szMax);
- return eOut;
- }
- // ------------------------------------------------------------------------------------------------
- PLY::ESemantic PLY::Property::ParseSemantic(const char* p_szIn,const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- const char* szMax = *p_szOut;
- PLY::ESemantic eOut = PLY::EST_INVALID;
- if (0 == ASSIMP_strincmp(p_szIn,"red",3))
- {
- p_szIn+=3;
- eOut = PLY::EST_Red;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"green",4))
- {
- p_szIn+=5;
- eOut = PLY::EST_Green;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"blue",4))
- {
- p_szIn+=4;
- eOut = PLY::EST_Blue;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"alpha",5))
- {
- p_szIn+=5;
- eOut = PLY::EST_Alpha;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"vertex_index",12))
- {
- p_szIn+=12;
- eOut = PLY::EST_VertexIndex;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"vertex_indices",14))
- {
- p_szIn+=14;
- eOut = PLY::EST_VertexIndex;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"material_index",14))
- {
- p_szIn+=14;
- eOut = PLY::EST_MaterialIndex;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ambient_red",11))
- {
- p_szIn+=11;
- eOut = PLY::EST_AmbientRed;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ambient_green",13))
- {
- p_szIn+=13;
- eOut = PLY::EST_AmbientGreen;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ambient_blue",12))
- {
- p_szIn+=12;
- eOut = PLY::EST_AmbientBlue;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ambient_alpha",13))
- {
- p_szIn+=13;
- eOut = PLY::EST_AmbientAlpha;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"diffuse_red",11))
- {
- p_szIn+=11;
- eOut = PLY::EST_DiffuseRed;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"diffuse_green",13))
- {
- p_szIn+=13;
- eOut = PLY::EST_DiffuseGreen;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"diffuse_blue",12))
- {
- p_szIn+=12;
- eOut = PLY::EST_DiffuseBlue;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"diffuse_alpha",13))
- {
- p_szIn+=13;
- eOut = PLY::EST_DiffuseAlpha;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"specular_red",12))
- {
- p_szIn+=12;
- eOut = PLY::EST_SpecularRed;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"specular_green",14))
- {
- p_szIn+=14;
- eOut = PLY::EST_SpecularGreen;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"specular_blue",13))
- {
- p_szIn+=13;
- eOut = PLY::EST_SpecularBlue;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"specular_alpha",14))
- {
- p_szIn+=14;
- eOut = PLY::EST_SpecularAlpha;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"opacity",7))
- {
- p_szIn+=7;
- eOut = PLY::EST_Opacity;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"specular_power",6))
- {
- p_szIn+=7;
- eOut = PLY::EST_PhongPower;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"r",1))
- {
- p_szIn++;
- eOut = PLY::EST_Red;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"g",1))
- {
- p_szIn++;
- eOut = PLY::EST_Green;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"b",1))
- {
- p_szIn++;
- eOut = PLY::EST_Blue;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"tx",2))
- {
- p_szIn+=2;
- eOut = PLY::EST_UTextureCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"ty",2))
- {
- p_szIn+=2;
- eOut = PLY::EST_VTextureCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"u",1))
- {
- p_szIn++;
- eOut = PLY::EST_UTextureCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"v",1))
- {
- p_szIn++;
- eOut = PLY::EST_VTextureCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"x",1))
- {
- p_szIn++;
- eOut = PLY::EST_XCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"y",1))
- {
- p_szIn++;
- eOut = PLY::EST_YCoord;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"z",1))
- {
- p_szIn++;
- eOut = PLY::EST_ZCoord;
- }
- else
- {
- DefaultLogger::get()->info("Found unknown property in file. This is ok");
- // ... find the next space or new line
- while (*p_szIn != ' ' && *p_szIn != '\t' &&
- *p_szIn != '\r' && *p_szIn != '\0' && *p_szIn != '\n')p_szIn++;
- }
- // either end of line or space, but no other characters allowed
- if (!(IsSpace(*p_szIn) || IsLineEnd(*p_szIn)))
- {
- eOut = PLY::EST_INVALID;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return eOut;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::Property::ParseProperty (const char* p_szIn,
- const char** p_szOut,
- PLY::Property* pOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- // Forms supported:
- // "property float x"
- // "property list uchar int vertex_index"
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // skip leading spaces
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- // skip the "property" string at the beginning
- if (0 != ASSIMP_strincmp(p_szIn,"property",8) || !IsSpace(*(p_szIn+8)))
- {
- // seems not to be a valid property entry
- return false;
- }
- // get next word
- p_szIn += 9;
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- if (0 == ASSIMP_strincmp(p_szIn,"list",4) && IsSpace(*(p_szIn+4)))
- {
- pOut->bIsList = true;
- // seems to be a list.
- p_szIn += 5;
- const char* szPass = szMax;
- if(EDT_INVALID == (pOut->eFirstType = PLY::Property::ParseDataType(p_szIn, &szPass)))
- {
- // unable to parse list size data type
- SkipLine(p_szIn,&p_szIn);
- *p_szOut = p_szIn;
- return false;
- }
- p_szIn = szPass;
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- szPass = szMax;
- if(EDT_INVALID == (pOut->eType = PLY::Property::ParseDataType(p_szIn, &szPass)))
- {
- // unable to parse list data type
- SkipLine(p_szIn,&p_szIn);
- *p_szOut = p_szIn;
- return false;
- }
- p_szIn = szPass;
- }
- else
- {
- const char* szPass = szMax;
- if(EDT_INVALID == (pOut->eType = PLY::Property::ParseDataType(p_szIn, &szPass)))
- {
- // unable to parse data type. Skip the property
- SkipLine(p_szIn,&p_szIn);
- *p_szOut = p_szIn;
- return false;
- }
- p_szIn = szPass;
- }
-
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- const char* szCur = p_szIn;
- const char* szPass = szMax;
- pOut->Semantic = PLY::Property::ParseSemantic(p_szIn, &szPass);
- p_szIn = szPass;
- if (PLY::EST_INVALID == pOut->Semantic)
- {
- // store the name of the semantic
- uintptr_t iDiff = (uintptr_t)p_szIn - (uintptr_t)szCur;
- DefaultLogger::get()->info("Found unknown semantic in PLY file. This is OK");
- pOut->szName = std::string(szCur,iDiff);
- }
- SkipSpacesAndLineEnd(p_szIn,&p_szIn);
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- PLY::EElementSemantic PLY::Element::ParseSemantic(const char* p_szIn,
- const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- const char* szMax = *p_szOut;
- PLY::EElementSemantic eOut = PLY::EEST_INVALID;
- if (0 == ASSIMP_strincmp(p_szIn,"vertex",6))
- {
- p_szIn+=6;
- eOut = PLY::EEST_Vertex;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"face",4))
- {
- p_szIn+=4;
- eOut = PLY::EEST_Face;
- }
- #if 0
- else if (0 == ASSIMP_strincmp(p_szIn,"range_grid",10))
- {
- p_szIn+=10;
- eOut = PLY::EEST_Face;
- }
- #endif
- else if (0 == ASSIMP_strincmp(p_szIn,"tristrips",9))
- {
- p_szIn+=9;
- eOut = PLY::EEST_TriStrip;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"edge",4))
- {
- p_szIn+=4;
- eOut = PLY::EEST_Edge;
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"material",8))
- {
- p_szIn+=8;
- eOut = PLY::EEST_Material;
- }
- // either end of line or space, but no other characters allowed
- if (!(IsSpace(*p_szIn) || IsLineEnd(*p_szIn)))
- {
- eOut = PLY::EEST_INVALID;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return eOut;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::Element::ParseElement (const char* p_szIn,
- const char** p_szOut,
- PLY::Element* pOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != pOut);
- // Example format: "element vertex 8"
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // skip leading spaces
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- // skip the "element" string at the beginning
- if (0 != ASSIMP_strincmp(p_szIn,"element",7) || !IsSpace(*(p_szIn+7)))
- {
- // seems not to be a valid property entry
- return false;
- }
- // get next word
- p_szIn += 8;
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- // parse the semantic of the element
- const char* szCur = p_szIn;
- const char* szPass = szMax;
- pOut->eSemantic = PLY::Element::ParseSemantic(p_szIn,&szPass);
- p_szIn = szPass;
- if (PLY::EEST_INVALID == pOut->eSemantic)
- {
- // store the name of the semantic
- uintptr_t iDiff = (uintptr_t)p_szIn - (uintptr_t)szCur;
- pOut->szName = std::string(szCur,iDiff);
- }
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
-
- //parse the number of occurences of this element
- pOut->NumOccur = strtol10(p_szIn,&p_szIn);
- // go to the next line
- SkipSpacesAndLineEnd(p_szIn,&p_szIn);
- // now parse all properties of the element
- while(true)
- {
- // skip all comments
- PLY::DOM::SkipComments(p_szIn,&p_szIn);
- PLY::Property* prop = new PLY::Property();
- const char* szPass = szMax;
- if(!PLY::Property::ParseProperty(p_szIn,&szPass,prop))break;
- p_szIn = szPass;
- // add the property to the property list
- pOut->alProperties.push_back(prop);
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::SkipComments (const char* p_szIn,
- const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // skip spaces
- if (!SkipSpaces(p_szIn,&p_szIn))return false;
- if (0 == ASSIMP_strincmp(p_szIn,"comment",7))
- {
- p_szIn += 7;
- SkipLine(p_szIn,&p_szIn);
- SkipComments(p_szIn,&p_szIn);
- *p_szOut = p_szIn;
- return true;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return false;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::ParseHeader (const char* p_szIn,const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- DefaultLogger::get()->debug("PLY::DOM::ParseHeader() begin");
- // after ply and format line
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // parse all elements
- while (true)
- {
- // skip all comments
- PLY::DOM::SkipComments(p_szIn,&p_szIn);
- PLY::Element* out = new PLY::Element();
- const char* szPass = szMax;
- if(PLY::Element::ParseElement(p_szIn,&szPass,out))
- {
- p_szIn = szPass;
- // add the element to the list of elements
- this->alElements.push_back(out);
- }
- else if (0 == ASSIMP_strincmp(p_szIn,"end_header",10) && IsSpaceOrNewLine(*(p_szIn+10)))
- {
- // we have reached the end of the header
- p_szIn += 11;
- break;
- }
- // ignore unknown header elements
- }
- SkipSpacesAndLineEnd(p_szIn,&p_szIn);
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- DefaultLogger::get()->debug("PLY::DOM::ParseHeader() succeeded");
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::ParseElementInstanceLists (
- const char* p_szIn,
- const char** p_szOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- DefaultLogger::get()->debug("PLY::DOM::ParseElementInstanceLists() begin");
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- this->alElementData.resize(this->alElements.size());
- std::vector<PLY::Element*>::const_iterator i = this->alElements.begin();
- std::vector<PLY::ElementInstanceList*>::iterator a = this->alElementData.begin();
- // parse all element instances
- for (;i != this->alElements.end();++i,++a)
- {
- *a = new PLY::ElementInstanceList((*i)); // reserve enough storage
- const char* szPass = szMax;
- PLY::ElementInstanceList::ParseInstanceList(p_szIn,&szPass,(*i),(*a));
- p_szIn = szPass;
- }
- DefaultLogger::get()->debug("PLY::DOM::ParseElementInstanceLists() succeeded");
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::ParseElementInstanceListsBinary (
- const char* p_szIn,
- const char** p_szOut,
- bool p_bBE)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- DefaultLogger::get()->debug("PLY::DOM::ParseElementInstanceListsBinary() begin");
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
-
- this->alElementData.resize(this->alElements.size());
- std::vector<PLY::Element*>::const_iterator i = this->alElements.begin();
- std::vector<PLY::ElementInstanceList*>::iterator a = this->alElementData.begin();
- // parse all element instances
- for (;i != this->alElements.end();++i,++a)
- {
- *a = new PLY::ElementInstanceList((*i)); // reserve enough storage
- const char* szPass = szMax;
- PLY::ElementInstanceList::ParseInstanceListBinary(p_szIn,&szPass,(*i),(*a),p_bBE);
- p_szIn = szPass;
- }
- DefaultLogger::get()->debug("PLY::DOM::ParseElementInstanceListsBinary() succeeded");
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::ParseInstanceBinary (const char* p_szIn,DOM* p_pcOut,bool p_bBE,unsigned int iSize)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_pcOut);
- DefaultLogger::get()->debug("PLY::DOM::ParseInstanceBinary() begin");
- const char* szMax = p_szIn + iSize;
- const char* szPass = szMax;
- if(!p_pcOut->ParseHeader(p_szIn,&szPass))
- {
- DefaultLogger::get()->debug("PLY::DOM::ParseInstanceBinary() failure");
- return false;
- }
- p_szIn = szPass;
- szPass = szMax;
- if(!p_pcOut->ParseElementInstanceListsBinary(p_szIn,&szPass,p_bBE))
- {
- DefaultLogger::get()->debug("PLY::DOM::ParseInstanceBinary() failure");
- return false;
- }
- DefaultLogger::get()->debug("PLY::DOM::ParseInstanceBinary() succeeded");
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::DOM::ParseInstance (const char* p_szIn,DOM* p_pcOut,unsigned int iSize)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_pcOut);
- DefaultLogger::get()->debug("PLY::DOM::ParseInstance() begin");
- const char* szMax = p_szIn + iSize;
- const char* szPass = szMax;
- if(!p_pcOut->ParseHeader(p_szIn,&szPass))
- {
- DefaultLogger::get()->debug("PLY::DOM::ParseInstance() failure");
- return false;
- }
- p_szIn = szPass;
- szPass = szMax;
- if(!p_pcOut->ParseElementInstanceLists(p_szIn,&szPass))
- {
- DefaultLogger::get()->debug("PLY::DOM::ParseInstance() failure");
- return false;
- }
- DefaultLogger::get()->debug("PLY::DOM::ParseInstance() succeeded");
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::ElementInstanceList::ParseInstanceList (
- const char* p_szIn,
- const char** p_szOut,
- const PLY::Element* pcElement,
- PLY::ElementInstanceList* p_pcOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != pcElement);
- ai_assert(NULL != p_pcOut);
- const char* szMax = *p_szOut;
- if (EEST_INVALID == pcElement->eSemantic)
- {
- // if the element has an unknown semantic we can skip all lines
- // However, there could be comments
- for (unsigned int i = 0; i < pcElement->NumOccur;++i)
- {
- PLY::DOM::SkipComments(p_szIn,&p_szIn);
- SkipLine(p_szIn,&p_szIn);
- }
- }
- else
- {
- // be sure to have enough storage
- p_pcOut->alInstances.resize(pcElement->NumOccur);
- for (unsigned int i = 0; i < pcElement->NumOccur;++i)
- {
- PLY::DOM::SkipComments(p_szIn,&p_szIn);
- PLY::ElementInstance* out = new PLY::ElementInstance();
- const char* szPass = szMax;
- PLY::ElementInstance::ParseInstance(p_szIn, &szPass,pcElement, out);
- p_szIn = szPass;
- // add it to the list
- p_pcOut->alInstances[i] = out;
- }
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::ElementInstanceList::ParseInstanceListBinary (
- const char* p_szIn,
- const char** p_szOut,
- const PLY::Element* pcElement,
- PLY::ElementInstanceList* p_pcOut,
- bool p_bBE /* = false */)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != pcElement);
- ai_assert(NULL != p_pcOut);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // we can add special handling code for unknown element semantics since
- // we can't skip it as a whole block (we don't know its exact size
- // due to the fact that lists could be contained in the property list
- // of the unknown element)
- for (unsigned int i = 0; i < pcElement->NumOccur;++i)
- {
- PLY::ElementInstance* out = new PLY::ElementInstance();
- const char* szPass = szMax;
- PLY::ElementInstance::ParseInstanceBinary(p_szIn, &p_szIn,pcElement, out, p_bBE);
- p_szIn = szPass;
- // add it to the list
- p_pcOut->alInstances[i] = out;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::ElementInstance::ParseInstance (
- const char* p_szIn,
- const char** p_szOut,
- const PLY::Element* pcElement,
- PLY::ElementInstance* p_pcOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != pcElement);
- ai_assert(NULL != p_pcOut);
- if (!SkipSpaces(p_szIn, &p_szIn))return false;
- // allocate enough storage
- p_pcOut->alProperties.resize(pcElement->alProperties.size());
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- std::vector<PLY::PropertyInstance>::iterator i = p_pcOut->alProperties.begin();
- std::vector<PLY::Property*>::const_iterator a = pcElement->alProperties.begin();
- for (;i != p_pcOut->alProperties.end();++i,++a)
- {
- const char* szPass = szMax;
- if(!(PLY::PropertyInstance::ParseInstance(p_szIn, &szPass,(*a),&(*i))))
- {
- DefaultLogger::get()->warn("Unable to parse property instance. "
- "Skipping this element instance");
- // skip the rest of the instance
- SkipLine(p_szIn, &p_szIn);
- PLY::PropertyInstance::ValueUnion v = PLY::PropertyInstance::DefaultValue((*a)->eType);
- (*i).avList.push_back(v);
- }
- p_szIn = szPass;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::ElementInstance::ParseInstanceBinary (
- const char* p_szIn,
- const char** p_szOut,
- const PLY::Element* pcElement,
- PLY::ElementInstance* p_pcOut,
- bool p_bBE /* = false */)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != pcElement);
- ai_assert(NULL != p_pcOut);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // allocate enough storage
- p_pcOut->alProperties.resize(pcElement->alProperties.size());
- std::vector<PLY::PropertyInstance>::iterator i = p_pcOut->alProperties.begin();
- std::vector<PLY::Property*>::const_iterator a = pcElement->alProperties.begin();
- for (;i != p_pcOut->alProperties.end();++i,++a)
- {
- const char* szPass = szMax;
- if(!(PLY::PropertyInstance::ParseInstanceBinary(p_szIn, &szPass,(*a),&(*i),p_bBE)))
- {
- DefaultLogger::get()->warn("Unable to parse binary property instance. "
- "Skipping this element instance");
- PLY::PropertyInstance::ValueUnion v = PLY::PropertyInstance::DefaultValue((*a)->eType);
- (*i).avList.push_back(v);
- }
- p_szIn = szPass;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::PropertyInstance::ParseInstance (const char* p_szIn,const char** p_szOut,
- const PLY::Property* prop, PLY::PropertyInstance* p_pcOut)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != prop);
- ai_assert(NULL != p_pcOut);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- // skip spaces at the beginning
- if (!SkipSpaces(p_szIn, &p_szIn))return false;
- if (prop->bIsList)
- {
- // parse the number of elements in the list
- PLY::PropertyInstance::ValueUnion v;
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValue(p_szIn, &szPass,prop->eFirstType,&v);
- p_szIn = szPass;
- // convert to unsigned int
- unsigned int iNum = PLY::PropertyInstance::ConvertTo<unsigned int>(v,prop->eFirstType);
- // parse all list elements
- for (unsigned int i = 0; i < iNum;++i)
- {
- if (!SkipSpaces(p_szIn, &p_szIn))return false;
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValue(p_szIn, &szPass,prop->eType,&v);
- p_szIn = szPass;
- p_pcOut->avList.push_back(v);
- }
- }
- else
- {
- // parse the property
- PLY::PropertyInstance::ValueUnion v;
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValue(p_szIn, &szPass,prop->eType,&v);
- p_szIn = szPass;
- p_pcOut->avList.push_back(v);
- }
- SkipSpacesAndLineEnd(p_szIn, &p_szIn);
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::PropertyInstance::ParseInstanceBinary (const char* p_szIn,const char** p_szOut,
- const PLY::Property* prop, PLY::PropertyInstance* p_pcOut,bool p_bBE)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != prop);
- ai_assert(NULL != p_pcOut);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- if (prop->bIsList)
- {
- // parse the number of elements in the list
- PLY::PropertyInstance::ValueUnion v;
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValueBinary(p_szIn, &szPass,prop->eFirstType,&v,p_bBE);
- p_szIn = szPass;
- // convert to unsigned int
- unsigned int iNum = PLY::PropertyInstance::ConvertTo<unsigned int>(v,prop->eFirstType);
- // parse all list elements
- for (unsigned int i = 0; i < iNum;++i)
- {
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValueBinary(p_szIn, &szPass,prop->eType,&v,p_bBE);
- p_szIn = szPass;
- p_pcOut->avList.push_back(v);
- }
- }
- else
- {
- // parse the property
- PLY::PropertyInstance::ValueUnion v;
- const char* szPass = szMax;
- PLY::PropertyInstance::ParseValueBinary(p_szIn, &szPass,prop->eType,&v,p_bBE);
- p_szIn = szPass;
- p_pcOut->avList.push_back(v);
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- PLY::PropertyInstance::ValueUnion PLY::PropertyInstance::DefaultValue(
- PLY::EDataType eType)
- {
- PLY::PropertyInstance::ValueUnion out;
- switch (eType)
- {
- case EDT_Float:
- out.fFloat = 0.0f;
- return out;
- case EDT_Double:
- out.fDouble = 0.0;
- return out;
- };
- out.iUInt = 0;
- return out;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::PropertyInstance::ParseValue(const char* p_szIn,const char** p_szOut,
- PLY::EDataType eType,PLY::PropertyInstance::ValueUnion* out)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != out);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- switch (eType)
- {
- case EDT_UInt:
- case EDT_UShort:
- case EDT_UChar:
- // simply parse in a full uint
- out->iUInt = (uint32_t)strtol10(p_szIn, &p_szIn);
- break;
- case EDT_Int:
- case EDT_Short:
- case EDT_Char:
- {
- // simply parse in a full int
- // Take care of the sign at the beginning
- bool bMinus = false;
- if (*p_szIn == '-')
- {
- p_szIn++;
- bMinus = true;
- }
- out->iInt = (int32_t)strtol10(p_szIn, &p_szIn);
- if (bMinus)out->iInt *= -1;
- break;
- }
- case EDT_Float:
- // parse a simple float
- p_szIn = fast_atof_move(p_szIn,out->fFloat);
- break;
- case EDT_Double:
- // Parse a double float. .. TODO: support this
- float f;
- p_szIn = fast_atof_move(p_szIn,f);
- out->fDouble = (double)f;
- default:
- return false;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- bool PLY::PropertyInstance::ParseValueBinary(
- const char* p_szIn,
- const char** p_szOut,
- PLY::EDataType eType,
- PLY::PropertyInstance::ValueUnion* out,
- bool p_bBE)
- {
- ai_assert(NULL != p_szIn);
- ai_assert(NULL != p_szOut);
- ai_assert(NULL != out);
- const char* szMax = *p_szOut;
- *p_szOut = p_szIn;
- switch (eType)
- {
- case EDT_UInt:
- out->iUInt = (uint32_t)*((uint32_t*)p_szIn);
- p_szIn += 4;
-
- if (p_bBE)
- {
- ByteSwap::Swap((int32_t*)&out->iUInt);
- }
- break;
- case EDT_UShort:
- {
- uint16_t i = *((uint16_t*)p_szIn);
- if (p_bBE)
- {
- ByteSwap::Swap((int16_t*)&i);
- }
- out->iUInt = (uint32_t)i;
- p_szIn += 2;
- break;
- }
- case EDT_UChar:
- {
- uint8_t i = *((uint8_t*)p_szIn);
- out->iUInt = (uint32_t)i;
- p_szIn ++;
- break;
- }
- case EDT_Int:
- out->iInt = *((int32_t*)p_szIn);
- p_szIn += 4;
-
- if (p_bBE)
- {
- ByteSwap::Swap((int32_t*)&out->iInt);
- }
- break;
- case EDT_Short:
- {
- int16_t i = *((int16_t*)p_szIn);
- if (p_bBE)
- {
- ByteSwap::Swap((int16_t*)&i);
- }
- out->iInt = (int32_t)i;
- p_szIn += 2;
- break;
- }
- case EDT_Char:
- out->iInt = (int32_t)*((int8_t*)p_szIn);
- p_szIn ++;
- break;
- case EDT_Float:
- {
- int32_t* pf = (int32_t*)p_szIn;
- if (p_bBE)
- {
- ByteSwap::Swap((int32_t*)&pf);
- }
- p_szIn += 4;
- out->fFloat = *((float*)&pf);
- break;
- }
- case EDT_Double:
- {
- int64_t* pf = (int64_t*)p_szIn;
- if (p_bBE)
- {
- ByteSwap::Swap((int64_t*)&pf);
- }
- p_szIn += 8;
- out->fDouble = *((double*)&pf);
- break;
- }
- default:
- return false;
- }
- ValidateOut(p_szIn,szMax);
- *p_szOut = p_szIn;
- return true;
- }
|