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
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2010-04-10 15:30:22 +00:00
|
|
|
Copyright (c) 2006-2010, ASSIMP Development Team
|
2008-05-09 17:24:28 +00:00
|
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use of this software in source and binary forms,
|
|
|
|
with or without modification, are permitted provided that the following
|
|
|
|
conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the ASSIMP team, nor the names of its
|
|
|
|
contributors may be used to endorse or promote products
|
|
|
|
derived from this software without specific prior
|
|
|
|
written permission of the ASSIMP 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-01-13 18:58:07 +00:00
|
|
|
/** @file aiAnim.h
|
|
|
|
* @brief Defines the data structures in which the imported animations
|
|
|
|
* are returned.
|
|
|
|
*/
|
2008-05-05 12:36:31 +00:00
|
|
|
#ifndef AI_ANIM_H_INC
|
|
|
|
#define AI_ANIM_H_INC
|
|
|
|
|
|
|
|
#include "aiTypes.h"
|
|
|
|
#include "aiQuaternion.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2008-05-05 12:36:31 +00:00
|
|
|
/** A time-value pair specifying a certain 3D vector for the given time. */
|
|
|
|
struct aiVectorKey
|
|
|
|
{
|
2010-05-10 18:05:52 +00:00
|
|
|
/** The time of this key */
|
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
|
|
|
double mTime;
|
2010-05-10 18:05:52 +00:00
|
|
|
|
|
|
|
/** The value of this key */
|
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
|
|
|
C_STRUCT aiVector3D mValue;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
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
|
|
|
//! Default constructor
|
|
|
|
aiVectorKey(){}
|
2008-10-31 19:32:00 +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
|
|
|
//! Construction from a given time and key value
|
|
|
|
aiVectorKey(double time, const aiVector3D& value)
|
|
|
|
: mTime (time)
|
|
|
|
, mValue (value)
|
|
|
|
{}
|
2008-11-02 16:58: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
|
|
|
typedef aiVector3D elem_type;
|
2008-11-02 16:58:31 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// Comparison operators. For use with std::find();
|
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 operator == (const aiVectorKey& o) const {
|
|
|
|
return o.mValue == this->mValue;
|
|
|
|
}
|
|
|
|
bool operator != (const aiVectorKey& o) const {
|
|
|
|
return o.mValue != this->mValue;
|
|
|
|
}
|
2008-11-30 22:27:20 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// Relational operators. For use with std::sort();
|
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 operator < (const aiVectorKey& o) const {
|
|
|
|
return mTime < o.mTime;
|
|
|
|
}
|
|
|
|
bool operator > (const aiVectorKey& o) const {
|
|
|
|
return mTime > o.mTime;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
#endif
|
2008-05-05 12:36:31 +00:00
|
|
|
};
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2010-05-10 18:05:52 +00:00
|
|
|
/** A time-value pair specifying a rotation for the given time.
|
|
|
|
* Rotations are expressed with quaternions. */
|
2008-05-05 12:36:31 +00:00
|
|
|
struct aiQuatKey
|
|
|
|
{
|
2010-05-10 18:05:52 +00:00
|
|
|
/** The time of this key */
|
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
|
|
|
double mTime;
|
2010-05-10 18:05:52 +00:00
|
|
|
|
|
|
|
/** The value of this key */
|
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
|
|
|
C_STRUCT aiQuaternion mValue;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-05-10 18:05:52 +00:00
|
|
|
aiQuatKey(){
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
/** Construction from a given time and key value */
|
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
|
|
|
aiQuatKey(double time, const aiQuaternion& value)
|
|
|
|
: mTime (time)
|
|
|
|
, mValue (value)
|
|
|
|
{}
|
2008-11-02 16:58: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
|
|
|
typedef aiQuaternion elem_type;
|
2008-11-02 16:58:31 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// Comparison operators. For use with std::find();
|
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 operator == (const aiQuatKey& o) const {
|
|
|
|
return o.mValue == this->mValue;
|
|
|
|
}
|
|
|
|
bool operator != (const aiQuatKey& o) const {
|
|
|
|
return o.mValue != this->mValue;
|
|
|
|
}
|
2008-11-02 16:58:31 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// Relational operators. For use with std::sort();
|
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 operator < (const aiQuatKey& o) const {
|
|
|
|
return mTime < o.mTime;
|
|
|
|
}
|
|
|
|
bool operator > (const aiQuatKey& o) const {
|
|
|
|
return mTime > o.mTime;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Binds a anim mesh to a specific point in time. */
|
|
|
|
struct aiMeshKey
|
|
|
|
{
|
|
|
|
/** The time of this key */
|
|
|
|
double mTime;
|
|
|
|
|
|
|
|
/** Index into the aiMesh::mAnimMeshes array of the
|
|
|
|
* mesh coresponding to the #aiMeshAnim hosting this
|
|
|
|
* key frame. The referenced anim mesh is evaluated
|
|
|
|
* according to the rules defined in the docs for #aiAnimMesh.*/
|
|
|
|
unsigned int mValue;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
aiMeshKey() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Construction from a given time and key value */
|
|
|
|
aiMeshKey(double time, const unsigned int value)
|
|
|
|
: mTime (time)
|
|
|
|
, mValue (value)
|
|
|
|
{}
|
|
|
|
|
|
|
|
typedef unsigned int elem_type;
|
|
|
|
|
|
|
|
// Comparison operators. For use with std::find();
|
|
|
|
bool operator == (const aiMeshKey& o) const {
|
|
|
|
return o.mValue == this->mValue;
|
|
|
|
}
|
|
|
|
bool operator != (const aiMeshKey& o) const {
|
|
|
|
return o.mValue != this->mValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relational operators. For use with std::sort();
|
|
|
|
bool operator < (const aiMeshKey& o) const {
|
|
|
|
return mTime < o.mTime;
|
|
|
|
}
|
|
|
|
bool operator > (const aiMeshKey& o) const {
|
|
|
|
return mTime > o.mTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Defines how an animation channel behaves outside the defined time
|
|
|
|
* range. This corresponds to aiNodeAnim::mPreState and
|
2009-08-31 15:51:54 +00:00
|
|
|
* aiNodeAnim::mPostState.*/
|
2008-10-31 19:32:00 +00:00
|
|
|
enum aiAnimBehaviour
|
|
|
|
{
|
2009-08-31 15:51:54 +00:00
|
|
|
/** The value from the default node transformation is taken*/
|
2008-10-31 19:32:00 +00:00
|
|
|
aiAnimBehaviour_DEFAULT = 0x0,
|
|
|
|
|
2009-08-31 15:51:54 +00:00
|
|
|
/** The nearest key value is used without interpolation */
|
2008-10-31 19:32:00 +00:00
|
|
|
aiAnimBehaviour_CONSTANT = 0x1,
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
/** The value of the nearest two keys is linearly
|
2009-08-31 15:51:54 +00:00
|
|
|
* extrapolated for the current time value.*/
|
2008-10-31 19:32:00 +00:00
|
|
|
aiAnimBehaviour_LINEAR = 0x2,
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
/** The animation is repeated.
|
|
|
|
*
|
|
|
|
* If the animation key go from n to m and the current
|
2009-08-31 15:51:54 +00:00
|
|
|
* time is t, use the value at (t-n) % (|m-n|).*/
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
aiAnimBehaviour_REPEAT = 0x3,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** This value is not used, it is just here to force the
|
2009-08-31 15:51:54 +00:00
|
|
|
* the compiler to map this enum to a 32 Bit integer */
|
2010-02-15 18:28:32 +00:00
|
|
|
#ifndef SWIG
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
_aiAnimBehaviour_Force32Bit = 0x8fffffff
|
2010-02-15 18:28:32 +00:00
|
|
|
#endif
|
2008-05-05 12:36:31 +00:00
|
|
|
};
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
/** Describes the animation of a single node. The name specifies the
|
|
|
|
* bone/node which is affected by this animation channel. The keyframes
|
|
|
|
* are given in three separate series of values, one each for position,
|
|
|
|
* rotation and scaling. The transformation matrix computed from these
|
|
|
|
* values replaces the node's original transformation matrix at a
|
2010-03-19 20:26:43 +00:00
|
|
|
* specific time.
|
|
|
|
* This means all keys are absolute and not relative to the bone default pose.
|
|
|
|
* The order in which the transformations are applied is
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
* - as usual - scaling, rotation, translation.
|
|
|
|
*
|
|
|
|
* @note All keys are returned in their correct, chronological order.
|
|
|
|
* Duplicate keys don't pass the validation step. Most likely there
|
2010-05-10 18:05:52 +00:00
|
|
|
* will be no negative time values, but they are not forbidden also ( so
|
|
|
|
* implementations need to cope with them! ) */
|
2008-09-30 13:05:48 +00:00
|
|
|
struct aiNodeAnim
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
/** The name of the node affected by this animation. The node
|
2009-08-31 15:51:54 +00:00
|
|
|
* must exist and it must be unique.*/
|
2008-09-30 13:05:48 +00:00
|
|
|
C_STRUCT aiString mNodeName;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
/** The number of position keys */
|
|
|
|
unsigned int mNumPositionKeys;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
/** The position keys of this animation channel. Positions are
|
|
|
|
* specified as 3D vector. The array is mNumPositionKeys in size.
|
|
|
|
*
|
2008-11-02 16:58:31 +00:00
|
|
|
* If there are position keys, there will also be at least one
|
2009-08-31 15:51:54 +00:00
|
|
|
* scaling and one rotation key.*/
|
2008-05-09 17:24:28 +00:00
|
|
|
C_STRUCT aiVectorKey* mPositionKeys;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
/** The number of rotation keys */
|
|
|
|
unsigned int mNumRotationKeys;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
/** The rotation keys of this animation channel. Rotations are
|
|
|
|
* given as quaternions, which are 4D vectors. The array is
|
|
|
|
* mNumRotationKeys in size.
|
|
|
|
*
|
2008-11-02 16:58:31 +00:00
|
|
|
* If there are rotation keys, there will also be at least one
|
2009-08-31 15:51:54 +00:00
|
|
|
* scaling and one position key. */
|
2008-05-09 17:24:28 +00:00
|
|
|
C_STRUCT aiQuatKey* mRotationKeys;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
/** The number of scaling keys */
|
|
|
|
unsigned int mNumScalingKeys;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
/** The scaling keys of this animation channel. Scalings are
|
|
|
|
* specified as 3D vector. The array is mNumScalingKeys in size.
|
|
|
|
*
|
2008-11-02 16:58:31 +00:00
|
|
|
* If there are scaling keys, there will also be at least one
|
2009-08-31 15:51:54 +00:00
|
|
|
* position and one rotation key.*/
|
2008-05-09 17:24:28 +00:00
|
|
|
C_STRUCT aiVectorKey* mScalingKeys;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
/** Defines how the animation behaves before the first
|
|
|
|
* key is encountered.
|
|
|
|
*
|
|
|
|
* The default value is aiAnimBehaviour_DEFAULT (the original
|
2009-08-31 15:51:54 +00:00
|
|
|
* transformation matrix of the affected node is used).*/
|
2009-01-12 22:06:54 +00:00
|
|
|
C_ENUM aiAnimBehaviour mPreState;
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
|
|
|
|
/** Defines how the animation behaves after the last
|
2009-01-13 18:58:07 +00:00
|
|
|
* key was processed.
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
*
|
|
|
|
* The default value is aiAnimBehaviour_DEFAULT (the original
|
2009-08-31 15:51:54 +00:00
|
|
|
* transformation matrix of the affected node is taken).*/
|
2009-01-12 22:06:54 +00:00
|
|
|
C_ENUM aiAnimBehaviour mPostState;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
#ifdef __cplusplus
|
2008-09-30 13:05:48 +00:00
|
|
|
aiNodeAnim()
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
mNumPositionKeys = 0; mPositionKeys = NULL;
|
2009-02-06 22:43:08 +00:00
|
|
|
mNumRotationKeys = 0; mRotationKeys = NULL;
|
|
|
|
mNumScalingKeys = 0; mScalingKeys = NULL;
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
|
|
|
|
mPreState = mPostState = aiAnimBehaviour_DEFAULT;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
|
2008-09-30 13:05:48 +00:00
|
|
|
~aiNodeAnim()
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-04 17:21:08 +00:00
|
|
|
delete [] mPositionKeys;
|
|
|
|
delete [] mRotationKeys;
|
|
|
|
delete [] mScalingKeys;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
};
|
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Describes vertex-based animations for a single mesh or a group of
|
|
|
|
* meshes. Meshes carry the animation data for each frame in their
|
|
|
|
* aiMesh::mAnimMeshes array. The purpose of aiMeshAnim is to
|
|
|
|
* define keyframes linking each mesh attachment to a particular
|
|
|
|
* point in time. */
|
|
|
|
struct aiMeshAnim
|
|
|
|
{
|
|
|
|
/** Name of the mesh to be animated. An empty string is not allowed,
|
|
|
|
* animated meshes need to be named (not necessarily uniquely,
|
|
|
|
* the name can basically serve as wildcard to select a group
|
|
|
|
* of meshes with similar animation setup)*/
|
|
|
|
C_STRUCT aiString mName;
|
|
|
|
|
|
|
|
/** Size of the #mKeys array. Must be 1, at least. */
|
|
|
|
unsigned int mNumKeys;
|
|
|
|
|
|
|
|
/** Key frames of the animation. May not be NULL. */
|
|
|
|
C_STRUCT aiMeshKey* mKeys;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
aiMeshAnim()
|
|
|
|
: mNumKeys()
|
|
|
|
, mKeys()
|
|
|
|
{}
|
|
|
|
|
|
|
|
~aiMeshAnim()
|
|
|
|
{
|
|
|
|
delete[] mKeys;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
ASE: Added WIP support for *SMOOTHSKINMESH elements in ASE/ASC files. Fixes in the ASE loader. Fixed animation parsing. Temporary implementation of target lights and cameras, including animations.
3DS: Fixed transformation problems (Pivot points), added WIP animation support. No target animation yet (cameras, spot lights). Not yet fully tested, but static models that worked before should still work now, except all look correct now :-) (some problems with very large models remaining)
Further work on the IRR and IRRMESH loaders. IRR still WIP, IRRMESH more stable now.
Work on the LWo loader. Added support for the "one-layer-only" mode. Hierarchy bug still unfixed, UV coords bug still unfixed.
Further work on the FindInvalidDataprocess. Improved validation for normals, no false positives anymore.
Further work on the MDR loader, still WIP.
Moved DeterminePType-Step to ScenePreprocessor.
aiAnimation::mDuration is optional now, ScenePreprocessor computes it automatically if set to -1.
Fixes in the SMD loader. Still crashes on some files.
Updated animation documentation.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@236 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2008-11-09 23:17:19 +00:00
|
|
|
// ---------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
/** An animation consists of keyframe data for a number of nodes. For
|
2009-08-31 15:51:54 +00:00
|
|
|
* each node affected by the animation a separate series of data is given.*/
|
2008-05-05 12:36:31 +00:00
|
|
|
struct aiAnimation
|
|
|
|
{
|
2009-01-13 18:58:07 +00:00
|
|
|
/** The name of the animation. If the modeling package this data was
|
2008-10-31 19:32:00 +00:00
|
|
|
* exported from does support only a single animation channel, this
|
2009-08-31 15:51:54 +00:00
|
|
|
* name is usually empty (length is zero). */
|
2008-05-09 17:24:28 +00:00
|
|
|
C_STRUCT aiString mName;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2009-08-31 15:51:54 +00:00
|
|
|
/** Duration of the animation in ticks. */
|
2008-05-05 12:36:31 +00:00
|
|
|
double mDuration;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2009-08-31 15:51:54 +00:00
|
|
|
/** Ticks per second. 0 if not specified in the imported file */
|
2008-05-05 12:36:31 +00:00
|
|
|
double mTicksPerSecond;
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
/** The number of bone animation channels. Each channel affects
|
2009-08-31 15:51:54 +00:00
|
|
|
* a single node. */
|
2008-09-30 13:05:48 +00:00
|
|
|
unsigned int mNumChannels;
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
/** The node animation channels. Each channel affects a single node.
|
2009-08-31 15:51:54 +00:00
|
|
|
* The array is mNumChannels in size. */
|
2008-09-30 13:05:48 +00:00
|
|
|
C_STRUCT aiNodeAnim** mChannels;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
|
|
|
|
/** The number of mesh animation channels. Each channel affects
|
|
|
|
* a single mesh and defines vertex-based animation. */
|
|
|
|
unsigned int mNumMeshChannels;
|
|
|
|
|
|
|
|
/** The mesh animation channels. Each channel affects a single mesh.
|
|
|
|
* The array is mNumMeshChannels in size. */
|
|
|
|
C_STRUCT aiMeshAnim** mMeshChannels;
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
aiAnimation()
|
2010-05-10 18:05:52 +00:00
|
|
|
: mDuration(-1.)
|
|
|
|
, mTicksPerSecond()
|
|
|
|
, mNumChannels()
|
|
|
|
, mChannels()
|
|
|
|
, mNumMeshChannels()
|
|
|
|
, mMeshChannels()
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~aiAnimation()
|
|
|
|
{
|
2008-11-16 14:39:54 +00:00
|
|
|
// DO NOT REMOVE THIS ADDITIONAL CHECK
|
2010-05-10 18:05:52 +00:00
|
|
|
if (mNumChannels && mChannels) {
|
|
|
|
for( unsigned int a = 0; a < mNumChannels; a++) {
|
2008-09-30 13:05:48 +00:00
|
|
|
delete mChannels[a];
|
2010-05-10 18:05:52 +00:00
|
|
|
}
|
2008-11-04 17:21:08 +00:00
|
|
|
|
|
|
|
delete [] mChannels;
|
2008-11-16 14:39:54 +00:00
|
|
|
}
|
2010-05-10 18:05:52 +00:00
|
|
|
if (mNumMeshChannels && mMeshChannels) {
|
|
|
|
for( unsigned int a = 0; a < mNumMeshChannels; a++) {
|
|
|
|
delete mMeshChannels[a];
|
|
|
|
}
|
|
|
|
|
|
|
|
delete [] mMeshChannels;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
|
2009-02-06 22:43:08 +00:00
|
|
|
|
|
|
|
// some C++ utilities for inter- and extrapolation
|
|
|
|
namespace Assimp {
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2009-08-31 15:51:54 +00:00
|
|
|
/** @brief CPP-API: Utility class to simplify interpolations of various data types.
|
2009-02-06 22:43:08 +00:00
|
|
|
*
|
|
|
|
* The type of interpolation is choosen automatically depending on the
|
2009-08-31 15:51:54 +00:00
|
|
|
* types of the arguments. */
|
2009-02-06 22:43:08 +00:00
|
|
|
template <typename T>
|
|
|
|
struct Interpolator
|
|
|
|
{
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
/** @brief Get the result of the interpolation between a,b.
|
|
|
|
*
|
|
|
|
* The interpolation algorithm depends on the type of the operands.
|
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
|
|
|
* aiQuaternion's and aiQuatKey's SLERP, the rest does a simple
|
2009-08-31 15:51:54 +00:00
|
|
|
* linear interpolation. */
|
2009-02-06 22:43:08 +00:00
|
|
|
void operator () (T& out,const T& a, const T& b, float d) const {
|
|
|
|
out = a + (b-a)*d;
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <T>
|
|
|
|
|
2009-02-11 20:56:05 +00:00
|
|
|
//! @cond Never
|
2009-02-06 22:43:08 +00:00
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Interpolator <aiQuaternion> {
|
|
|
|
void operator () (aiQuaternion& out,const aiQuaternion& a,
|
|
|
|
const aiQuaternion& b, float d) const
|
|
|
|
{
|
|
|
|
aiQuaternion::Interpolate(out,a,b,d);
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <aiQuaternion>
|
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
template <>
|
|
|
|
struct Interpolator <unsigned int> {
|
|
|
|
void operator () (unsigned int& out,unsigned int a,
|
|
|
|
unsigned int b, float d) const
|
|
|
|
{
|
|
|
|
out = d>0.5f ? b : a;
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <aiQuaternion>
|
|
|
|
|
2009-02-06 22:43:08 +00:00
|
|
|
template <>
|
|
|
|
struct Interpolator <aiVectorKey> {
|
|
|
|
void operator () (aiVector3D& out,const aiVectorKey& a,
|
|
|
|
const aiVectorKey& b, float d) const
|
|
|
|
{
|
|
|
|
Interpolator<aiVector3D> ipl;
|
|
|
|
ipl(out,a.mValue,b.mValue,d);
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <aiVectorKey>
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct Interpolator <aiQuatKey> {
|
|
|
|
void operator () (aiQuaternion& out, const aiQuatKey a,
|
|
|
|
const aiQuatKey& b, float d) const
|
|
|
|
{
|
|
|
|
Interpolator<aiQuaternion> ipl;
|
|
|
|
ipl(out,a.mValue,b.mValue,d);
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <aiQuatKey>
|
|
|
|
|
2010-05-10 18:05:52 +00:00
|
|
|
template <>
|
|
|
|
struct Interpolator <aiMeshKey> {
|
|
|
|
void operator () (unsigned int& out, const aiMeshKey a,
|
|
|
|
const aiMeshKey& b, float d) const
|
|
|
|
{
|
|
|
|
Interpolator<unsigned int> ipl;
|
|
|
|
ipl(out,a.mValue,b.mValue,d);
|
|
|
|
}
|
|
|
|
}; // ! Interpolator <aiQuatKey>
|
|
|
|
|
2009-02-11 20:56:05 +00:00
|
|
|
//! @endcond
|
2009-02-06 22:43:08 +00:00
|
|
|
} // ! end namespace Assimp
|
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-02-06 22:43:08 +00:00
|
|
|
#endif // __cplusplus
|
2008-05-05 12:36:31 +00:00
|
|
|
#endif // AI_ANIM_H_INC
|