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.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
/** @file Implementation of the 3ds importer class */
|
2008-06-22 10:09:26 +00:00
|
|
|
|
2008-10-13 16:45:48 +00:00
|
|
|
|
|
|
|
#include "AssimpPCH.h"
|
|
|
|
|
2008-06-22 10:09:26 +00:00
|
|
|
// internal headers
|
2008-05-05 12:36:31 +00:00
|
|
|
#include "3DSLoader.h"
|
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
|
|
|
#include "TargetAnimation.h"
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
using namespace Assimp;
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Setup final material indices, generae a default material if necessary
|
|
|
|
void Discreet3DSImporter::ReplaceDefaultMaterial()
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
// *******************************************************************
|
2008-05-05 12:36:31 +00:00
|
|
|
// try to find an existing material that matches the
|
|
|
|
// typical default material setting:
|
|
|
|
// - no textures
|
|
|
|
// - diffuse color (in grey!)
|
|
|
|
// NOTE: This is here to workaround the fact that some
|
|
|
|
// exporters are writing a default material, too.
|
2008-10-31 19:32:00 +00:00
|
|
|
// *******************************************************************
|
|
|
|
unsigned int idx = 0xcdcdcdcd;
|
|
|
|
for (unsigned int i = 0; i < mScene->mMaterials.size();++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
std::string s = mScene->mMaterials[i].mName;
|
|
|
|
for (std::string::iterator it = s.begin(); it != s.end(); ++it)
|
|
|
|
*it = ::tolower(*it);
|
|
|
|
|
|
|
|
if (std::string::npos == s.find("default"))continue;
|
|
|
|
|
|
|
|
if (mScene->mMaterials[i].mDiffuse.r !=
|
|
|
|
mScene->mMaterials[i].mDiffuse.g ||
|
|
|
|
mScene->mMaterials[i].mDiffuse.r !=
|
|
|
|
mScene->mMaterials[i].mDiffuse.b)continue;
|
|
|
|
|
|
|
|
if (mScene->mMaterials[i].sTexDiffuse.mMapName.length() != 0 ||
|
|
|
|
mScene->mMaterials[i].sTexBump.mMapName.length() != 0 ||
|
|
|
|
mScene->mMaterials[i].sTexOpacity.mMapName.length() != 0 ||
|
|
|
|
mScene->mMaterials[i].sTexEmissive.mMapName.length() != 0 ||
|
|
|
|
mScene->mMaterials[i].sTexSpecular.mMapName.length() != 0 ||
|
|
|
|
mScene->mMaterials[i].sTexShininess.mMapName.length() != 0 )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
idx = i;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
if (0xcdcdcdcd == idx)idx = (unsigned int)mScene->mMaterials.size();
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
// now iterate through all meshes and through all faces and
|
|
|
|
// find all faces that are using the default material
|
2008-10-31 19:32:00 +00:00
|
|
|
unsigned int cnt = 0;
|
|
|
|
for (std::vector<D3DS::Mesh>::iterator
|
|
|
|
i = mScene->mMeshes.begin();
|
|
|
|
i != mScene->mMeshes.end();++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
for (std::vector<unsigned int>::iterator
|
|
|
|
a = (*i).mFaceMaterials.begin();
|
|
|
|
a != (*i).mFaceMaterials.end();++a)
|
|
|
|
{
|
|
|
|
// NOTE: The additional check seems to be necessary,
|
|
|
|
// some exporters seem to generate invalid data here
|
2008-05-25 22:29:05 +00:00
|
|
|
if (0xcdcdcdcd == (*a))
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
(*a) = idx;
|
|
|
|
++cnt;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
else if ( (*a) >= mScene->mMaterials.size())
|
2008-05-25 22:29:05 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
(*a) = idx;
|
2008-08-09 22:39:57 +00:00
|
|
|
DefaultLogger::get()->warn("Material index overflow in 3DS file. Using default material");
|
2008-10-31 19:32:00 +00:00
|
|
|
++cnt;
|
2008-05-25 22:29:05 +00:00
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
if (cnt && idx == mScene->mMaterials.size())
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
// We need to create our own default material
|
|
|
|
D3DS::Material sMat;
|
2008-05-05 12:36:31 +00:00
|
|
|
sMat.mDiffuse = aiColor3D(0.3f,0.3f,0.3f);
|
|
|
|
sMat.mName = "%%%DEFAULT";
|
2008-10-31 19:32:00 +00:00
|
|
|
mScene->mMaterials.push_back(sMat);
|
|
|
|
|
|
|
|
DefaultLogger::get()->info("3DS: Generating default material");
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Check whether all indices are valid. Otherwise we'd crash before the validation step was reached
|
|
|
|
void Discreet3DSImporter::CheckIndices(D3DS::Mesh& sMesh)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
for (std::vector< D3DS::Face >::iterator
|
2008-08-28 17:35:36 +00:00
|
|
|
i = sMesh.mFaces.begin();
|
|
|
|
i != sMesh.mFaces.end();++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
// check whether all indices are in range
|
2008-08-28 17:35:36 +00:00
|
|
|
for (unsigned int a = 0; a < 3;++a)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-08-28 17:35:36 +00:00
|
|
|
if ((*i).mIndices[a] >= sMesh.mPositions.size())
|
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
DefaultLogger::get()->warn("3DS: Vertex index overflow)");
|
2008-08-28 17:35:36 +00:00
|
|
|
(*i).mIndices[a] = (uint32_t)sMesh.mPositions.size()-1;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
if ( !sMesh.mTexCoords.empty() && (*i).mIndices[a] >= sMesh.mTexCoords.size())
|
|
|
|
{
|
|
|
|
DefaultLogger::get()->warn("3DS: Texture coordinate index overflow)");
|
|
|
|
(*i).mIndices[a] = (uint32_t)sMesh.mTexCoords.size()-1;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Generate out unique verbose format representation
|
|
|
|
void Discreet3DSImporter::MakeUnique(D3DS::Mesh& sMesh)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
// Allocate output storage
|
|
|
|
std::vector<aiVector3D> vNew (sMesh.mFaces.size() * 3);
|
2008-11-16 21:56:45 +00:00
|
|
|
std::vector<aiVector3D> vNew2;
|
|
|
|
if (sMesh.mTexCoords.size())
|
|
|
|
vNew2.resize(sMesh.mFaces.size() * 3);
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
for (unsigned int i = 0, base = 0; i < sMesh.mFaces.size();++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
D3DS::Face& face = sMesh.mFaces[i];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Positions
|
|
|
|
for (unsigned int a = 0; a < 3;++a,++base)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
vNew[base] = sMesh.mPositions[face.mIndices[a]];
|
|
|
|
if (sMesh.mTexCoords.size())
|
|
|
|
vNew2[base] = sMesh.mTexCoords[face.mIndices[a]];
|
2008-08-09 22:39:57 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
face.mIndices[a] = base;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
sMesh.mPositions = vNew;
|
|
|
|
sMesh.mTexCoords = vNew2;
|
2008-05-05 12:36:31 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void CopyTexture(MaterialHelper& mat, D3DS::Texture& texture, aiTextureType type)
|
|
|
|
{
|
|
|
|
// Setup the texture name
|
|
|
|
aiString tex;
|
|
|
|
tex.Set( texture.mMapName);
|
|
|
|
mat.AddProperty( &tex, AI_MATKEY_TEXTURE(type,0));
|
|
|
|
|
|
|
|
// Setup the texture blend factor
|
|
|
|
if (is_not_qnan(texture.mTextureBlend))
|
|
|
|
mat.AddProperty<float>( &texture.mTextureBlend, 1, AI_MATKEY_TEXBLEND(type,0));
|
|
|
|
|
|
|
|
// Setup the texture mapping mode
|
|
|
|
mat.AddProperty<int>((int*)&texture.mMapMode,1,AI_MATKEY_MAPPINGMODE_U(type,0));
|
|
|
|
mat.AddProperty<int>((int*)&texture.mMapMode,1,AI_MATKEY_MAPPINGMODE_V(type,0));
|
|
|
|
|
|
|
|
// Mirroring - double the scaling values
|
|
|
|
if (texture.mMapMode == aiTextureMapMode_Mirror)
|
|
|
|
{
|
|
|
|
texture.mScaleU *= 2.f;
|
|
|
|
texture.mScaleV *= 2.f;
|
|
|
|
texture.mOffsetU /= 2.f;
|
|
|
|
texture.mOffsetV /= 2.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup texture UV transformations
|
|
|
|
mat.AddProperty<float>(&texture.mOffsetU,5,AI_MATKEY_UVTRANSFORM(type,0));
|
|
|
|
}
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Convert a 3DS material to an aiMaterial
|
|
|
|
void Discreet3DSImporter::ConvertMaterial(D3DS::Material& oldMat,
|
2008-05-05 12:36:31 +00:00
|
|
|
MaterialHelper& mat)
|
|
|
|
{
|
|
|
|
// NOTE: Pass the background image to the viewer by bypassing the
|
2008-10-31 19:32:00 +00:00
|
|
|
// material system. This is an evil hack, never do it again!
|
|
|
|
if (0 != mBackgroundImage.length() && bHasBG)
|
2008-08-28 17:35:36 +00:00
|
|
|
{
|
2008-05-05 12:36:31 +00:00
|
|
|
aiString tex;
|
2008-10-31 19:32:00 +00:00
|
|
|
tex.Set( mBackgroundImage);
|
2008-05-05 12:36:31 +00:00
|
|
|
mat.AddProperty( &tex, AI_MATKEY_GLOBAL_BACKGROUND_IMAGE);
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Be sure this is only done for the first material
|
2008-10-31 19:32:00 +00:00
|
|
|
mBackgroundImage = std::string("");
|
2008-08-28 17:35:36 +00:00
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// At first add the base ambient color of the scene to the material
|
2008-10-31 19:32:00 +00:00
|
|
|
oldMat.mAmbient.r += mClrAmbient.r;
|
|
|
|
oldMat.mAmbient.g += mClrAmbient.g;
|
|
|
|
oldMat.mAmbient.b += mClrAmbient.b;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
aiString name;
|
|
|
|
name.Set( oldMat.mName);
|
|
|
|
mat.AddProperty( &name, AI_MATKEY_NAME);
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Material colors
|
2008-05-05 12:36:31 +00:00
|
|
|
mat.AddProperty( &oldMat.mAmbient, 1, AI_MATKEY_COLOR_AMBIENT);
|
|
|
|
mat.AddProperty( &oldMat.mDiffuse, 1, AI_MATKEY_COLOR_DIFFUSE);
|
|
|
|
mat.AddProperty( &oldMat.mSpecular, 1, AI_MATKEY_COLOR_SPECULAR);
|
|
|
|
mat.AddProperty( &oldMat.mEmissive, 1, AI_MATKEY_COLOR_EMISSIVE);
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Phong shininess and shininess strength
|
2008-10-31 19:32:00 +00:00
|
|
|
if (D3DS::Discreet3DS::Phong == oldMat.mShading ||
|
|
|
|
D3DS::Discreet3DS::Metal == oldMat.mShading)
|
2008-05-25 22:29:05 +00:00
|
|
|
{
|
2008-06-03 21:50:53 +00:00
|
|
|
if (!oldMat.mSpecularExponent || !oldMat.mShininessStrength)
|
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
oldMat.mShading = D3DS::Discreet3DS::Gouraud;
|
2008-06-03 21:50:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mat.AddProperty( &oldMat.mSpecularExponent, 1, AI_MATKEY_SHININESS);
|
|
|
|
mat.AddProperty( &oldMat.mShininessStrength, 1, AI_MATKEY_SHININESS_STRENGTH);
|
|
|
|
}
|
2008-05-25 22:29:05 +00:00
|
|
|
}
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Opacity
|
2008-05-05 12:36:31 +00:00
|
|
|
mat.AddProperty<float>( &oldMat.mTransparency,1,AI_MATKEY_OPACITY);
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Bump height scaling
|
2008-05-05 12:36:31 +00:00
|
|
|
mat.AddProperty<float>( &oldMat.mBumpHeight,1,AI_MATKEY_BUMPSCALING);
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Two sided rendering?
|
2008-06-03 21:50:53 +00:00
|
|
|
if (oldMat.mTwoSided)
|
|
|
|
{
|
2008-08-28 17:35:36 +00:00
|
|
|
int i = 1;
|
2008-06-03 21:50:53 +00:00
|
|
|
mat.AddProperty<int>(&i,1,AI_MATKEY_TWOSIDED);
|
|
|
|
}
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Shading mode
|
2008-05-05 12:36:31 +00:00
|
|
|
aiShadingMode eShading = aiShadingMode_NoShading;
|
|
|
|
switch (oldMat.mShading)
|
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Flat:
|
2008-05-05 12:36:31 +00:00
|
|
|
eShading = aiShadingMode_Flat; break;
|
|
|
|
|
|
|
|
// I don't know what "Wire" shading should be,
|
2008-11-16 21:56:45 +00:00
|
|
|
// assume it is simple lambertian diffuse shading
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Wire:
|
2008-11-16 21:56:45 +00:00
|
|
|
{
|
|
|
|
// Set the wireframe flag
|
|
|
|
unsigned int iWire = 1;
|
|
|
|
mat.AddProperty<int>( (int*)&iWire,1,AI_MATKEY_ENABLE_WIREFRAME);
|
|
|
|
}
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Gouraud:
|
2008-05-05 12:36:31 +00:00
|
|
|
eShading = aiShadingMode_Gouraud; break;
|
|
|
|
|
|
|
|
// assume cook-torrance shading for metals.
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Phong :
|
2008-05-25 22:29:05 +00:00
|
|
|
eShading = aiShadingMode_Phong; break;
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Metal :
|
2008-05-05 12:36:31 +00:00
|
|
|
eShading = aiShadingMode_CookTorrance; break;
|
2008-09-11 20:50:15 +00:00
|
|
|
|
|
|
|
// FIX to workaround a warning with GCC 4 who complained
|
|
|
|
// about a missing case Blinn: here - Blinn isn't a valid
|
|
|
|
// value in the 3DS Loader, it is just needed for ASE
|
2008-10-31 19:32:00 +00:00
|
|
|
case D3DS::Discreet3DS::Blinn :
|
2008-09-11 20:50:15 +00:00
|
|
|
eShading = aiShadingMode_Blinn; break;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
mat.AddProperty<int>( (int*)&eShading,1,AI_MATKEY_SHADING_MODEL);
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// DIFFUSE texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexDiffuse.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexDiffuse, aiTextureType_DIFFUSE);
|
2008-06-03 21:50:53 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// SPECULAR texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexSpecular.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexSpecular, aiTextureType_SPECULAR);
|
2008-06-03 21:50:53 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// OPACITY texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexOpacity.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexOpacity, aiTextureType_OPACITY);
|
2008-05-09 17:24:28 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// EMISSIVE texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexEmissive.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexEmissive, aiTextureType_EMISSIVE);
|
2008-05-09 17:24:28 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// BUMP texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexBump.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexBump, aiTextureType_HEIGHT);
|
2008-05-09 17:24:28 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// SHININESS texture
|
2008-05-05 12:36:31 +00:00
|
|
|
if( oldMat.sTexShininess.mMapName.length() > 0)
|
2008-11-16 21:56:45 +00:00
|
|
|
CopyTexture(mat,oldMat.sTexShininess, aiTextureType_SHININESS);
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// Store the name of the material itself, too
|
2008-08-09 22:39:57 +00:00
|
|
|
if( oldMat.mName.length())
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
aiString tex;
|
|
|
|
tex.Set( oldMat.mName);
|
|
|
|
mat.AddProperty( &tex, AI_MATKEY_NAME);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Split meshes by their materials and generate output aiMesh'es
|
|
|
|
void Discreet3DSImporter::ConvertMeshes(aiScene* pcOut)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
std::vector<aiMesh*> avOutMeshes;
|
2008-10-31 19:32:00 +00:00
|
|
|
avOutMeshes.reserve(mScene->mMeshes.size() * 2);
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
unsigned int iFaceCnt = 0;
|
|
|
|
|
|
|
|
// we need to split all meshes by their materials
|
2008-10-31 19:32:00 +00:00
|
|
|
for (std::vector<D3DS::Mesh>::iterator i = mScene->mMeshes.begin();
|
|
|
|
i != mScene->mMeshes.end();++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
std::vector<unsigned int>* aiSplit = new std::vector<unsigned int>[
|
2008-10-31 19:32:00 +00:00
|
|
|
mScene->mMaterials.size()];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
unsigned int iNum = 0;
|
2008-10-31 19:32:00 +00:00
|
|
|
for (std::vector<unsigned int>::const_iterator a = (*i).mFaceMaterials.begin();
|
2008-05-05 12:36:31 +00:00
|
|
|
a != (*i).mFaceMaterials.end();++a,++iNum)
|
|
|
|
{
|
2008-08-28 17:35:36 +00:00
|
|
|
aiSplit[*a].push_back(iNum);
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
// now generate submeshes
|
2008-10-31 19:32:00 +00:00
|
|
|
for (unsigned int p = 0; p < mScene->mMaterials.size();++p)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
if (aiSplit[p].size())
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
aiMesh* meshOut = new aiMesh();
|
|
|
|
meshOut->mPrimitiveTypes = aiPrimitiveType_TRIANGLE;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
// be sure to setup the correct material index
|
2008-11-16 21:56:45 +00:00
|
|
|
meshOut->mMaterialIndex = p;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
|
|
|
// use the color data as temporary storage
|
2008-11-16 21:56:45 +00:00
|
|
|
meshOut->mColors[0] = (aiColor4D*)(&*i);
|
|
|
|
avOutMeshes.push_back(meshOut);
|
2008-07-10 16:49:01 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// convert vertices
|
2008-11-16 21:56:45 +00:00
|
|
|
meshOut->mNumFaces = (unsigned int)aiSplit[p].size();
|
|
|
|
meshOut->mNumVertices = meshOut->mNumFaces*3;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-05-09 17:24:28 +00:00
|
|
|
// allocate enough storage for faces
|
2008-11-16 21:56:45 +00:00
|
|
|
meshOut->mFaces = new aiFace[meshOut->mNumFaces];
|
|
|
|
iFaceCnt += meshOut->mNumFaces;
|
|
|
|
|
|
|
|
meshOut->mVertices = new aiVector3D[meshOut->mNumVertices];
|
|
|
|
meshOut->mNormals = new aiVector3D[meshOut->mNumVertices];
|
|
|
|
if ((*i).mTexCoords.size())
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
meshOut->mTextureCoords[0] = new aiVector3D[meshOut->mNumVertices];
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-11-16 21:56:45 +00:00
|
|
|
for (unsigned int q = 0, base = 0; q < aiSplit[p].size();++q)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
register unsigned int index = aiSplit[p][q];
|
|
|
|
aiFace& face = meshOut->mFaces[q];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
face.mIndices = new unsigned int[3];
|
|
|
|
face.mNumIndices = 3;
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
for (unsigned int a = 0; a < 3;++a,++base)
|
|
|
|
{
|
|
|
|
unsigned int idx = (*i).mFaces[index].mIndices[a];
|
|
|
|
meshOut->mVertices[base] = (*i).mPositions[idx];
|
|
|
|
meshOut->mNormals [base] = (*i).mNormals[idx];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
if ((*i).mTexCoords.size())
|
|
|
|
meshOut->mTextureCoords[0][base] = (*i).mTexCoords[idx];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
face.mIndices[a] = base;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete[] aiSplit;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
// Copy them to the output array
|
2008-06-01 12:46:17 +00:00
|
|
|
pcOut->mNumMeshes = (unsigned int)avOutMeshes.size();
|
2008-05-05 12:36:31 +00:00
|
|
|
pcOut->mMeshes = new aiMesh*[pcOut->mNumMeshes]();
|
|
|
|
for (unsigned int a = 0; a < pcOut->mNumMeshes;++a)
|
|
|
|
pcOut->mMeshes[a] = avOutMeshes[a];
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// We should have at least one face here
|
|
|
|
if (!iFaceCnt)
|
|
|
|
throw new ImportErrorException("No faces loaded. The mesh is empty");
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-08-28 17:35:36 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Add a node to the scenegraph and setup its final transformation
|
2008-11-16 21:56:45 +00:00
|
|
|
void Discreet3DSImporter::AddNodeToGraph(aiScene* pcSOut,aiNode* pcOut,
|
|
|
|
D3DS::Node* pcIn, aiMatrix4x4& absTrafo)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
std::vector<unsigned int> iArray;
|
2008-07-10 16:49:01 +00:00
|
|
|
iArray.reserve(3);
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-11-04 20:41:11 +00:00
|
|
|
aiMatrix4x4 abs;
|
2008-10-31 19:32:00 +00:00
|
|
|
if (pcIn->mName == "$$$DUMMY")
|
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
// FIX: Append the "real" name of the dummy to the string
|
|
|
|
pcIn->mName = "Dummy." + pcIn->mDummyName;
|
2008-10-31 19:32:00 +00:00
|
|
|
}
|
|
|
|
else // if (pcIn->mName != "$$$DUMMY")
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
// Find all meshes with the same name as the node
|
2008-05-05 12:36:31 +00:00
|
|
|
for (unsigned int a = 0; a < pcSOut->mNumMeshes;++a)
|
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
const D3DS::Mesh* pcMesh = (const D3DS::Mesh*)pcSOut->mMeshes[a]->mColors[0];
|
2008-07-10 16:49:01 +00:00
|
|
|
ai_assert(NULL != pcMesh);
|
|
|
|
|
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
|
|
|
if (pcIn->mName == pcMesh->mName)
|
2008-05-05 12:36:31 +00:00
|
|
|
iArray.push_back(a);
|
|
|
|
}
|
2008-07-10 16:49:01 +00:00
|
|
|
if (!iArray.empty())
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
// The matrix should be identical for all meshes with the
|
|
|
|
// same name. It HAS to be identical for all meshes .....
|
|
|
|
aiMatrix4x4 mInv = ((D3DS::Mesh*)pcSOut->mMeshes[iArray[0]]->mColors[0])->mMat;
|
|
|
|
mInv.Inverse();
|
2008-11-04 20:41:11 +00:00
|
|
|
const aiVector3D& pivot = pcIn->vPivot;
|
|
|
|
|
2008-07-10 16:49:01 +00:00
|
|
|
pcOut->mNumMeshes = (unsigned int)iArray.size();
|
|
|
|
pcOut->mMeshes = new unsigned int[iArray.size()];
|
|
|
|
for (unsigned int i = 0;i < iArray.size();++i)
|
|
|
|
{
|
|
|
|
const unsigned int iIndex = iArray[i];
|
|
|
|
aiMesh* const mesh = pcSOut->mMeshes[iIndex];
|
2008-05-25 22:29:05 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Pivot point adjustment
|
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
|
|
|
// See: http://www.zfx.info/DisplayThread.php?MID=235690#235690
|
2008-07-10 16:49:01 +00:00
|
|
|
const aiVector3D* const pvEnd = mesh->mVertices+mesh->mNumVertices;
|
|
|
|
aiVector3D* pvCurrent = mesh->mVertices;
|
2008-05-25 22:29:05 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
if(pivot.x || pivot.y || pivot.z)
|
2008-07-10 16:49:01 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
for (;pvCurrent != pvEnd;++pvCurrent)
|
2008-07-10 16:49:01 +00:00
|
|
|
{
|
|
|
|
*pvCurrent = mInv * (*pvCurrent);
|
2008-11-16 21:56:45 +00:00
|
|
|
*pvCurrent -= pivot;
|
2008-07-10 16:49:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
for (;pvCurrent != pvEnd;++pvCurrent)
|
2008-11-04 20:41:11 +00:00
|
|
|
*pvCurrent = mInv * (*pvCurrent);
|
2008-07-10 16:49:01 +00:00
|
|
|
}
|
2008-11-04 20:41:11 +00:00
|
|
|
// Setup the mesh index
|
2008-07-10 16:49:01 +00:00
|
|
|
pcOut->mMeshes[i] = iIndex;
|
|
|
|
}
|
|
|
|
}
|
2008-05-25 22:29:05 +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
|
|
|
// Now build the transformation matrix of the node
|
|
|
|
// ROTATION
|
|
|
|
if (pcIn->aRotationKeys.size())
|
|
|
|
{
|
|
|
|
pcOut->mTransformation = aiMatrix4x4( pcIn->aRotationKeys[0].mValue.GetMatrix() );
|
|
|
|
}
|
|
|
|
else if (pcIn->aCameraRollKeys.size())
|
|
|
|
{
|
|
|
|
aiMatrix4x4::RotationZ(AI_DEG_TO_RAD(- pcIn->aCameraRollKeys[0].mValue),
|
|
|
|
pcOut->mTransformation);
|
|
|
|
}
|
|
|
|
|
|
|
|
// SCALING
|
|
|
|
aiMatrix4x4& m = pcOut->mTransformation;
|
|
|
|
if (pcIn->aScalingKeys.size())
|
|
|
|
{
|
|
|
|
const aiVector3D& v = pcIn->aScalingKeys[0].mValue;
|
|
|
|
m.a1 *= v.x; m.b1 *= v.x; m.c1 *= v.x;
|
|
|
|
m.a2 *= v.y; m.b2 *= v.y; m.c2 *= v.y;
|
|
|
|
m.a3 *= v.z; m.b3 *= v.z; m.c3 *= v.z;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TRANSLATION
|
|
|
|
if (pcIn->aPositionKeys.size())
|
|
|
|
{
|
|
|
|
const aiVector3D& v = pcIn->aPositionKeys[0].mValue;
|
|
|
|
m.a4 += v.x;
|
|
|
|
m.b4 += v.y;
|
|
|
|
m.c4 += v.z;
|
|
|
|
}
|
|
|
|
|
2008-11-04 20:41:11 +00:00
|
|
|
// Generate animation channels for the node
|
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
|
|
|
if (pcIn->aPositionKeys.size() > 1 || pcIn->aRotationKeys.size() > 1 ||
|
|
|
|
pcIn->aScalingKeys.size() > 1 || pcIn->aCameraRollKeys.size() > 1 ||
|
|
|
|
pcIn->aTargetPositionKeys.size() > 1)
|
2008-11-04 20:41:11 +00:00
|
|
|
{
|
|
|
|
aiAnimation* anim = pcSOut->mAnimations[0];
|
|
|
|
ai_assert(NULL != anim);
|
|
|
|
|
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
|
|
|
if (pcIn->aCameraRollKeys.size() > 1)
|
2008-11-04 20:41:11 +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
|
|
|
DefaultLogger::get()->debug("3DS: Converting camera roll track ...");
|
2008-11-04 20:41:11 +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
|
|
|
// Camera roll keys - in fact they're just rotations
|
|
|
|
// around the camera's z axis. The angles are given
|
|
|
|
// in degrees (and they're clockwise).
|
|
|
|
pcIn->aRotationKeys.resize(pcIn->aCameraRollKeys.size());
|
|
|
|
for (unsigned int i = 0; i < pcIn->aCameraRollKeys.size();++i)
|
|
|
|
{
|
|
|
|
aiQuatKey& q = pcIn->aRotationKeys[i];
|
|
|
|
aiFloatKey& f = pcIn->aCameraRollKeys[i];
|
2008-11-04 20:41:11 +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
|
|
|
q.mTime = f.mTime;
|
|
|
|
q.mValue = aiQuaternion(0.f,0.f,AI_DEG_TO_RAD(- f.mValue));
|
|
|
|
}
|
2008-11-04 20:41:11 +00:00
|
|
|
}
|
|
|
|
|
2008-11-26 22:03:14 +00:00
|
|
|
if (pcIn->aTargetPositionKeys.size() > 1)
|
|
|
|
{
|
|
|
|
DefaultLogger::get()->debug("3DS: Converting target track ...");
|
|
|
|
|
|
|
|
// Camera or spot light - need to convert the separate
|
|
|
|
// target position channel to our representation
|
|
|
|
TargetAnimationHelper helper;
|
|
|
|
|
|
|
|
if (pcIn->aPositionKeys.empty())
|
|
|
|
{
|
|
|
|
// We can just pass zero here ...
|
|
|
|
helper.SetFixedMainAnimationChannel(aiVector3D());
|
|
|
|
}
|
|
|
|
else helper.SetMainAnimationChannel(&pcIn->aPositionKeys);
|
|
|
|
helper.SetTargetAnimationChannel(&pcIn->aTargetPositionKeys);
|
|
|
|
|
|
|
|
// Do the conversion
|
|
|
|
std::vector<aiVectorKey> distanceTrack;
|
|
|
|
helper.Process(&distanceTrack);
|
|
|
|
|
|
|
|
// Now add a new node as child, name it <ourName>.Target
|
|
|
|
// and assign the distance track to it. This is that the
|
|
|
|
// information where the target is and how it moves is
|
|
|
|
// not lost
|
|
|
|
D3DS::Node* nd = new D3DS::Node();
|
|
|
|
pcIn->push_back(nd);
|
|
|
|
|
|
|
|
nd->mName = pcIn->mName + ".Target";
|
|
|
|
|
|
|
|
aiNodeAnim* nda = anim->mChannels[anim->mNumChannels++] = new aiNodeAnim();
|
|
|
|
nda->mNodeName.Set(nd->mName);
|
|
|
|
|
|
|
|
nda->mNumPositionKeys = (unsigned int)distanceTrack.size();
|
|
|
|
nda->mPositionKeys = new aiVectorKey[nda->mNumPositionKeys];
|
|
|
|
::memcpy(nda->mPositionKeys,&distanceTrack[0],
|
|
|
|
sizeof(aiVectorKey)*nda->mNumPositionKeys);
|
|
|
|
}
|
2008-11-16 21:56:45 +00:00
|
|
|
|
|
|
|
// Allocate a new nda, increment the nda index
|
|
|
|
aiNodeAnim* nda = anim->mChannels[anim->mNumChannels++] = new aiNodeAnim();
|
|
|
|
nda->mNodeName.Set(pcIn->mName);
|
|
|
|
|
|
|
|
// POSITION keys
|
|
|
|
if (pcIn->aPositionKeys.size() > 0)
|
2008-11-04 20:41:11 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
nda->mNumPositionKeys = (unsigned int)pcIn->aPositionKeys.size();
|
|
|
|
nda->mPositionKeys = new aiVectorKey[nda->mNumPositionKeys];
|
|
|
|
::memcpy(nda->mPositionKeys,&pcIn->aPositionKeys[0],
|
|
|
|
sizeof(aiVectorKey)*nda->mNumPositionKeys);
|
2008-11-04 20:41:11 +00:00
|
|
|
}
|
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// ROTATION keys
|
|
|
|
if (pcIn->aRotationKeys.size() > 0)
|
2008-11-04 20:41:11 +00:00
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
nda->mNumRotationKeys = (unsigned int)pcIn->aRotationKeys.size();
|
|
|
|
nda->mRotationKeys = new aiQuatKey[nda->mNumRotationKeys];
|
2008-11-04 20:41:11 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
// Rotations are quaternion offsets
|
|
|
|
aiQuaternion abs;
|
|
|
|
for (unsigned int n = 0; n < nda->mNumRotationKeys;++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
|
|
|
{
|
2008-11-16 21:56:45 +00:00
|
|
|
const aiQuatKey& q = pcIn->aRotationKeys[n];
|
2008-11-04 20:41:11 +00:00
|
|
|
|
2008-11-16 21:56:45 +00:00
|
|
|
abs = (n ? abs * q.mValue : q.mValue);
|
|
|
|
nda->mRotationKeys[n].mTime = q.mTime;
|
|
|
|
nda->mRotationKeys[n].mValue = abs.Normalize();
|
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-11-16 21:56:45 +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-11-16 21:56:45 +00:00
|
|
|
// SCALING keys
|
|
|
|
if (pcIn->aScalingKeys.size() > 0)
|
|
|
|
{
|
|
|
|
nda->mNumScalingKeys = (unsigned int)pcIn->aScalingKeys.size();
|
|
|
|
nda->mScalingKeys = new aiVectorKey[nda->mNumScalingKeys];
|
|
|
|
::memcpy(nda->mScalingKeys,&pcIn->aScalingKeys[0],
|
|
|
|
sizeof(aiVectorKey)*nda->mNumScalingKeys);
|
2008-11-04 20:41:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// Setup the name of the node
|
|
|
|
pcOut->mName.Set(pcIn->mName);
|
|
|
|
|
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
|
|
|
// Allocate storage for children
|
2008-06-01 12:46:17 +00:00
|
|
|
pcOut->mNumChildren = (unsigned int)pcIn->mChildren.size();
|
2008-05-05 12:36:31 +00:00
|
|
|
pcOut->mChildren = new aiNode*[pcIn->mChildren.size()];
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
// Recursively process all children
|
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
|
|
|
const unsigned int size = pcIn->mChildren.size();
|
|
|
|
for (unsigned int i = 0; i < size;++i)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
pcOut->mChildren[i] = new aiNode();
|
|
|
|
pcOut->mChildren[i]->mParent = pcOut;
|
2008-11-04 20:41:11 +00:00
|
|
|
AddNodeToGraph(pcSOut,pcOut->mChildren[i],pcIn->mChildren[i],abs);
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2008-11-04 20:41:11 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// Find out how many node animation channels we'll have finally
|
|
|
|
void CountTracks(D3DS::Node* node, unsigned int& cnt)
|
|
|
|
{
|
|
|
|
// We will never generate more than one channel for a node, so
|
|
|
|
// this is rather easy here.
|
|
|
|
|
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
|
|
|
if (node->aPositionKeys.size() > 1 || node->aRotationKeys.size() > 1 ||
|
|
|
|
node->aScalingKeys.size() > 1 || node->aCameraRollKeys.size() > 1 ||
|
|
|
|
node->aTargetPositionKeys.size() > 1)
|
2008-11-04 20:41:11 +00:00
|
|
|
{
|
|
|
|
++cnt;
|
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
|
|
|
|
|
|
|
if (node->aTargetPositionKeys.size() > 1)++cnt;
|
2008-11-04 20:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Recursively process all children
|
|
|
|
for (unsigned int i = 0; i < node->mChildren.size();++i)
|
|
|
|
CountTracks(node->mChildren[i],cnt);
|
|
|
|
}
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Generate the output node graph
|
|
|
|
void Discreet3DSImporter::GenerateNodeGraph(aiScene* pcOut)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
|
|
|
pcOut->mRootNode = new aiNode();
|
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
if (0 == mRootNode->mChildren.size())
|
|
|
|
{
|
2008-05-05 12:36:31 +00:00
|
|
|
// seems the file has not even a hierarchy.
|
|
|
|
// generate a flat hiearachy which looks like this:
|
|
|
|
//
|
|
|
|
// ROOT_NODE
|
|
|
|
// |
|
|
|
|
// ----------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// | | | | |
|
|
|
|
// MESH_0 MESH_1 MESH_2 ... MESH_N CAMERA_0 ....
|
2008-05-05 12:36:31 +00:00
|
|
|
//
|
2008-08-09 22:39:57 +00:00
|
|
|
DefaultLogger::get()->warn("No hierarchy information has been found in the file. ");
|
2008-05-25 22:29:05 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
pcOut->mRootNode->mNumChildren = pcOut->mNumMeshes +
|
|
|
|
mScene->mCameras.size() + mScene->mLights.size();
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
pcOut->mRootNode->mChildren = new aiNode* [ pcOut->mRootNode->mNumChildren ];
|
|
|
|
pcOut->mRootNode->mName.Set("<3DSDummyRoot>");
|
|
|
|
|
|
|
|
// Build dummy nodes for all meshes
|
|
|
|
unsigned int a = 0;
|
|
|
|
for (unsigned int i = 0; i < pcOut->mNumMeshes;++i,++a)
|
|
|
|
{
|
|
|
|
aiNode* pcNode = pcOut->mRootNode->mChildren[a] = new aiNode();
|
2008-05-05 12:36:31 +00:00
|
|
|
pcNode->mParent = pcOut->mRootNode;
|
|
|
|
pcNode->mMeshes = new unsigned int[1];
|
|
|
|
pcNode->mMeshes[0] = i;
|
|
|
|
pcNode->mNumMeshes = 1;
|
2008-05-25 22:29:05 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// Build a name for the node
|
|
|
|
pcNode->mName.length = sprintf(pcNode->mName.data,"3DSMesh_%i",i);
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// Build dummy nodes for all cameras
|
|
|
|
for (unsigned int i = 0; i < (unsigned int )mScene->mCameras.size();++i,++a)
|
|
|
|
{
|
|
|
|
aiNode* pcNode = pcOut->mRootNode->mChildren[a] = new aiNode();
|
|
|
|
pcNode->mParent = pcOut->mRootNode;
|
|
|
|
|
|
|
|
// Build a name for the node
|
|
|
|
pcNode->mName = mScene->mCameras[i]->mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build dummy nodes for all lights
|
|
|
|
for (unsigned int i = 0; i < (unsigned int )mScene->mLights.size();++i,++a)
|
|
|
|
{
|
|
|
|
aiNode* pcNode = pcOut->mRootNode->mChildren[a] = new aiNode();
|
|
|
|
pcNode->mParent = pcOut->mRootNode;
|
|
|
|
|
|
|
|
// Build a name for the node
|
|
|
|
pcNode->mName = mScene->mLights[i]->mName;
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
}
|
2008-11-01 15:14:00 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// First of all: find out how many scaling, rotation and translation
|
|
|
|
// animation tracks we'll have afterwards
|
2008-11-04 20:41:11 +00:00
|
|
|
unsigned int numChannel = 0;
|
|
|
|
CountTracks(mRootNode,numChannel);
|
|
|
|
|
|
|
|
if (numChannel)
|
|
|
|
{
|
|
|
|
// Allocate a primary animation channel
|
|
|
|
pcOut->mNumAnimations = 1;
|
|
|
|
pcOut->mAnimations = new aiAnimation*[1];
|
|
|
|
aiAnimation* anim = pcOut->mAnimations[0] = new aiAnimation();
|
|
|
|
|
|
|
|
anim->mName.Set("3DSMasterAnim");
|
|
|
|
|
|
|
|
// Allocate enough storage for all node animation channels,
|
|
|
|
// but don't set the mNumChannels member - we'll use it to
|
|
|
|
// index into the array
|
|
|
|
anim->mChannels = new aiNodeAnim*[numChannel];
|
|
|
|
}
|
|
|
|
|
|
|
|
aiMatrix4x4 m;
|
|
|
|
AddNodeToGraph(pcOut, pcOut->mRootNode, mRootNode,m);
|
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
|
|
|
|
|
|
|
// If the root node is unnamed name it "<3DSRoot>"
|
|
|
|
if (::strstr( pcOut->mRootNode->mName.data, "UNNAMED" )
|
|
|
|
|| pcOut->mRootNode->mName.data[0] == '$'
|
|
|
|
&& pcOut->mRootNode->mName.data[1] == '$')
|
|
|
|
{
|
|
|
|
pcOut->mRootNode->mName.Set("<3DSRoot>");
|
|
|
|
}
|
2008-11-01 15:14:00 +00:00
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// We used the first vertex color set to store some
|
|
|
|
// temporary values, so we need to cleanup here
|
2008-05-05 12:36:31 +00:00
|
|
|
for (unsigned int a = 0; a < pcOut->mNumMeshes;++a)
|
|
|
|
pcOut->mMeshes[a]->mColors[0] = NULL;
|
|
|
|
|
2008-07-10 16:49:01 +00:00
|
|
|
// if the root node has only one child ... set the child as root node
|
|
|
|
if (1 == pcOut->mRootNode->mNumChildren)
|
|
|
|
{
|
|
|
|
aiNode* pcOld = pcOut->mRootNode;
|
|
|
|
pcOut->mRootNode = pcOut->mRootNode->mChildren[0];
|
|
|
|
pcOut->mRootNode->mParent = NULL;
|
|
|
|
pcOld->mChildren[0] = NULL;
|
|
|
|
delete pcOld;
|
|
|
|
}
|
2008-05-05 12:36:31 +00:00
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2008-10-31 19:32:00 +00:00
|
|
|
// Convert all meshes in the scene and generate the final output scene.
|
|
|
|
void Discreet3DSImporter::ConvertScene(aiScene* pcOut)
|
2008-05-05 12:36:31 +00:00
|
|
|
{
|
2008-10-31 19:32:00 +00:00
|
|
|
// Allocate enough storage for all output materials
|
|
|
|
pcOut->mNumMaterials = (unsigned int)mScene->mMaterials.size();
|
|
|
|
pcOut->mMaterials = new aiMaterial*[pcOut->mNumMaterials];
|
2008-05-05 12:36:31 +00:00
|
|
|
|
2008-10-31 19:32:00 +00:00
|
|
|
// ... and convert the 3DS materials to aiMaterial's
|
2008-05-05 12:36:31 +00:00
|
|
|
for (unsigned int i = 0; i < pcOut->mNumMaterials;++i)
|
|
|
|
{
|
|
|
|
MaterialHelper* pcNew = new MaterialHelper();
|
2008-10-31 19:32:00 +00:00
|
|
|
ConvertMaterial(mScene->mMaterials[i],*pcNew);
|
2008-05-05 12:36:31 +00:00
|
|
|
pcOut->mMaterials[i] = pcNew;
|
|
|
|
}
|
2008-10-31 19:32:00 +00:00
|
|
|
|
|
|
|
// Generate the output mesh list
|
|
|
|
ConvertMeshes(pcOut);
|
|
|
|
|
|
|
|
// Now copy all light sources to the output scene
|
|
|
|
pcOut->mNumLights = (unsigned int)mScene->mLights.size();
|
|
|
|
if (pcOut->mNumLights)
|
|
|
|
{
|
|
|
|
pcOut->mLights = new aiLight*[pcOut->mNumLights];
|
|
|
|
::memcpy(pcOut->mLights,&mScene->mLights[0],sizeof(void*)*pcOut->mNumLights);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now copy all cameras to the output scene
|
|
|
|
pcOut->mNumCameras = (unsigned int)mScene->mCameras.size();
|
|
|
|
if (pcOut->mNumCameras)
|
|
|
|
{
|
|
|
|
pcOut->mCameras = new aiCamera*[pcOut->mNumCameras];
|
|
|
|
::memcpy(pcOut->mCameras,&mScene->mCameras[0],sizeof(void*)*pcOut->mNumCameras);
|
|
|
|
}
|
|
|
|
|
2008-05-05 12:36:31 +00:00
|
|
|
return;
|
|
|
|
}
|