2008-05-09 17:24:28 +00:00
|
|
|
/*
|
|
|
|
---------------------------------------------------------------------------
|
2008-05-22 10:20:31 +00:00
|
|
|
Open Asset Import Library (ASSIMP)
|
2008-05-09 17:24:28 +00:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
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.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
/** @file Importer.cpp
|
|
|
|
* @brief Implementation of the CPP-API class #Importer
|
|
|
|
*/
|
2008-07-22 22:52:16 +00:00
|
|
|
|
2008-10-13 16:45:48 +00:00
|
|
|
#include "AssimpPCH.h"
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
/* Uncomment this line to prevent Assimp from catching unknown exceptions.
|
|
|
|
*
|
|
|
|
* Note that any Exception except ImportErrorException may lead to
|
|
|
|
* undefined behaviour -> loaders could remain in an unusable state and
|
|
|
|
* further imports with the same Importer instance could fail/crash/burn ...
|
|
|
|
*/
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#define ASSIMP_CATCH_GLOBAL_EXCEPTIONS
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2009-01-12 22:06:54 +00:00
|
|
|
// Internal headers
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2008-05-05 12:36:31 +00:00
|
|
|
#include "BaseImporter.h"
|
|
|
|
#include "BaseProcess.h"
|
|
|
|
#include "DefaultIOStream.h"
|
|
|
|
#include "DefaultIOSystem.h"
|
2008-08-28 17:35:36 +00:00
|
|
|
#include "GenericProperty.h"
|
2008-09-27 16:46:05 +00:00
|
|
|
#include "ProcessHelper.h"
|
2008-11-02 16:58:31 +00:00
|
|
|
#include "ScenePreprocessor.h"
|
2009-06-21 19:44:48 +00:00
|
|
|
#include "MemoryIOWrapper.h"
|
2008-05-09 17:24:28 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2008-06-22 10:09:26 +00:00
|
|
|
// Importers
|
2009-08-31 15:51:54 +00:00
|
|
|
// (include_new_importers_here)
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_X_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "XFileImporter.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_3DS_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "3DSLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MD3_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "MD3Loader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MDL_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "MDLLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MD2_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "MD2Loader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_PLY_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "PlyLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_ASE_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "ASELoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_OBJ_IMPORTER
|
2008-05-09 17:24:28 +00:00
|
|
|
# include "ObjFileImporter.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_HMP_IMPORTER
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "HMPLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_SMD_IMPORTER
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "SMDLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MDC_IMPORTER
|
2008-08-08 11:53:48 +00:00
|
|
|
# include "MDCLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MD5_IMPORTER
|
2008-08-08 11:53:48 +00:00
|
|
|
# include "MD5Loader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_STL_IMPORTER
|
2008-08-06 23:01:38 +00:00
|
|
|
# include "STLLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_LWO_IMPORTER
|
2008-08-07 22:27:17 +00:00
|
|
|
# include "LWOLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_DXF_IMPORTER
|
2008-09-05 13:21:01 +00:00
|
|
|
# include "DXFLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_NFF_IMPORTER
|
2008-09-07 16:51:05 +00:00
|
|
|
# include "NFFLoader.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_RAW_IMPORTER
|
2008-10-19 19:51:24 +00:00
|
|
|
# include "RawLoader.h"
|
2008-09-16 16:17:32 +00:00
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_OFF_IMPORTER
|
2008-10-19 19:51:24 +00:00
|
|
|
# include "OFFLoader.h"
|
2008-09-16 16:17:32 +00:00
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_AC_IMPORTER
|
|
|
|
# include "ACLoader.h"
|
|
|
|
#endif
|
2008-10-15 16:12:18 +00:00
|
|
|
#ifndef AI_BUILD_NO_BVH_IMPORTER
|
|
|
|
# include "BVHLoader.h"
|
|
|
|
#endif
|
2008-10-24 20:37:54 +00:00
|
|
|
#ifndef AI_BUILD_NO_IRRMESH_IMPORTER
|
|
|
|
# include "IRRMeshLoader.h"
|
|
|
|
#endif
|
2008-10-27 00:36:26 +00:00
|
|
|
#ifndef AI_BUILD_NO_IRR_IMPORTER
|
|
|
|
# include "IRRLoader.h"
|
|
|
|
#endif
|
2008-11-01 15:14:00 +00:00
|
|
|
#ifndef AI_BUILD_NO_Q3D_IMPORTER
|
|
|
|
# include "Q3DLoader.h"
|
|
|
|
#endif
|
2008-11-04 20:41:11 +00:00
|
|
|
#ifndef AI_BUILD_NO_B3D_IMPORTER
|
|
|
|
# include "B3DImporter.h"
|
|
|
|
#endif
|
2008-11-12 17:07:44 +00:00
|
|
|
#ifndef AI_BUILD_NO_COLLADA_IMPORTER
|
|
|
|
# include "ColladaLoader.h"
|
|
|
|
#endif
|
2009-01-09 21:29:54 +00:00
|
|
|
#ifndef AI_BUILD_NO_TERRAGEN_IMPORTER
|
|
|
|
# include "TerragenLoader.h"
|
|
|
|
#endif
|
2009-04-26 15:09:03 +00:00
|
|
|
#ifndef AI_BUILD_NO_CSM_IMPORTER
|
|
|
|
# include "CSMLoader.h"
|
|
|
|
#endif
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#ifndef AI_BUILD_NO_3D_IMPORTER
|
|
|
|
# include "UnrealLoader.h"
|
|
|
|
#endif
|
|
|
|
#ifndef AI_BUILD_NO_LWS_IMPORTER
|
|
|
|
# include "LWSLoader.h"
|
|
|
|
#endif
|
2009-09-05 12:04:32 +00:00
|
|
|
#ifndef AI_BUILD_NO_OGRE_IMPORTER
|
|
|
|
# include "OgreImporter.h"
|
|
|
|
#endif
|
2010-02-07 00:54:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_MS3D_IMPORTER
|
|
|
|
# include "MS3DLoader.h"
|
|
|
|
#endif
|
2010-04-02 04:17:05 +00:00
|
|
|
#ifndef AI_BUILD_NO_COB_IMPORTER
|
|
|
|
# include "COBLoader.h"
|
|
|
|
#endif
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2008-06-22 10:09:26 +00:00
|
|
|
// PostProcess-Steps
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_CALCTANGENTS_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "CalcTangentsProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_JOINVERTICES_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "JoinVerticesProcess.h"
|
|
|
|
#endif
|
2009-03-15 00:40:30 +00:00
|
|
|
#if !(defined AI_BUILD_NO_MAKELEFTHANDED_PROCESS && defined AI_BUILD_NO_FLIPUVS_PROCESS && defined AI_BUILD_NO_FLIPWINDINGORDER_PROCESS)
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "ConvertToLHProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_TRIANGULATE_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "TriangulateProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_GENFACENORMALS_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "GenFaceNormalsProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_GENVERTEXNORMALS_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "GenVertexNormalsProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_REMOVEVC_PROCESS
|
2008-10-02 15:22:38 +00:00
|
|
|
# include "RemoveVCProcess.h"
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_SPLITLARGEMESHES_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "SplitLargeMeshes.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_PRETRANSFORMVERTICES_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "PretransformVertices.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_LIMITBONEWEIGHTS_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "LimitBoneWeightsProcess.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_VALIDATEDS_PROCESS
|
2008-06-22 10:09:26 +00:00
|
|
|
# include "ValidateDataStructure.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_IMPROVECACHELOCALITY_PROCESS
|
2008-07-22 22:52:16 +00:00
|
|
|
# include "ImproveCacheLocality.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_FIXINFACINGNORMALS_PROCESS
|
2008-08-08 11:53:48 +00:00
|
|
|
# include "FixNormalsStep.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_REMOVE_REDUNDANTMATERIALS_PROCESS
|
2008-07-30 23:00:25 +00:00
|
|
|
# include "RemoveRedundantMaterials.h"
|
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#ifndef AI_BUILD_NO_FINDINVALIDDATA_PROCESS
|
|
|
|
# include "FindInvalidDataProcess.h"
|
2008-09-30 20:20:56 +00:00
|
|
|
#endif
|
2008-10-22 20:06:16 +00:00
|
|
|
#ifndef AI_BUILD_NO_FINDDEGENERATES_PROCESS
|
|
|
|
# include "FindDegenerates.h"
|
|
|
|
#endif
|
2008-11-04 20:41:11 +00:00
|
|
|
#ifndef AI_BUILD_NO_SORTBYPTYPE_PROCESS
|
2008-10-13 16:45:48 +00:00
|
|
|
# include "SortByPTypeProcess.h"
|
2008-11-04 20:41:11 +00:00
|
|
|
#endif
|
2008-11-16 21:56:45 +00:00
|
|
|
#ifndef AI_BUILD_NO_GENUVCOORDS_PROCESS
|
|
|
|
# include "ComputeUVMappingProcess.h"
|
|
|
|
#endif
|
|
|
|
#ifndef AI_BUILD_NO_TRANSFORMTEXCOORDS_PROCESS
|
|
|
|
# include "TextureTransform.h"
|
|
|
|
#endif
|
2009-02-02 20:29:27 +00:00
|
|
|
#ifndef AI_BUILD_NO_FINDINSTANCES_PROCESS
|
|
|
|
# include "FindInstancesProcess.h"
|
|
|
|
#endif
|
2009-04-24 20:53:24 +00:00
|
|
|
#ifndef AI_BUILD_NO_OPTIMIZEMESHES_PROCESS
|
|
|
|
# include "OptimizeMeshes.h"
|
|
|
|
#endif
|
|
|
|
#ifndef AI_BUILD_NO_OPTIMIZEGRAPH_PROCESS
|
|
|
|
# include "OptimizeGraph.h"
|
|
|
|
#endif
|
2008-11-16 21:56:45 +00:00
|
|
|
|
2008-10-19 11:32:33 +00:00
|
|
|
using namespace Assimp;
|
2009-01-12 22:06:54 +00:00
|
|
|
using namespace Assimp::Intern;
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2009-01-12 22:06:54 +00:00
|
|
|
// Intern::AllocateFromAssimpHeap serves as abstract base class. It overrides
|
|
|
|
// new and delete (and their array counterparts) of public API classes (e.g. Logger) to
|
|
|
|
// utilize our DLL heap
|
2009-05-25 17:19:20 +00:00
|
|
|
// .......................................................................................
|
2009-04-24 20:53:24 +00:00
|
|
|
void* AllocateFromAssimpHeap::operator new ( size_t num_bytes) {
|
2009-01-12 22:06:54 +00:00
|
|
|
return ::operator new(num_bytes);
|
|
|
|
}
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
void AllocateFromAssimpHeap::operator delete ( void* data) {
|
2009-01-12 22:06:54 +00:00
|
|
|
return ::operator delete(data);
|
|
|
|
}
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
void* AllocateFromAssimpHeap::operator new[] ( size_t num_bytes) {
|
2009-01-12 22:06:54 +00:00
|
|
|
return ::operator new[](num_bytes);
|
|
|
|
}
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
void AllocateFromAssimpHeap::operator delete[] ( void* data) {
|
2009-01-12 22:06:54 +00:00
|
|
|
return ::operator delete[](data);
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Importer constructor.
|
2009-01-12 22:06:54 +00:00
|
|
|
Importer::Importer()
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
// allocate the pimpl first
|
|
|
|
pimpl = new ImporterPimpl();
|
|
|
|
|
|
|
|
pimpl->mScene = NULL;
|
|
|
|
pimpl->mErrorString = "";
|
|
|
|
|
2009-01-09 21:29:54 +00:00
|
|
|
// Allocate a default IO handler
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mIOHandler = new DefaultIOSystem;
|
|
|
|
pimpl->mIsDefaultHandler = true;
|
|
|
|
pimpl->bExtraVerbose = false; // disable extra verbose mode by default
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2009-01-09 21:29:54 +00:00
|
|
|
// Add an instance of each worker class here
|
2009-08-31 15:51:54 +00:00
|
|
|
// (register_new_importers_here)
|
2009-04-24 20:53:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2010-04-02 04:17:05 +00:00
|
|
|
pimpl->mImporter.reserve(64);
|
2008-05-09 17:24:28 +00:00
|
|
|
#if (!defined AI_BUILD_NO_X_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new XFileImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_OBJ_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new ObjFileImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_3DS_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new Discreet3DSImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_MD3_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new MD3Importer());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_MD2_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new MD2Importer());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_PLY_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new PLYImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_MDL_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new MDLImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_ASE_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new ASEImporter());
|
2008-05-09 17:24:28 +00:00
|
|
|
#endif
|
2008-08-06 23:01:38 +00:00
|
|
|
#if (!defined AI_BUILD_NO_HMP_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new HMPImporter());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-08-06 23:01:38 +00:00
|
|
|
#if (!defined AI_BUILD_NO_SMD_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new SMDImporter());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-08-08 11:53:48 +00:00
|
|
|
#if (!defined AI_BUILD_NO_MDC_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new MDCImporter());
|
2008-08-08 11:53:48 +00:00
|
|
|
#endif
|
2008-08-06 23:01:38 +00:00
|
|
|
#if (!defined AI_BUILD_NO_MD5_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new MD5Importer());
|
2008-08-06 23:01:38 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_STL_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new STLImporter());
|
2008-08-06 23:01:38 +00:00
|
|
|
#endif
|
2008-08-07 22:27:17 +00:00
|
|
|
#if (!defined AI_BUILD_NO_LWO_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new LWOImporter());
|
2008-08-07 22:27:17 +00:00
|
|
|
#endif
|
2008-09-05 13:21:01 +00:00
|
|
|
#if (!defined AI_BUILD_NO_DXF_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new DXFImporter());
|
2008-09-05 13:21:01 +00:00
|
|
|
#endif
|
2008-09-07 16:51:05 +00:00
|
|
|
#if (!defined AI_BUILD_NO_NFF_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new NFFImporter());
|
2008-09-07 16:51:05 +00:00
|
|
|
#endif
|
2008-09-16 16:17:32 +00:00
|
|
|
#if (!defined AI_BUILD_NO_RAW_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new RAWImporter());
|
2008-09-16 16:17:32 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_OFF_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new OFFImporter());
|
2008-09-16 16:17:32 +00:00
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#if (!defined AI_BUILD_NO_AC_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new AC3DImporter());
|
2008-10-13 16:45:48 +00:00
|
|
|
#endif
|
2008-10-15 16:12:18 +00:00
|
|
|
#if (!defined AI_BUILD_NO_BVH_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new BVHLoader());
|
2008-10-15 16:12:18 +00:00
|
|
|
#endif
|
2008-10-24 20:37:54 +00:00
|
|
|
#if (!defined AI_BUILD_NO_IRRMESH_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new IRRMeshImporter());
|
2008-10-24 20:37:54 +00:00
|
|
|
#endif
|
2008-10-27 00:36:26 +00:00
|
|
|
#if (!defined AI_BUILD_NO_IRR_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new IRRImporter());
|
2008-10-27 00:36:26 +00:00
|
|
|
#endif
|
2008-11-01 15:14:00 +00:00
|
|
|
#if (!defined AI_BUILD_NO_Q3D_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new Q3DImporter());
|
2008-11-01 15:14:00 +00:00
|
|
|
#endif
|
2008-11-04 20:41:11 +00:00
|
|
|
#if (!defined AI_BUILD_NO_B3D_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new B3DImporter());
|
2008-11-04 20:41:11 +00:00
|
|
|
#endif
|
2008-11-12 17:07:44 +00:00
|
|
|
#if (!defined AI_BUILD_NO_COLLADA_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new ColladaLoader());
|
2008-11-12 17:07:44 +00:00
|
|
|
#endif
|
2009-01-09 21:29:54 +00:00
|
|
|
#if (!defined AI_BUILD_NO_TERRAGEN_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new TerragenImporter());
|
2009-01-09 21:29:54 +00:00
|
|
|
#endif
|
2009-04-26 15:09:03 +00:00
|
|
|
#if (!defined AI_BUILD_NO_CSM_IMPORTER)
|
|
|
|
pimpl->mImporter.push_back( new CSMImporter());
|
|
|
|
#endif
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#if (!defined AI_BUILD_NO_3D_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new UnrealImporter());
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_LWS_IMPORTER)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back( new LWSImporter());
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#endif
|
2009-09-05 12:04:32 +00:00
|
|
|
#if (!defined AI_BUILD_NO_OGRE_IMPORTER)
|
|
|
|
pimpl->mImporter.push_back( new Ogre::OgreImporter());
|
|
|
|
#endif
|
2010-02-07 00:54:48 +00:00
|
|
|
#if (!defined AI_BUILD_NO_MS3D_IMPORTER)
|
|
|
|
pimpl->mImporter.push_back( new MS3DImporter());
|
|
|
|
#endif
|
2010-04-02 04:17:05 +00:00
|
|
|
#if (!defined AI_BUILD_NO_COB_IMPORTER)
|
|
|
|
pimpl->mImporter.push_back( new COBImporter());
|
|
|
|
#endif
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2008-11-16 21:56:45 +00:00
|
|
|
// Add an instance of each post processing step here in the order
|
2009-01-12 22:06:54 +00:00
|
|
|
// of sequence it is executed. Steps that are added here are not
|
2009-04-24 20:53:24 +00:00
|
|
|
// validated - as RegisterPPStep() does - all dependencies must be given.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
pimpl->mPostProcessingSteps.reserve(25);
|
2009-02-02 20:37:35 +00:00
|
|
|
#if (!defined AI_BUILD_NO_REMOVEVC_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new RemoveVCProcess());
|
2009-02-02 20:37:35 +00:00
|
|
|
#endif
|
2009-02-02 20:29:27 +00:00
|
|
|
#if (!defined AI_BUILD_NO_REMOVE_REDUNDANTMATERIALS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new RemoveRedundantMatsProcess());
|
2009-02-02 20:29:27 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_FINDINSTANCES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FindInstancesProcess());
|
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_OPTIMIZEGRAPH_PROCESS)
|
|
|
|
pimpl->mPostProcessingSteps.push_back( new OptimizeGraphProcess());
|
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_OPTIMIZEMESHES_PROCESS)
|
|
|
|
pimpl->mPostProcessingSteps.push_back( new OptimizeMeshesProcess());
|
2009-02-02 20:29:27 +00:00
|
|
|
#endif
|
2008-10-22 20:06:16 +00:00
|
|
|
#if (!defined AI_BUILD_NO_FINDDEGENERATES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FindDegeneratesProcess());
|
2008-10-22 20:06:16 +00:00
|
|
|
#endif
|
2008-11-16 21:56:45 +00:00
|
|
|
#ifndef AI_BUILD_NO_GENUVCOORDS_PROCESS
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new ComputeUVMappingProcess());
|
2008-11-16 21:56:45 +00:00
|
|
|
#endif
|
|
|
|
#ifndef AI_BUILD_NO_TRANSFORMTEXCOORDS_PROCESS
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new TextureTransformStep());
|
2008-11-16 21:56:45 +00:00
|
|
|
#endif
|
2008-10-19 11:32:33 +00:00
|
|
|
#if (!defined AI_BUILD_NO_PRETRANSFORMVERTICES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new PretransformVertices());
|
2008-10-19 11:32:33 +00:00
|
|
|
#endif
|
2008-06-22 10:09:26 +00:00
|
|
|
#if (!defined AI_BUILD_NO_TRIANGULATE_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new TriangulateProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-09-30 20:20:56 +00:00
|
|
|
#if (!defined AI_BUILD_NO_SORTBYPTYPE_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new SortByPTypeProcess());
|
2008-09-30 20:20:56 +00:00
|
|
|
#endif
|
2008-10-13 16:45:48 +00:00
|
|
|
#if (!defined AI_BUILD_NO_FINDINVALIDDATA_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FindInvalidDataProcess());
|
2008-10-13 16:45:48 +00:00
|
|
|
#endif
|
2008-08-08 11:53:48 +00:00
|
|
|
#if (!defined AI_BUILD_NO_FIXINFACINGNORMALS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FixInfacingNormalsProcess());
|
2008-08-08 11:53:48 +00:00
|
|
|
#endif
|
2008-06-22 10:09:26 +00:00
|
|
|
#if (!defined AI_BUILD_NO_SPLITLARGEMESHES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new SplitLargeMeshesProcess_Triangle());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_GENFACENORMALS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new GenFaceNormalsProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .........................................................................
|
2008-09-27 16:46:05 +00:00
|
|
|
// DON'T change the order of these five!
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new ComputeSpatialSortProcess());
|
2009-05-25 17:19:20 +00:00
|
|
|
// .........................................................................
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2008-06-22 10:09:26 +00:00
|
|
|
#if (!defined AI_BUILD_NO_GENVERTEXNORMALS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new GenVertexNormalsProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_CALCTANGENTS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new CalcTangentsProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_JOINVERTICES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new JoinVerticesProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// .........................................................................
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new DestroySpatialSortProcess());
|
2009-05-25 17:19:20 +00:00
|
|
|
// .........................................................................
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2008-06-22 10:09:26 +00:00
|
|
|
#if (!defined AI_BUILD_NO_SPLITLARGEMESHES_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new SplitLargeMeshesProcess_Vertex());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2009-03-15 00:40:30 +00:00
|
|
|
#if (!defined AI_BUILD_NO_MAKELEFTHANDED_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new MakeLeftHandedProcess());
|
2009-03-15 00:40:30 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_FLIPUVS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FlipUVsProcess());
|
2009-03-15 00:40:30 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_FLIPWINDINGORDER_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new FlipWindingOrderProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
|
|
|
#if (!defined AI_BUILD_NO_LIMITBONEWEIGHTS_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new LimitBoneWeightsProcess());
|
2008-06-22 10:09:26 +00:00
|
|
|
#endif
|
2008-07-22 22:52:16 +00:00
|
|
|
#if (!defined AI_BUILD_NO_IMPROVECACHELOCALITY_PROCESS)
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back( new ImproveCacheLocalityProcess());
|
2008-07-22 22:52:16 +00:00
|
|
|
#endif
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// Allocate a SharedPostProcessInfo object and store pointers to it in all post-process steps in the list.
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPPShared = new SharedPostProcessInfo();
|
2009-05-25 17:19:20 +00:00
|
|
|
for (std::vector<BaseProcess*>::iterator it = pimpl->mPostProcessingSteps.begin();
|
|
|
|
it != pimpl->mPostProcessingSteps.end();
|
|
|
|
++it) {
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
(*it)->SetSharedData(pimpl->mPPShared);
|
2008-09-27 16:46:05 +00:00
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Destructor of Importer
|
2008-05-05 12:36:31 +00:00
|
|
|
Importer::~Importer()
|
|
|
|
{
|
2009-01-12 22:06:54 +00:00
|
|
|
// Delete all import plugins
|
2009-04-24 20:53:24 +00:00
|
|
|
for( unsigned int a = 0; a < pimpl->mImporter.size(); a++)
|
|
|
|
delete pimpl->mImporter[a];
|
2009-01-12 22:06:54 +00:00
|
|
|
|
|
|
|
// Delete all post-processing plug-ins
|
2009-04-24 20:53:24 +00:00
|
|
|
for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++)
|
|
|
|
delete pimpl->mPostProcessingSteps[a];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// Delete the assigned IO handler
|
2009-04-24 20:53:24 +00:00
|
|
|
delete pimpl->mIOHandler;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// Kill imported scene. Destructors should do that recursivly
|
2009-04-24 20:53:24 +00:00
|
|
|
delete pimpl->mScene;
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// Delete shared post-processing data
|
2009-04-24 20:53:24 +00:00
|
|
|
delete pimpl->mPPShared;
|
|
|
|
|
|
|
|
// and finally the pimpl itself
|
|
|
|
delete pimpl;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
|
2008-08-11 17:49:02 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Copy constructor - copies the config of another Importer, not the scene
|
2008-08-11 17:49:02 +00:00
|
|
|
Importer::Importer(const Importer &other)
|
|
|
|
{
|
2009-01-12 22:06:54 +00:00
|
|
|
new(this) Importer();
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
pimpl->mIntProperties = other.pimpl->mIntProperties;
|
|
|
|
pimpl->mFloatProperties = other.pimpl->mFloatProperties;
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mStringProperties = other.pimpl->mStringProperties;
|
2008-08-11 17:49:02 +00:00
|
|
|
}
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Register a custom post-processing step
|
|
|
|
aiReturn Importer::RegisterPPStep(BaseProcess* pImp)
|
|
|
|
{
|
|
|
|
ai_assert(NULL != pImp);
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-05-25 17:19:20 +00:00
|
|
|
|
2010-03-18 17:00:12 +00:00
|
|
|
pimpl->mPostProcessingSteps.push_back(pImp);
|
|
|
|
DefaultLogger::get()->info("Registering custom post-processing step");
|
|
|
|
|
|
|
|
ASSIMP_END_EXCEPTION_REGION(aiReturn);
|
2009-05-25 17:19:20 +00:00
|
|
|
return AI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2008-08-11 17:49:02 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Register a custom loader plugin
|
2008-08-11 17:49:02 +00:00
|
|
|
aiReturn Importer::RegisterLoader(BaseImporter* pImp)
|
|
|
|
{
|
|
|
|
ai_assert(NULL != pImp);
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-04-24 20:53:24 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Check whether we would have two loaders for the same file extension
|
2009-05-25 17:19:20 +00:00
|
|
|
// This is absolutely OK, but we should warn the developer of the new
|
2010-03-02 17:38:01 +00:00
|
|
|
// loader that his code will probably never be called if the first
|
|
|
|
// loader is a bit too lazy in his file checking.
|
2009-04-24 20:53:24 +00:00
|
|
|
// --------------------------------------------------------------------
|
2010-03-02 17:38:01 +00:00
|
|
|
std::set<std::string> st;
|
|
|
|
std::string baked;
|
2008-08-11 17:49:02 +00:00
|
|
|
pImp->GetExtensionList(st);
|
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
for(std::set<std::string>::const_iterator it = st.begin(); it != st.end(); ++it) {
|
|
|
|
|
2008-08-11 17:49:02 +00:00
|
|
|
#ifdef _DEBUG
|
2010-03-02 17:38:01 +00:00
|
|
|
if (IsExtensionSupported(*it)) {
|
|
|
|
DefaultLogger::get()->warn("The file extension " + *it + " is already in use");
|
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
#endif
|
2010-03-02 17:38:01 +00:00
|
|
|
baked += *it;
|
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
|
|
|
// add the loader
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mImporter.push_back(pImp);
|
2010-03-02 17:38:01 +00:00
|
|
|
DefaultLogger::get()->info("Registering custom importer for these file extensions: " + baked);
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(aiReturn);
|
2008-08-11 17:49:02 +00:00
|
|
|
return AI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Unregister a custom loader plugin
|
2008-08-11 17:49:02 +00:00
|
|
|
aiReturn Importer::UnregisterLoader(BaseImporter* pImp)
|
|
|
|
{
|
2010-03-02 17:38:01 +00:00
|
|
|
if(!pImp) {
|
|
|
|
// unregistering a NULL importer is no problem for us ... really!
|
|
|
|
return AI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-04-24 20:53:24 +00:00
|
|
|
std::vector<BaseImporter*>::iterator it = std::find(pimpl->mImporter.begin(),pimpl->mImporter.end(),pImp);
|
|
|
|
if (it != pimpl->mImporter.end()) {
|
|
|
|
pimpl->mImporter.erase(it);
|
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
std::set<std::string> st;
|
2009-04-24 20:53:24 +00:00
|
|
|
pImp->GetExtensionList(st);
|
2010-03-02 17:38:01 +00:00
|
|
|
|
|
|
|
DefaultLogger::get()->info("Unregistering custom importer: ");
|
2009-04-24 20:53:24 +00:00
|
|
|
return AI_SUCCESS;
|
2008-08-11 17:49:02 +00:00
|
|
|
}
|
2009-05-25 17:19:20 +00:00
|
|
|
DefaultLogger::get()->warn("Unable to remove custom importer: I can't find you ...");
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(aiReturn);
|
2009-05-25 17:19:20 +00:00
|
|
|
return AI_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Unregister a custom loader plugin
|
|
|
|
aiReturn Importer::UnregisterPPStep(BaseProcess* pImp)
|
|
|
|
{
|
2010-03-02 17:38:01 +00:00
|
|
|
if(!pImp) {
|
|
|
|
// unregistering a NULL ppstep is no problem for us ... really!
|
|
|
|
return AI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-05-25 17:19:20 +00:00
|
|
|
std::vector<BaseProcess*>::iterator it = std::find(pimpl->mPostProcessingSteps.begin(),pimpl->mPostProcessingSteps.end(),pImp);
|
|
|
|
if (it != pimpl->mPostProcessingSteps.end()) {
|
|
|
|
pimpl->mPostProcessingSteps.erase(it);
|
|
|
|
DefaultLogger::get()->info("Unregistering custom post-processing step");
|
|
|
|
return AI_SUCCESS;
|
|
|
|
}
|
|
|
|
DefaultLogger::get()->warn("Unable to remove custom post-processing step: I can't find you ..");
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(aiReturn);
|
2008-08-11 17:49:02 +00:00
|
|
|
return AI_FAILURE;
|
|
|
|
}
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Supplies a custom IO handler to the importer to open and access files.
|
|
|
|
void Importer::SetIOHandler( IOSystem* pIOHandler)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-01-12 22:06:54 +00:00
|
|
|
// If the new handler is zero, allocate a default IO implementation.
|
2008-06-22 10:09:26 +00:00
|
|
|
if (!pIOHandler)
|
2008-05-09 17:24:28 +00:00
|
|
|
{
|
2009-04-10 21:59:22 +00:00
|
|
|
// Release pointer in the possession of the caller
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mIOHandler = new DefaultIOSystem();
|
|
|
|
pimpl->mIsDefaultHandler = true;
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2009-01-12 22:06:54 +00:00
|
|
|
// Otherwise register the custom handler
|
2009-04-24 20:53:24 +00:00
|
|
|
else if (pimpl->mIOHandler != pIOHandler)
|
2008-05-09 17:24:28 +00:00
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
delete pimpl->mIOHandler;
|
|
|
|
pimpl->mIOHandler = pIOHandler;
|
|
|
|
pimpl->mIsDefaultHandler = false;
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-05-22 22:47:20 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Get the currently set IO handler
|
2008-06-22 10:09:26 +00:00
|
|
|
IOSystem* Importer::GetIOHandler()
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return pimpl->mIOHandler;
|
2008-06-22 10:09:26 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-06-22 10:09:26 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Check whether a custom IO handler is currently set
|
2008-06-22 10:09:26 +00:00
|
|
|
bool Importer::IsDefaultIOHandler()
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return pimpl->mIsDefaultHandler;
|
2008-06-22 10:09:26 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-06-22 10:09:26 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-05-22 22:47:20 +00:00
|
|
|
// Validate post process step flags
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
bool _ValidateFlags(unsigned int pFlags)
|
2008-05-22 22:47:20 +00:00
|
|
|
{
|
2009-05-25 17:19:20 +00:00
|
|
|
if (pFlags & aiProcess_GenSmoothNormals && pFlags & aiProcess_GenNormals) {
|
|
|
|
DefaultLogger::get()->error("#aiProcess_GenSmoothNormals and #aiProcess_GenNormals are incompatible");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (pFlags & aiProcess_OptimizeGraph && pFlags & aiProcess_PreTransformVertices) {
|
|
|
|
DefaultLogger::get()->error("#aiProcess_OptimizeGraph and #aiProcess_PreTransformVertices are incompatible");
|
2008-08-28 17:35:36 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-22 22:47:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Free the current scene
|
|
|
|
void Importer::FreeScene( )
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-04-24 20:53:24 +00:00
|
|
|
delete pimpl->mScene;
|
|
|
|
pimpl->mScene = NULL;
|
|
|
|
|
|
|
|
pimpl->mErrorString = "";
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2009-01-12 22:06:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 21:06:43 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get the current error string, if any
|
2009-04-24 20:53:24 +00:00
|
|
|
const char* Importer::GetErrorString() const
|
2009-01-23 21:06:43 +00:00
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
/* Must remain valid as long as ReadFile() or FreeFile() are not called */
|
|
|
|
return pimpl->mErrorString.c_str();
|
2009-01-23 21:06:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Enable extra-verbose mode
|
|
|
|
void Importer::SetExtraVerbose(bool bDo)
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->bExtraVerbose = bDo;
|
2009-01-23 21:06:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get the current scene
|
|
|
|
const aiScene* Importer::GetScene() const
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return pimpl->mScene;
|
2009-01-23 21:06:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-24 20:53:24 +00:00
|
|
|
// Orphan the current scene and return it.
|
2009-01-23 21:06:43 +00:00
|
|
|
aiScene* Importer::GetOrphanedScene()
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
aiScene* s = pimpl->mScene;
|
2010-03-18 17:00:12 +00:00
|
|
|
|
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mScene = NULL;
|
|
|
|
|
|
|
|
pimpl->mErrorString = ""; /* reset error string */
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(aiScene*);
|
2009-01-23 21:06:43 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Validate post-processing flags
|
|
|
|
bool Importer::ValidateFlags(unsigned int pFlags)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
// run basic checks for mutually exclusive flags
|
2010-03-18 17:00:12 +00:00
|
|
|
if(!_ValidateFlags(pFlags)) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
return false;
|
2010-03-18 17:00:12 +00:00
|
|
|
}
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
// ValidateDS does not anymore occur in the pp list, it plays an awesome extra role ...
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#ifdef AI_BUILD_NO_VALIDATEDS_PROCESS
|
|
|
|
if (pFlags & aiProcess_ValidateDataStructure)
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
pFlags &= ~aiProcess_ValidateDataStructure;
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
// Now iterate through all bits which are set in the flags and check whether we find at least
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
// one pp plugin which handles it.
|
2010-02-06 23:52:41 +00:00
|
|
|
for (unsigned int mask = 1; mask < (1u << (sizeof(unsigned int)*8-1));mask <<= 1) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
|
|
|
if (pFlags & mask) {
|
|
|
|
|
|
|
|
bool have = false;
|
2009-04-24 20:53:24 +00:00
|
|
|
for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
|
|
|
|
if (pimpl->mPostProcessingSteps[a]-> IsActive(mask) ) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
|
|
|
have = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!have)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(bool);
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-21 19:44:48 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
const aiScene* Importer::ReadFileFromMemory( const void* pBuffer,
|
|
|
|
size_t pLength,
|
|
|
|
unsigned int pFlags,
|
|
|
|
const char* pHint /*= ""*/)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-06-21 19:44:48 +00:00
|
|
|
if (!pHint) {
|
|
|
|
pHint = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pBuffer || !pLength || strlen(pHint) > 100) {
|
|
|
|
pimpl->mErrorString = "Invalid parameters passed to ReadFileFromMemory()";
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// prevent deletion of the previous IOHandler
|
|
|
|
IOSystem* io = pimpl->mIOHandler;
|
|
|
|
pimpl->mIOHandler = NULL;
|
|
|
|
|
|
|
|
SetIOHandler(new MemoryIOSystem((const uint8_t*)pBuffer,pLength));
|
|
|
|
|
|
|
|
// read the file and recover the previous IOSystem
|
|
|
|
char fbuff[128];
|
|
|
|
sprintf(fbuff,"%s.%s",AI_MEMORYIO_MAGIC_FILENAME,pHint);
|
|
|
|
|
|
|
|
ReadFile(fbuff,pFlags);
|
|
|
|
SetIOHandler(io);
|
|
|
|
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(const aiScene*);
|
2009-06-21 19:44:48 +00:00
|
|
|
return pimpl->mScene;
|
|
|
|
}
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Reads the given file and returns its contents if successful.
|
2009-01-23 21:06:43 +00:00
|
|
|
const aiScene* Importer::ReadFile( const char* _pFile, unsigned int pFlags)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-01-23 21:06:43 +00:00
|
|
|
const std::string pFile(_pFile);
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
// ----------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Put a large try block around everything to catch all std::exception's
|
2008-10-19 11:32:33 +00:00
|
|
|
// that might be thrown by STL containers or by new().
|
|
|
|
// ImportErrorException's are throw by ourselves and caught elsewhere.
|
2009-04-24 20:53:24 +00:00
|
|
|
//-----------------------------------------------------------------------
|
2009-05-25 17:19:20 +00:00
|
|
|
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#ifdef ASSIMP_CATCH_GLOBAL_EXCEPTIONS
|
2008-10-19 11:32:33 +00:00
|
|
|
try
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#endif // ! ASSIMP_CATCH_GLOBAL_EXCEPTIONS
|
2008-05-23 12:30:52 +00:00
|
|
|
{
|
2009-01-12 22:06:54 +00:00
|
|
|
// Check whether this Importer instance has already loaded
|
2008-10-19 11:32:33 +00:00
|
|
|
// a scene. In this case we need to delete the old one
|
2009-04-24 20:53:24 +00:00
|
|
|
if (pimpl->mScene)
|
2008-10-19 11:32:33 +00:00
|
|
|
{
|
2009-01-12 22:06:54 +00:00
|
|
|
DefaultLogger::get()->debug("Deleting previous scene");
|
|
|
|
FreeScene();
|
2008-10-19 11:32:33 +00:00
|
|
|
}
|
2008-05-23 12:30:52 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// First check if the file is accessable at all
|
2009-04-24 20:53:24 +00:00
|
|
|
if( !pimpl->mIOHandler->Exists( pFile))
|
2008-10-19 11:32:33 +00:00
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mErrorString = "Unable to open file \"" + pFile + "\".";
|
|
|
|
DefaultLogger::get()->error(pimpl->mErrorString);
|
2008-10-19 11:32:33 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// Find an worker class which can handle the file
|
2008-10-19 11:32:33 +00:00
|
|
|
BaseImporter* imp = NULL;
|
2009-04-24 20:53:24 +00:00
|
|
|
for( unsigned int a = 0; a < pimpl->mImporter.size(); a++) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
if( pimpl->mImporter[a]->CanRead( pFile, pimpl->mIOHandler, false)) {
|
|
|
|
imp = pimpl->mImporter[a];
|
2008-10-19 11:32:33 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
if (!imp)
|
2008-10-19 11:32:33 +00:00
|
|
|
{
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
// not so bad yet ... try format auto detection.
|
|
|
|
std::string::size_type s = pFile.find_last_of('.');
|
|
|
|
if (s != std::string::npos) {
|
|
|
|
DefaultLogger::get()->info("File extension now known, trying signature-based detection");
|
2009-04-24 20:53:24 +00:00
|
|
|
for( unsigned int a = 0; a < pimpl->mImporter.size(); a++) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
if( pimpl->mImporter[a]->CanRead( pFile, pimpl->mIOHandler, true)) {
|
|
|
|
imp = pimpl->mImporter[a];
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Put a proper error message if no suitable importer was found
|
2009-06-21 19:44:48 +00:00
|
|
|
if( !imp) {
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mErrorString = "No suitable reader found for the file format of file \"" + pFile + "\".";
|
|
|
|
DefaultLogger::get()->error(pimpl->mErrorString);
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-19 11:32:33 +00:00
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// Dispatch the reading to the worker class for this format
|
2008-10-19 11:32:33 +00:00
|
|
|
DefaultLogger::get()->info("Found a matching importer for this file format");
|
|
|
|
imp->SetupProperties( this );
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mScene = imp->ReadFile( pFile, pimpl->mIOHandler);
|
2008-10-19 11:32:33 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// If successful, apply all active post processing steps to the imported data
|
2009-05-25 17:19:20 +00:00
|
|
|
if( pimpl->mScene) {
|
|
|
|
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#ifndef AI_BUILD_NO_VALIDATEDS_PROCESS
|
2009-05-25 17:19:20 +00:00
|
|
|
// The ValidateDS process is an exception. It is executed first, even before ScenePreprocessor is called.
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
if (pFlags & aiProcess_ValidateDataStructure)
|
|
|
|
{
|
|
|
|
ValidateDSProcess ds;
|
|
|
|
ds.ExecuteOnScene (this);
|
2009-05-25 17:19:20 +00:00
|
|
|
if (!pimpl->mScene) {
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
return NULL;
|
2009-05-25 17:19:20 +00:00
|
|
|
}
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
}
|
|
|
|
#endif // no validation
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// Preprocess the scene and prepare it for post-processing
|
2009-04-24 20:53:24 +00:00
|
|
|
ScenePreprocessor pre(pimpl->mScene);
|
2009-01-12 22:06:54 +00:00
|
|
|
pre.ProcessScene();
|
2008-11-02 16:58:31 +00:00
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// Ensure that the validation process won't be called twice
|
|
|
|
ApplyPostProcessing(pFlags & (~aiProcess_ValidateDataStructure));
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-10-19 11:32:33 +00:00
|
|
|
// if failed, extract the error string
|
2009-05-25 17:19:20 +00:00
|
|
|
else if( !pimpl->mScene) {
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mErrorString = imp->GetErrorText();
|
2009-05-25 17:19:20 +00:00
|
|
|
}
|
2008-10-19 11:32:33 +00:00
|
|
|
|
|
|
|
// clear any data allocated by post-process steps
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mPPShared->Clean();
|
2008-11-26 22:03:14 +00:00
|
|
|
}
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#ifdef ASSIMP_CATCH_GLOBAL_EXCEPTIONS
|
2008-10-19 11:32:33 +00:00
|
|
|
catch (std::exception &e)
|
|
|
|
{
|
2008-11-26 22:03:14 +00:00
|
|
|
#if (defined _MSC_VER) && (defined _CPPRTTI)
|
2008-10-19 11:32:33 +00:00
|
|
|
// if we have RTTI get the full name of the exception that occured
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mErrorString = std::string(typeid( e ).name()) + ": " + e.what();
|
2008-10-19 11:32:33 +00:00
|
|
|
#else
|
2009-04-24 20:53:24 +00:00
|
|
|
pimpl->mErrorString = std::string("std::exception: ") + e.what();
|
2008-10-19 11:32:33 +00:00
|
|
|
#endif
|
|
|
|
|
2009-04-24 20:53:24 +00:00
|
|
|
DefaultLogger::get()->error(pimpl->mErrorString);
|
|
|
|
delete pimpl->mScene; pimpl->mScene = NULL;
|
2008-10-19 11:32:33 +00:00
|
|
|
}
|
General
- Added format auto-detection to most loaders
- Simplified BaseImporter::CanRead() with some utility methods
- improved fast_atof -> no overruns anymore. Fuck you, irrlicht.
- added assimp_cmd tool to allow command line model processing. Mainly adebugging tool for internal purposes, but others might find it useful, too.
- vc8/vc9: revision number is now written to DLL version header
- mkutil: some batch scripts to simplify tagging & building of release versions
- some API cleanup
- fixing some doxygen markup (+now explicit use of @file <filename>)
- Icon for assimp_view and assimp_cmd
3DS
- Normal vectors are not anymore inverted in some cases
- Improved pivot handling
- Improved handling of x-flipped meshes
Collada
- fixed a minor bug (visual_scene element)
LWS
- WIP implementation. No animations yet, some bugs and crashes.
- Animation system remains disabled, WIP code
- many test files for LWS, but most of them test the anim support, which is, read above, currently disabled.
STL
- fixing a log warning which appears for every model
- added binary&ascii test spider, exported from truespace
MD3
- Cleaning up output tags for automatically joined player models.
IRR
- Fixing coordinate system issues.
- Instance handling improved.
- Some of the reported crashes not yet fixed.
PretransformVertices
- Numerous performance improvements.
- Added config option to preserve the hierarchy during the step.
RemoveRedundantMaterials
- Added config option to specify a list of materials which are kept in every case.
UNREAL
- Added support for the old unreal data format (*.a,*.d,*.uc)
- tested only with exports from Milkshape
- more Unreal stuff to come soon
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@356 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2009-03-05 22:32:13 +00:00
|
|
|
#endif // ! ASSIMP_CATCH_GLOBAL_EXCEPTIONS
|
2008-09-27 16:46:05 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// either successful or failure - the pointer expresses it anyways
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(const aiScene*);
|
2009-04-24 20:53:24 +00:00
|
|
|
return pimpl->mScene;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
|
2009-05-25 17:19:20 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Apply post-processing to the currently bound scene
|
|
|
|
const aiScene* Importer::ApplyPostProcessing(unsigned int pFlags)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2009-05-25 17:19:20 +00:00
|
|
|
// Return immediately if no scene is active
|
|
|
|
if (!pimpl->mScene) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no flags are given, return the current scene with no further action
|
|
|
|
if (!pFlags) {
|
|
|
|
return pimpl->mScene;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In debug builds: run basic flag validation
|
|
|
|
ai_assert(_ValidateFlags(pFlags));
|
|
|
|
DefaultLogger::get()->info("Entering post processing pipeline");
|
|
|
|
|
|
|
|
#ifndef AI_BUILD_NO_VALIDATEDS_PROCESS
|
|
|
|
// The ValidateDS process plays an exceptional role. It isn't contained in the global
|
|
|
|
// list of post-processing steps, so we need to call it manually.
|
|
|
|
if (pFlags & aiProcess_ValidateDataStructure)
|
|
|
|
{
|
|
|
|
ValidateDSProcess ds;
|
|
|
|
ds.ExecuteOnScene (this);
|
|
|
|
if (!pimpl->mScene) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // no validation
|
|
|
|
#ifdef _DEBUG
|
|
|
|
if (pimpl->bExtraVerbose)
|
|
|
|
{
|
|
|
|
#ifndef AI_BUILD_NO_VALIDATEDS_PROCESS
|
|
|
|
DefaultLogger::get()->error("Verbose Import is not available due to build settings");
|
|
|
|
#endif // no validation
|
|
|
|
pFlags |= aiProcess_ValidateDataStructure;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (pimpl->bExtraVerbose)
|
|
|
|
DefaultLogger::get()->warn("Not a debug build, ignoring extra verbose setting");
|
|
|
|
#endif // ! DEBUG
|
|
|
|
for( unsigned int a = 0; a < pimpl->mPostProcessingSteps.size(); a++) {
|
|
|
|
|
|
|
|
BaseProcess* process = pimpl->mPostProcessingSteps[a];
|
|
|
|
if( process->IsActive( pFlags)) {
|
|
|
|
|
|
|
|
process->SetupProperties( this );
|
|
|
|
process->ExecuteOnScene ( this );
|
|
|
|
}
|
|
|
|
if( !pimpl->mScene) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
|
|
|
#ifndef AI_BUILD_NO_VALIDATEDS_PROCESS
|
|
|
|
continue;
|
|
|
|
#endif // no validation
|
|
|
|
|
|
|
|
// If the extra verbose mode is active, execute the ValidateDataStructureStep again - after each step
|
|
|
|
if (pimpl->bExtraVerbose) {
|
|
|
|
DefaultLogger::get()->debug("Verbose Import: revalidating data structures");
|
|
|
|
|
|
|
|
ValidateDSProcess ds;
|
|
|
|
ds.ExecuteOnScene (this);
|
|
|
|
if( !pimpl->mScene) {
|
|
|
|
DefaultLogger::get()->error("Verbose Import: failed to revalidate data structures");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // ! DEBUG
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear any data allocated by post-process steps
|
|
|
|
pimpl->mPPShared->Clean();
|
|
|
|
DefaultLogger::get()->info("Leaving post processing pipeline");
|
2010-03-18 17:00:12 +00:00
|
|
|
|
|
|
|
ASSIMP_END_EXCEPTION_REGION(const aiScene*);
|
2009-05-25 17:19:20 +00:00
|
|
|
return pimpl->mScene;
|
|
|
|
}
|
|
|
|
|
2008-05-09 17:24:28 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Helper function to check whether an extension is supported by ASSIMP
|
2009-01-23 21:06:43 +00:00
|
|
|
bool Importer::IsExtensionSupported(const char* szExtension)
|
2008-08-28 17:35:36 +00:00
|
|
|
{
|
|
|
|
return NULL != FindLoader(szExtension);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-04-27 19:58:34 +00:00
|
|
|
// Find a loader plugin for a given file extension
|
2010-03-02 17:38:01 +00:00
|
|
|
BaseImporter* Importer::FindLoader (const char* szExtension)
|
2008-05-09 17:24:28 +00:00
|
|
|
{
|
2010-03-02 17:38:01 +00:00
|
|
|
ai_assert(szExtension);
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2010-03-02 17:38:01 +00:00
|
|
|
|
|
|
|
// skip over wildcard and dot characters at string head --
|
|
|
|
for(;*szExtension == '*' || *szExtension == '.'; ++szExtension);
|
|
|
|
|
|
|
|
std::string ext(szExtension);
|
2010-03-11 16:47:36 +00:00
|
|
|
if (ext.empty())
|
2009-04-27 19:58:34 +00:00
|
|
|
return NULL;
|
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
std::set<std::string> str;
|
2009-04-27 19:58:34 +00:00
|
|
|
for (std::vector<BaseImporter*>::const_iterator i = pimpl->mImporter.begin();i != pimpl->mImporter.end();++i) {
|
2010-03-02 17:38:01 +00:00
|
|
|
str.clear();
|
2009-04-27 19:58:34 +00:00
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
(*i)->GetExtensionList(str);
|
|
|
|
for (std::set<std::string>::const_iterator it = str.begin(); it != str.end(); ++it) {
|
|
|
|
if (ext == *it) {
|
|
|
|
return (*i);
|
|
|
|
}
|
|
|
|
}
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(BaseImporter*);
|
2008-08-28 17:35:36 +00:00
|
|
|
return NULL;
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-05-09 17:24:28 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Helper function to build a list of all file extensions supported by ASSIMP
|
2009-01-23 21:06:43 +00:00
|
|
|
void Importer::GetExtensionList(aiString& szOut)
|
2008-05-09 17:24:28 +00:00
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
2010-03-02 17:38:01 +00:00
|
|
|
std::set<std::string> str;
|
|
|
|
for (std::vector<BaseImporter*>::const_iterator i = pimpl->mImporter.begin();i != pimpl->mImporter.end();++i) {
|
|
|
|
(*i)->GetExtensionList(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::set<std::string>::const_iterator it = str.begin();; ) {
|
|
|
|
szOut.Append("*.");
|
|
|
|
szOut.Append((*it).c_str());
|
2008-05-09 17:24:28 +00:00
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
if (++it == str.end()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
szOut.Append(";");
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2008-05-09 17:24:28 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Set a configuration property
|
2008-08-28 17:35:36 +00:00
|
|
|
void Importer::SetPropertyInteger(const char* szName, int iValue,
|
|
|
|
bool* bWasExisting /*= NULL*/)
|
2008-08-08 11:53:48 +00:00
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
|
|
|
SetGenericProperty<int>(pimpl->mIntProperties, szName,iValue,bWasExisting);
|
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2008-08-28 17:35:36 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2008-08-28 17:35:36 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Set a configuration property
|
2008-08-28 17:35:36 +00:00
|
|
|
void Importer::SetPropertyFloat(const char* szName, float iValue,
|
|
|
|
bool* bWasExisting /*= NULL*/)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
|
|
|
SetGenericProperty<float>(pimpl->mFloatProperties, szName,iValue,bWasExisting);
|
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2008-08-28 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Set a configuration property
|
2008-08-28 17:35:36 +00:00
|
|
|
void Importer::SetPropertyString(const char* szName, const std::string& value,
|
|
|
|
bool* bWasExisting /*= NULL*/)
|
|
|
|
{
|
2010-03-18 17:00:12 +00:00
|
|
|
try {
|
|
|
|
std::cout << "";
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
try {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch(std::exception&) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSIMP_BEGIN_EXCEPTION_REGION();
|
|
|
|
SetGenericProperty<std::string>(pimpl->mStringProperties, szName,value,bWasExisting);
|
|
|
|
ASSIMP_END_EXCEPTION_REGION(void);
|
2008-08-08 11:53:48 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get a configuration property
|
2008-08-28 17:35:36 +00:00
|
|
|
int Importer::GetPropertyInteger(const char* szName,
|
2008-08-08 18:34:14 +00:00
|
|
|
int iErrorReturn /*= 0xffffffff*/) const
|
2008-08-08 11:53:48 +00:00
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return GetGenericProperty<int>(pimpl->mIntProperties,szName,iErrorReturn);
|
2008-08-28 17:35:36 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2008-08-28 17:35:36 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Get a configuration property
|
2008-08-28 17:35:36 +00:00
|
|
|
float Importer::GetPropertyFloat(const char* szName,
|
|
|
|
float iErrorReturn /*= 10e10*/) const
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return GetGenericProperty<float>(pimpl->mFloatProperties,szName,iErrorReturn);
|
2008-08-28 17:35:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Get a configuration property
|
2008-10-31 19:32:00 +00:00
|
|
|
const std::string& Importer::GetPropertyString(const char* szName,
|
2008-08-28 17:35:36 +00:00
|
|
|
const std::string& iErrorReturn /*= ""*/) const
|
|
|
|
{
|
2009-04-24 20:53:24 +00:00
|
|
|
return GetGenericProperty<std::string>(pimpl->mStringProperties,szName,iErrorReturn);
|
2008-08-08 11:53:48 +00:00
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2009-01-12 22:06:54 +00:00
|
|
|
// Get the memory requirements of a single node
|
2008-11-16 21:56:45 +00:00
|
|
|
inline void AddNodeWeight(unsigned int& iScene,const aiNode* pcNode)
|
2008-08-08 11:53:48 +00:00
|
|
|
{
|
|
|
|
iScene += sizeof(aiNode);
|
|
|
|
iScene += sizeof(unsigned int) * pcNode->mNumMeshes;
|
|
|
|
iScene += sizeof(void*) * pcNode->mNumChildren;
|
2010-03-02 17:38:01 +00:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < pcNode->mNumChildren;++i) {
|
2008-08-08 11:53:48 +00:00
|
|
|
AddNodeWeight(iScene,pcNode->mChildren[i]);
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
}
|
2008-08-11 17:49:02 +00:00
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Get the memory requirements of the scene
|
|
|
|
void Importer::GetMemoryRequirements(aiMemoryInfo& in) const
|
|
|
|
{
|
2008-08-13 23:46:46 +00:00
|
|
|
in = aiMemoryInfo();
|
2009-04-24 20:53:24 +00:00
|
|
|
aiScene* mScene = pimpl->mScene;
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2009-01-12 22:06:54 +00:00
|
|
|
// return if we have no scene loaded
|
2009-04-24 20:53:24 +00:00
|
|
|
if (!pimpl->mScene)
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
in.total = sizeof(aiScene);
|
|
|
|
|
|
|
|
// add all meshes
|
|
|
|
for (unsigned int i = 0; i < mScene->mNumMeshes;++i)
|
|
|
|
{
|
|
|
|
in.meshes += sizeof(aiMesh);
|
2010-03-02 17:38:01 +00:00
|
|
|
if (mScene->mMeshes[i]->HasPositions()) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiVector3D) * mScene->mMeshes[i]->mNumVertices;
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
if (mScene->mMeshes[i]->HasNormals()) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiVector3D) * mScene->mMeshes[i]->mNumVertices;
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
if (mScene->mMeshes[i]->HasTangentsAndBitangents()) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiVector3D) * mScene->mMeshes[i]->mNumVertices * 2;
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int a = 0; a < AI_MAX_NUMBER_OF_COLOR_SETS;++a) {
|
|
|
|
if (mScene->mMeshes[i]->HasVertexColors(a)) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiColor4D) * mScene->mMeshes[i]->mNumVertices;
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
else break;
|
|
|
|
}
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int a = 0; a < AI_MAX_NUMBER_OF_TEXTURECOORDS;++a) {
|
|
|
|
if (mScene->mMeshes[i]->HasTextureCoords(a)) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiVector3D) * mScene->mMeshes[i]->mNumVertices;
|
2010-03-02 17:38:01 +00:00
|
|
|
}
|
2008-08-08 11:53:48 +00:00
|
|
|
else break;
|
|
|
|
}
|
2010-03-02 17:38:01 +00:00
|
|
|
if (mScene->mMeshes[i]->HasBones()) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(void*) * mScene->mMeshes[i]->mNumBones;
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int p = 0; p < mScene->mMeshes[i]->mNumBones;++p) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.meshes += sizeof(aiBone);
|
|
|
|
in.meshes += mScene->mMeshes[i]->mBones[p]->mNumWeights * sizeof(aiVertexWeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
in.meshes += (sizeof(aiFace) + 3 * sizeof(unsigned int))*mScene->mMeshes[i]->mNumFaces;
|
|
|
|
}
|
|
|
|
in.total += in.meshes;
|
|
|
|
|
|
|
|
// add all embedded textures
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int i = 0; i < mScene->mNumTextures;++i) {
|
2008-08-08 11:53:48 +00:00
|
|
|
const aiTexture* pc = mScene->mTextures[i];
|
|
|
|
in.textures += sizeof(aiTexture);
|
2010-03-02 17:38:01 +00:00
|
|
|
if (pc->mHeight) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.textures += 4 * pc->mHeight * pc->mWidth;
|
|
|
|
}
|
|
|
|
else in.textures += pc->mWidth;
|
|
|
|
}
|
|
|
|
in.total += in.textures;
|
|
|
|
|
|
|
|
// add all animations
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int i = 0; i < mScene->mNumAnimations;++i) {
|
2008-08-08 11:53:48 +00:00
|
|
|
const aiAnimation* pc = mScene->mAnimations[i];
|
|
|
|
in.animations += sizeof(aiAnimation);
|
|
|
|
|
|
|
|
// add all bone anims
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int a = 0; a < pc->mNumChannels; ++a) {
|
2008-09-30 13:05:48 +00:00
|
|
|
const aiNodeAnim* pc2 = pc->mChannels[i];
|
|
|
|
in.animations += sizeof(aiNodeAnim);
|
2008-08-08 11:53:48 +00:00
|
|
|
in.animations += pc2->mNumPositionKeys * sizeof(aiVectorKey);
|
|
|
|
in.animations += pc2->mNumScalingKeys * sizeof(aiVectorKey);
|
|
|
|
in.animations += pc2->mNumRotationKeys * sizeof(aiQuatKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
in.total += in.animations;
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// add all cameras and all lights
|
|
|
|
in.total += in.cameras = sizeof(aiCamera) * mScene->mNumCameras;
|
|
|
|
in.total += in.lights = sizeof(aiLight) * mScene->mNumLights;
|
|
|
|
|
2008-08-08 11:53:48 +00:00
|
|
|
// add all nodes
|
|
|
|
AddNodeWeight(in.nodes,mScene->mRootNode);
|
|
|
|
in.total += in.nodes;
|
|
|
|
|
|
|
|
// add all materials
|
2010-03-02 17:38:01 +00:00
|
|
|
for (unsigned int i = 0; i < mScene->mNumMaterials;++i) {
|
2008-08-08 11:53:48 +00:00
|
|
|
const aiMaterial* pc = mScene->mMaterials[i];
|
|
|
|
in.materials += sizeof(aiMaterial);
|
|
|
|
in.materials += pc->mNumAllocated * sizeof(void*);
|
2010-03-02 17:38:01 +00:00
|
|
|
|
|
|
|
for (unsigned int a = 0; a < pc->mNumProperties;++a) {
|
2008-08-08 11:53:48 +00:00
|
|
|
in.materials += pc->mProperties[a]->mDataLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
in.total += in.materials;
|
|
|
|
}
|
2008-05-09 17:24:28 +00:00
|
|
|
|