[395] | 1 | // Copyright (C) 2014-2015 ChaosForge Ltd
|
---|
[248] | 2 | // http://chaosforge.org/
|
---|
| 3 | //
|
---|
[395] | 4 | // This file is part of Nova libraries.
|
---|
| 5 | // For conditions of distribution and use, see copying.txt file in root folder.
|
---|
[248] | 6 |
|
---|
| 7 | #include "nv/formats/assimp_loader.hh"
|
---|
[392] | 8 | #include "nv/stl/unordered_map.hh"
|
---|
[248] | 9 | #include "nv/lib/assimp.hh"
|
---|
| 10 |
|
---|
| 11 | using namespace nv;
|
---|
| 12 |
|
---|
[323] | 13 | const unsigned MAX_BONES = 64;
|
---|
[250] | 14 |
|
---|
[293] | 15 | struct assimp_plain_vtx
|
---|
| 16 | {
|
---|
| 17 | vec3 position;
|
---|
| 18 | vec3 normal;
|
---|
| 19 | vec2 texcoord;
|
---|
| 20 | vec4 tangent;
|
---|
| 21 |
|
---|
| 22 | assimp_plain_vtx() {}
|
---|
| 23 | assimp_plain_vtx( const vec3& v, const vec2& t, const vec3& n, const vec4& g )
|
---|
| 24 | {
|
---|
| 25 | position = v;
|
---|
| 26 | texcoord = t;
|
---|
| 27 | normal = n;
|
---|
| 28 | tangent = g;
|
---|
| 29 | }
|
---|
| 30 | };
|
---|
| 31 |
|
---|
| 32 | struct assimp_skinned_vtx
|
---|
| 33 | {
|
---|
| 34 | vec3 position;
|
---|
| 35 | vec3 normal;
|
---|
| 36 | vec2 texcoord;
|
---|
| 37 | vec4 tangent;
|
---|
| 38 | ivec4 boneindex;
|
---|
| 39 | vec4 boneweight;
|
---|
| 40 |
|
---|
| 41 | assimp_skinned_vtx() {}
|
---|
| 42 | assimp_skinned_vtx( const vec3& v, const vec2& t, const vec3& n, const vec4& g )
|
---|
| 43 | {
|
---|
| 44 | position = v;
|
---|
| 45 | texcoord = t;
|
---|
| 46 | normal = n;
|
---|
| 47 | tangent = g;
|
---|
| 48 | }
|
---|
| 49 | };
|
---|
| 50 |
|
---|
[410] | 51 | struct assimp_key_p { float time; vec3 translation; };
|
---|
[291] | 52 | struct assimp_key_r { float time; quat rotation; };
|
---|
| 53 | struct assimp_key_s { float time; vec3 scale; };
|
---|
| 54 | struct assimp_key_tr { transform tform; };
|
---|
| 55 |
|
---|
| 56 |
|
---|
[380] | 57 | nv::assimp_loader::assimp_loader( const std::string& a_ext, uint32 a_assimp_flags /*= 0 */ )
|
---|
[293] | 58 | : m_scene( nullptr ), m_mesh_count(0)
|
---|
[250] | 59 | {
|
---|
[284] | 60 | m_ext = a_ext;
|
---|
| 61 | m_assimp_flags = a_assimp_flags;
|
---|
[277] | 62 | if ( m_assimp_flags == 0 )
|
---|
| 63 | {
|
---|
| 64 | m_assimp_flags = (
|
---|
| 65 | aiProcess_CalcTangentSpace |
|
---|
| 66 | aiProcess_GenSmoothNormals |
|
---|
| 67 | aiProcess_JoinIdenticalVertices |
|
---|
| 68 | aiProcess_ImproveCacheLocality |
|
---|
| 69 | aiProcess_LimitBoneWeights |
|
---|
| 70 | aiProcess_RemoveRedundantMaterials |
|
---|
| 71 | aiProcess_SplitLargeMeshes |
|
---|
| 72 | aiProcess_Triangulate |
|
---|
| 73 | aiProcess_GenUVCoords |
|
---|
| 74 | aiProcess_SortByPType |
|
---|
| 75 | aiProcess_FindDegenerates |
|
---|
| 76 | aiProcess_FindInvalidData |
|
---|
| 77 | 0 );
|
---|
| 78 | }
|
---|
| 79 | }
|
---|
[284] | 80 |
|
---|
| 81 |
|
---|
[248] | 82 | bool nv::assimp_loader::load( stream& source )
|
---|
| 83 | {
|
---|
[292] | 84 | load_assimp_library();
|
---|
[406] | 85 | if ( m_scene != nullptr ) aiReleaseImport( reinterpret_cast<const aiScene*>( m_scene ) );
|
---|
[248] | 86 | m_scene = nullptr;
|
---|
| 87 | m_mesh_count = 0;
|
---|
[365] | 88 | NV_LOG_NOTICE( "AssImp loading file..." );
|
---|
[323] | 89 | size_t size = source.size();
|
---|
[248] | 90 | char* data = new char[ size ];
|
---|
| 91 | source.read( data, size, 1 );
|
---|
| 92 | const aiScene* scene = aiImportFileFromMemory( data, size, m_assimp_flags, m_ext.c_str() );
|
---|
| 93 |
|
---|
| 94 | if( !scene)
|
---|
| 95 | {
|
---|
[365] | 96 | NV_LOG_ERROR( aiGetErrorString() );
|
---|
[248] | 97 | return false;
|
---|
| 98 | }
|
---|
| 99 | m_scene = scene;
|
---|
| 100 | m_mesh_count = scene->mNumMeshes;
|
---|
[365] | 101 | NV_LOG_NOTICE( "Loading successfull" );
|
---|
[248] | 102 | return true;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | mesh_data* nv::assimp_loader::release_mesh_data( size_t index /*= 0 */ )
|
---|
| 106 | {
|
---|
| 107 | if ( index >= m_mesh_count ) return nullptr;
|
---|
[287] | 108 | mesh_data* result = new mesh_data;
|
---|
| 109 | load_mesh_data( result, index );
|
---|
| 110 | return result;
|
---|
| 111 | }
|
---|
| 112 | void nv::assimp_loader::load_mesh_data( mesh_data* data, size_t index )
|
---|
| 113 | {
|
---|
[406] | 114 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[248] | 115 | const aiMesh* mesh = scene->mMeshes[ index ];
|
---|
[287] | 116 | data->set_name( mesh->mName.data );
|
---|
[248] | 117 |
|
---|
| 118 | bool skinned = mesh->mNumBones > 0;
|
---|
[411] | 119 | raw_data_channel* channel = nullptr;
|
---|
[248] | 120 | if ( skinned )
|
---|
[411] | 121 | channel = raw_data_channel::create< assimp_skinned_vtx >( mesh->mNumVertices );
|
---|
[248] | 122 | else
|
---|
[411] | 123 | channel = raw_data_channel::create< assimp_plain_vtx >( mesh->mNumVertices );
|
---|
[413] | 124 | uint8* cdata = const_cast< uint8*>( channel->raw_data() );
|
---|
[248] | 125 |
|
---|
[287] | 126 | data->add_channel( channel );
|
---|
[332] | 127 | if ( mesh->mTangents && mesh->mBitangents )
|
---|
[248] | 128 | for (unsigned int i=0; i<mesh->mNumVertices; i++)
|
---|
| 129 | {
|
---|
[293] | 130 | vec3 v = assimp_vec3_cast( mesh->mVertices[ i ] );
|
---|
| 131 | vec3 n = glm::normalize( assimp_vec3_cast( mesh->mNormals[ i ] ) );
|
---|
| 132 | vec3 t = glm::normalize( assimp_vec3_cast( mesh->mTangents[ i ] ) );
|
---|
| 133 | vec3 b = glm::normalize( assimp_vec3_cast( mesh->mBitangents[ i ] ) );
|
---|
[248] | 134 | vec2 s = assimp_st_cast( mesh->mTextureCoords[ 0 ][ i ] );
|
---|
| 135 |
|
---|
| 136 | glm::vec3 t_i = glm::normalize (t - n * glm::dot (n, t));
|
---|
| 137 | float det = (glm::dot (glm::cross (n, t), b));
|
---|
| 138 | det = (det < 0.0f ? -1.0f : 1.0f );
|
---|
| 139 | nv::vec4 vt ( t_i[0], t_i[1], t_i[2], det );
|
---|
| 140 | if ( skinned )
|
---|
[413] | 141 | reinterpret_cast< assimp_skinned_vtx* >( cdata )[i] = assimp_skinned_vtx( v, s, n, vt );
|
---|
[248] | 142 | else
|
---|
[413] | 143 | reinterpret_cast< assimp_plain_vtx* >( cdata )[i] = assimp_plain_vtx( v, s, n, vt );
|
---|
[248] | 144 | }
|
---|
| 145 |
|
---|
| 146 | if ( skinned )
|
---|
| 147 | {
|
---|
[413] | 148 | assimp_skinned_vtx* vtx = reinterpret_cast< assimp_skinned_vtx* >( cdata );
|
---|
[248] | 149 | for (unsigned int m=0; m<mesh->mNumBones; m++)
|
---|
| 150 | {
|
---|
| 151 | aiBone* bone = mesh->mBones[m];
|
---|
| 152 | for (unsigned int w=0; w<bone->mNumWeights; w++)
|
---|
| 153 | {
|
---|
| 154 | assimp_skinned_vtx& v = vtx[ bone->mWeights[w].mVertexId ];
|
---|
| 155 | bool found = false;
|
---|
[406] | 156 | for ( int i = 0 ; i < 4; ++i )
|
---|
[248] | 157 | {
|
---|
| 158 | if ( v.boneweight[i] <= 0.0f )
|
---|
| 159 | {
|
---|
[406] | 160 | v.boneindex[i] = int( m );
|
---|
[248] | 161 | v.boneweight[i] = bone->mWeights[w].mWeight;
|
---|
| 162 | found = true;
|
---|
| 163 | break;
|
---|
| 164 | }
|
---|
| 165 | }
|
---|
| 166 | NV_ASSERT( found, "Too many weights!" );
|
---|
| 167 | }
|
---|
| 168 | }
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[413] | 171 | data_channel_creator< index_u16 > ichannel( mesh->mNumFaces * 3 );
|
---|
| 172 | uint16* indices = reinterpret_cast<uint16*>( ichannel.raw_data() );
|
---|
[248] | 173 | for (unsigned int i=0; i<mesh->mNumFaces; i++)
|
---|
| 174 | {
|
---|
| 175 | const aiFace* face = &mesh->mFaces[i];
|
---|
| 176 | for (unsigned int j=0; j<face->mNumIndices; j++)
|
---|
| 177 | {
|
---|
[406] | 178 | indices[ i*3 + j ] = uint16( face->mIndices[j] );
|
---|
[248] | 179 | }
|
---|
| 180 | }
|
---|
[413] | 181 | data->add_channel( ichannel.release() );
|
---|
[248] | 182 | }
|
---|
| 183 |
|
---|
| 184 | nv::assimp_loader::~assimp_loader()
|
---|
| 185 | {
|
---|
[406] | 186 | if ( m_scene != nullptr ) aiReleaseImport( reinterpret_cast<const aiScene*>( m_scene ) );
|
---|
[248] | 187 | }
|
---|
| 188 |
|
---|
[383] | 189 | bool nv::assimp_loader::load_bones( size_t index, array_ref< mesh_node_data > bones )
|
---|
[248] | 190 | {
|
---|
| 191 | if ( m_scene == nullptr ) return false;
|
---|
[406] | 192 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[248] | 193 | const aiMesh* mesh = scene->mMeshes[ index ];
|
---|
| 194 |
|
---|
| 195 | for (unsigned int m=0; m<mesh->mNumBones; m++)
|
---|
| 196 | {
|
---|
| 197 | aiBone* bone = mesh->mBones[m];
|
---|
[293] | 198 | mat4 offset = assimp_mat4_cast( bone->mOffsetMatrix );
|
---|
[291] | 199 | bones[m].name = bone->mName.data;
|
---|
| 200 | bones[m].data = nullptr;
|
---|
| 201 | bones[m].parent_id = -1;
|
---|
| 202 | bones[m].target_id = -1;
|
---|
| 203 | bones[m].transform = offset;
|
---|
[248] | 204 | }
|
---|
| 205 | return true;
|
---|
| 206 | }
|
---|
| 207 |
|
---|
| 208 | void nv::assimp_loader::scene_report() const
|
---|
| 209 | {
|
---|
[406] | 210 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[248] | 211 | if ( scene == nullptr ) return;
|
---|
| 212 |
|
---|
[365] | 213 | NV_LOG_NOTICE( "------------------------" );
|
---|
| 214 | NV_LOG_NOTICE( "Texture count - ", scene->mNumTextures );
|
---|
| 215 | NV_LOG_NOTICE( "Animation count - ", scene->mNumAnimations );
|
---|
| 216 | NV_LOG_NOTICE( "Material count - ", scene->mNumMaterials );
|
---|
| 217 | NV_LOG_NOTICE( "Meshes count - ", scene->mNumMeshes );
|
---|
| 218 | NV_LOG_NOTICE( "------------------------" );
|
---|
[248] | 219 |
|
---|
| 220 | aiNode* root = scene->mRootNode;
|
---|
| 221 | if (root)
|
---|
| 222 | {
|
---|
[365] | 223 | NV_LOG_NOTICE( "Root node - ", root->mName.data );
|
---|
| 224 | NV_LOG_NOTICE( " meshes - ", root->mNumMeshes );
|
---|
| 225 | NV_LOG_NOTICE( " children - ", root->mNumChildren );
|
---|
[248] | 226 | }
|
---|
| 227 | else
|
---|
| 228 | {
|
---|
[365] | 229 | NV_LOG_NOTICE( "No root node!" );
|
---|
[248] | 230 | }
|
---|
[365] | 231 | NV_LOG_NOTICE( "------------------------" );
|
---|
[248] | 232 |
|
---|
| 233 | if ( scene->mNumMeshes > 0 )
|
---|
| 234 | {
|
---|
| 235 | for ( nv::uint32 mc = 0; mc < scene->mNumMeshes; mc++ )
|
---|
| 236 | {
|
---|
| 237 | aiMesh* mesh = scene->mMeshes[mc];
|
---|
| 238 |
|
---|
[406] | 239 | NV_LOG_NOTICE( "Mesh #", mc, " - ", string_view( static_cast<char*>( mesh->mName.data ) ) );
|
---|
[365] | 240 | NV_LOG_NOTICE( " bones - ", mesh->mNumBones );
|
---|
| 241 | NV_LOG_NOTICE( " uvs - ", mesh->mNumUVComponents[0] );
|
---|
| 242 | NV_LOG_NOTICE( " verts - ", mesh->mNumVertices );
|
---|
| 243 | NV_LOG_NOTICE( " faces - ", mesh->mNumFaces );
|
---|
[248] | 244 |
|
---|
[365] | 245 | // NV_LOG_NOTICE( "Bones:" );
|
---|
[248] | 246 | // for (unsigned int m=0; m<mesh->mNumBones; m++)
|
---|
| 247 | // {
|
---|
| 248 | // aiBone* bone = mesh->mBones[m];
|
---|
[365] | 249 | // NV_LOG_NOTICE( bone->mName.C_Str() );
|
---|
[248] | 250 | // }
|
---|
| 251 | }
|
---|
| 252 | }
|
---|
| 253 | else
|
---|
| 254 | {
|
---|
[365] | 255 | NV_LOG_NOTICE( "No meshes!" );
|
---|
[248] | 256 | }
|
---|
[365] | 257 | NV_LOG_NOTICE( "------------------------" );
|
---|
[248] | 258 |
|
---|
| 259 |
|
---|
| 260 | // if ( scene->mNumMaterials > 0 )
|
---|
| 261 | // {
|
---|
| 262 | // for (unsigned int m=0; m < scene->mNumMaterials; m++)
|
---|
| 263 | // {
|
---|
| 264 | // int texIndex = 0;
|
---|
| 265 | // aiReturn texFound = aiReturn_SUCCESS;
|
---|
| 266 | // aiString path; // filename
|
---|
| 267 | // while (texFound == aiReturn_SUCCESS)
|
---|
| 268 | // {
|
---|
| 269 | // texFound = scene->mMaterials[m]->GetTexture(aiTextureType_DIFFUSE, texIndex, &path);
|
---|
[365] | 270 | // NV_LOG_NOTICE( " material - ", path.data );
|
---|
[248] | 271 | // texIndex++;
|
---|
| 272 | // }
|
---|
| 273 | // }
|
---|
| 274 | // }
|
---|
| 275 | // else
|
---|
| 276 | // {
|
---|
[365] | 277 | // NV_LOG_NOTICE( "No materials" );
|
---|
[248] | 278 | // }
|
---|
[365] | 279 | // NV_LOG_NOTICE( "------------------------" );
|
---|
[248] | 280 |
|
---|
| 281 | }
|
---|
| 282 |
|
---|
[291] | 283 | mesh_nodes_data* nv::assimp_loader::release_merged_bones( mesh_data* meshes )
|
---|
[248] | 284 | {
|
---|
[406] | 285 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[383] | 286 | vector< mesh_node_data > final_bones;
|
---|
[392] | 287 | unordered_map< std::string, uint16 > names;
|
---|
[291] | 288 | for ( unsigned int m = 0; m < m_mesh_count; ++m )
|
---|
[248] | 289 | {
|
---|
[323] | 290 | uint16 translate[MAX_BONES];
|
---|
[383] | 291 | vector< mesh_node_data > bones;
|
---|
[291] | 292 | const aiMesh* mesh = scene->mMeshes[ m ];
|
---|
| 293 | if ( mesh->mNumBones != 0 )
|
---|
[248] | 294 | {
|
---|
[291] | 295 | bones.resize( mesh->mNumBones );
|
---|
| 296 | load_bones( m, bones );
|
---|
| 297 | for ( unsigned int b = 0; b < mesh->mNumBones; ++b )
|
---|
| 298 | {
|
---|
[248] | 299 |
|
---|
[291] | 300 | mesh_node_data& bone = bones[b];
|
---|
| 301 | auto iname = names.find( bone.name );
|
---|
| 302 | if ( iname == names.end() )
|
---|
| 303 | {
|
---|
| 304 | NV_ASSERT( final_bones.size() < MAX_BONES, "Too many bones to merge!" );
|
---|
[406] | 305 | uint16 index = uint16( final_bones.size() );
|
---|
[291] | 306 | final_bones.push_back( bone );
|
---|
| 307 | names[ bone.name ] = index;
|
---|
| 308 | translate[b] = index;
|
---|
| 309 | }
|
---|
| 310 | else
|
---|
| 311 | {
|
---|
[323] | 312 | translate[b] = iname->second;
|
---|
[291] | 313 | }
|
---|
[248] | 314 | }
|
---|
[291] | 315 | if ( m > 0 && bones.size() > 0 )
|
---|
[248] | 316 | {
|
---|
[413] | 317 | data_channel_creator< assimp_skinned_vtx > channel( meshes[m].get_raw_channels()[0] );
|
---|
| 318 | for ( unsigned v = 0; v < channel.size(); ++v )
|
---|
[291] | 319 | {
|
---|
[413] | 320 | assimp_skinned_vtx& vertex = channel.data()[v];
|
---|
[248] | 321 |
|
---|
[406] | 322 | for ( int i = 0 ; i < 4; ++i)
|
---|
[248] | 323 | {
|
---|
[291] | 324 | if ( vertex.boneweight[i] > 0.0f )
|
---|
| 325 | {
|
---|
[406] | 326 | vertex.boneindex[i] = int( translate[vertex.boneindex[i]] );
|
---|
[291] | 327 | }
|
---|
[248] | 328 | }
|
---|
| 329 | }
|
---|
| 330 | }
|
---|
[291] | 331 | }
|
---|
[248] | 332 | }
|
---|
[291] | 333 | mesh_node_data* bones = new mesh_node_data[ final_bones.size() ];
|
---|
[392] | 334 | raw_copy( final_bones.begin(), final_bones.end(), bones );
|
---|
[291] | 335 | return new mesh_nodes_data( "bones", final_bones.size(), bones );
|
---|
[248] | 336 | }
|
---|
| 337 |
|
---|
[294] | 338 | mesh_nodes_data* nv::assimp_loader::release_mesh_nodes_data( size_t index /*= 0*/ )
|
---|
[249] | 339 | {
|
---|
| 340 | if ( m_scene == nullptr ) return nullptr;
|
---|
[406] | 341 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[291] | 342 | if ( scene->mRootNode == nullptr || scene->mAnimations == nullptr || scene->mAnimations[index] == nullptr) return nullptr;
|
---|
[249] | 343 |
|
---|
| 344 | const aiNode* root = scene->mRootNode;
|
---|
[291] | 345 | const aiAnimation* anim = scene->mAnimations[index];
|
---|
[249] | 346 |
|
---|
[291] | 347 | uint32 count = count_nodes( scene->mRootNode );
|
---|
| 348 | mesh_node_data* data = new mesh_node_data[count];
|
---|
[249] | 349 |
|
---|
[406] | 350 | uint16 frame_rate = static_cast<uint16>( anim->mTicksPerSecond );
|
---|
| 351 | float duration = static_cast<float>( anim->mDuration );
|
---|
[293] | 352 | bool flat = false;
|
---|
[287] | 353 |
|
---|
[293] | 354 | load_node( index, data, root, 0, -1 );
|
---|
[291] | 355 |
|
---|
[293] | 356 | return new mesh_nodes_data( anim->mName.data, count, data, frame_rate, duration, flat );
|
---|
[249] | 357 | }
|
---|
| 358 |
|
---|
| 359 | nv::uint32 nv::assimp_loader::count_nodes( const void* node ) const
|
---|
| 360 | {
|
---|
[406] | 361 | const aiNode* ainode = reinterpret_cast< const aiNode* >( node );
|
---|
[249] | 362 | nv::uint32 count = 1;
|
---|
| 363 | for ( unsigned i = 0; i < ainode->mNumChildren; ++i )
|
---|
| 364 | {
|
---|
| 365 | count += count_nodes( ainode->mChildren[i] );
|
---|
| 366 | }
|
---|
| 367 | return count;
|
---|
| 368 | }
|
---|
| 369 |
|
---|
[293] | 370 | nv::sint16 nv::assimp_loader::load_node( uint32 anim_id, mesh_node_data* nodes, const void* vnode, sint16 this_id, sint16 parent_id )
|
---|
[249] | 371 | {
|
---|
[406] | 372 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
| 373 | const aiNode* node = reinterpret_cast<const aiNode*>( vnode );
|
---|
[380] | 374 | std::string name( node->mName.data );
|
---|
[291] | 375 | const aiAnimation* anim = scene->mAnimations[anim_id];
|
---|
[249] | 376 | const aiNodeAnim* anode = nullptr;
|
---|
| 377 |
|
---|
| 378 | for ( unsigned i = 0 ; i < anim->mNumChannels ; i++ )
|
---|
| 379 | {
|
---|
| 380 | anode = anim->mChannels[i];
|
---|
| 381 | if ( std::string( anode->mNodeName.data ) == name ) break;
|
---|
| 382 | anode = nullptr;
|
---|
| 383 | }
|
---|
| 384 |
|
---|
[291] | 385 | mesh_node_data& a_data = nodes[ this_id ];
|
---|
[249] | 386 |
|
---|
| 387 | a_data.name = name;
|
---|
[291] | 388 | a_data.target_id = -1;
|
---|
[249] | 389 | a_data.parent_id = parent_id;
|
---|
[279] | 390 | // This value is ignored by the create_transformed_keys, but needed by create_direct_keys!
|
---|
| 391 | // TODO: find a common solution!
|
---|
| 392 | // This is bad because create_transformed_keys never uses node-transformations for
|
---|
| 393 | // node's without keys
|
---|
[249] | 394 | a_data.transform = nv::assimp_mat4_cast( node->mTransformation );
|
---|
[284] | 395 | if (this_id == 0)
|
---|
| 396 | a_data.transform = mat4();
|
---|
[285] | 397 | a_data.data = nullptr;
|
---|
[249] | 398 |
|
---|
[293] | 399 | if (anode) create_keys( &a_data, anode );
|
---|
[249] | 400 |
|
---|
[291] | 401 | nv::sint16 next = this_id + 1;
|
---|
[249] | 402 | for ( unsigned i = 0; i < node->mNumChildren; ++i )
|
---|
| 403 | {
|
---|
[293] | 404 | next = load_node( anim_id, nodes, node->mChildren[i], next, this_id );
|
---|
[249] | 405 | }
|
---|
[287] | 406 |
|
---|
[249] | 407 | return next;
|
---|
| 408 | }
|
---|
| 409 |
|
---|
[293] | 410 | void nv::assimp_loader::create_keys( mesh_node_data* data, const void* vnode )
|
---|
[249] | 411 | {
|
---|
[406] | 412 | const aiNodeAnim* node = reinterpret_cast< const aiNodeAnim* >( vnode );
|
---|
[282] | 413 | if ( node->mNumPositionKeys == 0 && node->mNumRotationKeys == 0 && node->mNumScalingKeys == 0 )
|
---|
| 414 | {
|
---|
| 415 | return;
|
---|
| 416 | }
|
---|
[249] | 417 |
|
---|
[285] | 418 | data->data = new key_data;
|
---|
[413] | 419 | data_channel_creator< assimp_key_p > pchannel_creator( node->mNumPositionKeys );
|
---|
| 420 | data_channel_creator< assimp_key_r > rchannel_creator( node->mNumRotationKeys );
|
---|
| 421 | // data_channel_creator< assimp_key_s > schannel_creator( node->mNumScalingKeys );
|
---|
| 422 |
|
---|
| 423 | assimp_key_p* pchannel = pchannel_creator.data();
|
---|
| 424 | assimp_key_r* rchannel = rchannel_creator.data();
|
---|
[287] | 425 | //assimp_key_s* schannel = ((assimp_key_s*)(raw_schannel->data));
|
---|
[282] | 426 |
|
---|
[249] | 427 | for ( unsigned np = 0; np < node->mNumPositionKeys; ++np )
|
---|
| 428 | {
|
---|
[410] | 429 | pchannel[np].time = static_cast<float>( node->mPositionKeys[np].mTime );
|
---|
| 430 | pchannel[np].translation = assimp_vec3_cast(node->mPositionKeys[np].mValue);
|
---|
[249] | 431 | }
|
---|
| 432 | for ( unsigned np = 0; np < node->mNumRotationKeys; ++np )
|
---|
| 433 | {
|
---|
[406] | 434 | rchannel[np].time = static_cast<float>( node->mRotationKeys[np].mTime );
|
---|
[293] | 435 | rchannel[np].rotation = assimp_quat_cast(node->mRotationKeys[np].mValue );
|
---|
[249] | 436 | }
|
---|
[287] | 437 | // if ( node->mNumScalingKeys > 0 )
|
---|
| 438 | // {
|
---|
| 439 | // nv::vec3 scale_vec0 = assimp_vec3_cast( node->mScalingKeys[0].mValue );
|
---|
| 440 | // float scale_value = glm::length( glm::abs( scale_vec0 - nv::vec3(1,1,1) ) );
|
---|
| 441 | // if ( node->mNumScalingKeys > 1 || scale_value > 0.001 )
|
---|
| 442 | // {
|
---|
| 443 | // NV_LOG( nv::LOG_WARNING, "scale key significant!" );
|
---|
| 444 | // for ( unsigned np = 0; np < node->mNumRotationKeys; ++np )
|
---|
| 445 | // {
|
---|
| 446 | // schannel[np].time = (float)node->mScalingKeys[np].mTime;
|
---|
| 447 | // schannel[np].scale = assimp_vec3_cast(node->mScalingKeys[np].mValue);
|
---|
| 448 | // }
|
---|
| 449 | // }
|
---|
| 450 | // else
|
---|
| 451 | // {
|
---|
| 452 | // schannel[0].time = (float)node->mScalingKeys[0].mTime;
|
---|
| 453 | // schannel[0].scale = assimp_vec3_cast(node->mScalingKeys[0].mValue);
|
---|
| 454 | // }
|
---|
| 455 | // }
|
---|
[413] | 456 | data->data->add_channel( pchannel_creator.release() );
|
---|
| 457 | data->data->add_channel( rchannel_creator.release() );
|
---|
| 458 | // data->data->add_channel( schannel_creator.release() );
|
---|
[287] | 459 | }
|
---|
| 460 |
|
---|
| 461 | mesh_data_pack* nv::assimp_loader::release_mesh_data_pack()
|
---|
| 462 | {
|
---|
[291] | 463 | if ( m_scene == nullptr || m_mesh_count == 0 ) return nullptr;
|
---|
[406] | 464 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[291] | 465 | bool has_bones = false;
|
---|
[287] | 466 | mesh_data* meshes = new mesh_data[ m_mesh_count ];
|
---|
[291] | 467 | for ( size_t m = 0; m < m_mesh_count; ++m )
|
---|
[249] | 468 | {
|
---|
[291] | 469 | const aiMesh* mesh = scene->mMeshes[ m ];
|
---|
| 470 | meshes[m].set_name( mesh->mName.data );
|
---|
| 471 | if ( mesh->mNumBones > 0 ) has_bones = true;
|
---|
| 472 | load_mesh_data(&meshes[m],m);
|
---|
[249] | 473 | }
|
---|
[291] | 474 |
|
---|
[294] | 475 | mesh_nodes_data* nodes = ( has_bones ? release_merged_bones( meshes ) : release_mesh_nodes_data(0) );
|
---|
[291] | 476 | return new mesh_data_pack( m_mesh_count, meshes, nodes );
|
---|
[287] | 477 | }
|
---|
[284] | 478 |
|
---|
[376] | 479 | nv::size_t nv::assimp_loader::get_nodes_data_count() const
|
---|
[287] | 480 | {
|
---|
[291] | 481 | if ( m_scene == nullptr ) return 0;
|
---|
[406] | 482 | const aiScene* scene = reinterpret_cast<const aiScene*>( m_scene );
|
---|
[291] | 483 | return scene->mNumAnimations;
|
---|
[249] | 484 | }
|
---|
| 485 |
|
---|
[291] | 486 |
|
---|