[395] | 1 | // Copyright (C) 2012-2015 ChaosForge Ltd
|
---|
| 2 | // http://chaosforge.org/
|
---|
| 3 | //
|
---|
| 4 | // This file is part of Nova libraries.
|
---|
| 5 | // For conditions of distribution and use, see copying.txt file in root folder.
|
---|
[190] | 6 |
|
---|
| 7 | #include "nv/formats/md5_loader.hh"
|
---|
| 8 |
|
---|
[319] | 9 | #include "nv/core/logging.hh"
|
---|
[392] | 10 | #include "nv/stl/vector.hh"
|
---|
[190] | 11 | #include "nv/io/std_stream.hh"
|
---|
| 12 |
|
---|
[401] | 13 | #include <stdio.h> // sscanf
|
---|
| 14 | #include <stdlib.h> // atof
|
---|
| 15 |
|
---|
[190] | 16 | using namespace nv;
|
---|
| 17 |
|
---|
| 18 | static void next_line( std::istream& stream )
|
---|
| 19 | {
|
---|
[367] | 20 | stream.ignore( 1024*1024, '\n' );
|
---|
[190] | 21 | }
|
---|
| 22 |
|
---|
| 23 | static inline void discard( std::istream& stream, const std::string& token )
|
---|
| 24 | {
|
---|
| 25 | std::string discarded;
|
---|
| 26 | stream >> discarded;
|
---|
| 27 | assert( discarded == token );
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | static void remove_quotes( std::string& str )
|
---|
| 31 | {
|
---|
[376] | 32 | nv::size_t n;
|
---|
[190] | 33 | while ( ( n = str.find('\"') ) != std::string::npos ) str.erase(n,1);
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[398] | 36 | static void unit_quat_w( nv::quat& quat )
|
---|
[190] | 37 | {
|
---|
| 38 | float t = 1.0f - ( quat.x * quat.x ) - ( quat.y * quat.y ) - ( quat.z * quat.z );
|
---|
| 39 | quat.w = ( t < 0.0f ? 0.0f : -sqrtf(t) );
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | bool md5_loader::load( stream& source )
|
---|
| 43 | {
|
---|
[289] | 44 | reset();
|
---|
[190] | 45 | std_stream sstream( &source );
|
---|
| 46 | std::string command;
|
---|
[289] | 47 | mesh_node_data* nodes = nullptr;
|
---|
| 48 | size_t num_joints = 0;
|
---|
| 49 |
|
---|
| 50 | // MESH data
|
---|
[261] | 51 | dynamic_array< md5_weight > weights;
|
---|
| 52 | dynamic_array< md5_weight_info > weight_info;
|
---|
[289] | 53 | size_t num_meshes = 0;
|
---|
[190] | 54 |
|
---|
[289] | 55 | // MESH data
|
---|
[383] | 56 | dynamic_array< md5_joint_info > joint_infos;
|
---|
| 57 | vector< transform > base_frames;
|
---|
[289] | 58 | size_t num_animated_components = 0;
|
---|
| 59 | size_t frame_rate = 0;
|
---|
| 60 | size_t num_frames = 0;
|
---|
| 61 |
|
---|
[190] | 62 | sstream >> command;
|
---|
| 63 | while ( !sstream.eof() )
|
---|
| 64 | {
|
---|
| 65 | if ( command == "MD5Version" )
|
---|
| 66 | {
|
---|
| 67 | sstream >> m_md5_version;
|
---|
| 68 | assert( m_md5_version == 10 );
|
---|
| 69 | }
|
---|
| 70 | else if ( command == "commandline" )
|
---|
| 71 | {
|
---|
| 72 | next_line( sstream );
|
---|
| 73 | }
|
---|
| 74 | else if ( command == "numJoints" )
|
---|
| 75 | {
|
---|
[289] | 76 | sstream >> num_joints;
|
---|
| 77 | next_line( sstream );
|
---|
[190] | 78 | }
|
---|
| 79 | else if ( command == "numMeshes" )
|
---|
| 80 | {
|
---|
[289] | 81 | assert( m_type == UNKNOWN );
|
---|
| 82 | m_type = MESH;
|
---|
| 83 | sstream >> num_meshes;
|
---|
| 84 | m_meshes.resize( num_meshes );
|
---|
| 85 | num_meshes = 0;
|
---|
[190] | 86 | }
|
---|
[289] | 87 | else if ( command == "numFrames" )
|
---|
| 88 | {
|
---|
| 89 | assert( m_type == UNKNOWN || m_type == ANIMATION );
|
---|
| 90 | m_type = ANIMATION;
|
---|
| 91 | sstream >> num_frames;
|
---|
| 92 | next_line( sstream );
|
---|
| 93 | }
|
---|
| 94 | else if ( command == "frameRate" )
|
---|
| 95 | {
|
---|
| 96 | assert( m_type == UNKNOWN || m_type == ANIMATION );
|
---|
| 97 | m_type = ANIMATION;
|
---|
| 98 | sstream >> frame_rate;
|
---|
| 99 | next_line( sstream );
|
---|
| 100 | }
|
---|
| 101 | else if ( command == "numAnimatedComponents" )
|
---|
| 102 | {
|
---|
| 103 | assert( m_type == UNKNOWN || m_type == ANIMATION );
|
---|
| 104 | m_type = ANIMATION;
|
---|
| 105 | sstream >> num_animated_components;
|
---|
| 106 | next_line( sstream );
|
---|
| 107 | }
|
---|
[190] | 108 | else if ( command == "joints" )
|
---|
| 109 | {
|
---|
[289] | 110 | assert( m_type == MESH );
|
---|
| 111 | assert( m_nodes == nullptr );
|
---|
| 112 | nodes = new mesh_node_data[ num_joints ];
|
---|
| 113 | m_nodes = new mesh_nodes_data( "md5_bones", num_joints, nodes );
|
---|
[190] | 114 | discard( sstream, "{" );
|
---|
[289] | 115 | for ( size_t i = 0; i < m_nodes->get_count(); ++i )
|
---|
[190] | 116 | {
|
---|
[289] | 117 | sstream >> nodes[i].name >> nodes[i].parent_id;
|
---|
| 118 | vec3 pos;
|
---|
| 119 | quat orient;
|
---|
[190] | 120 | discard( sstream, "(" );
|
---|
[289] | 121 | sstream >> pos.x >> pos.y >> pos.z;
|
---|
[190] | 122 | discard( sstream, ")" );
|
---|
| 123 | discard( sstream, "(" );
|
---|
[289] | 124 | sstream >> orient.x >> orient.y >> orient.z;
|
---|
| 125 | unit_quat_w( orient );
|
---|
| 126 | remove_quotes( nodes[i].name );
|
---|
| 127 | nodes[i].target_id = -1;
|
---|
| 128 | nodes[i].parent_id = -1;
|
---|
| 129 | nodes[i].transform = transform( pos, orient ).inverse().extract();
|
---|
| 130 | nodes[i].data = nullptr;
|
---|
[190] | 131 | next_line( sstream );
|
---|
| 132 | }
|
---|
| 133 | discard( sstream, "}" );
|
---|
| 134 | }
|
---|
| 135 | else if ( command == "mesh" )
|
---|
| 136 | {
|
---|
[289] | 137 | assert( m_type == MESH );
|
---|
[287] | 138 | mesh_data* mesh = new mesh_data("md5_mesh");
|
---|
[239] | 139 |
|
---|
[323] | 140 | uint32 num_verts = 0;
|
---|
| 141 | uint32 num_tris = 0;
|
---|
| 142 | uint32 num_weights = 0;
|
---|
[190] | 143 |
|
---|
| 144 | discard( sstream, "{" );
|
---|
| 145 | sstream >> command;
|
---|
| 146 | while ( command != "}" )
|
---|
| 147 | {
|
---|
| 148 | if ( command == "shader" )
|
---|
| 149 | {
|
---|
[287] | 150 | std::string shader;
|
---|
| 151 | sstream >> shader;
|
---|
| 152 | remove_quotes( shader );
|
---|
[190] | 153 | next_line( sstream );
|
---|
| 154 | }
|
---|
| 155 | else if ( command == "numverts")
|
---|
| 156 | {
|
---|
| 157 | sstream >> num_verts;
|
---|
[239] | 158 |
|
---|
[287] | 159 | md5_vtx_t* tdata = nullptr;
|
---|
[239] | 160 | {
|
---|
[415] | 161 | data_channel_creator<md5_vtx_pnt> ch_pnt( num_verts );
|
---|
| 162 | data_channel_creator<md5_vtx_t> ch_t( num_verts );
|
---|
| 163 | data_channel_creator<md5_vtx_pntiw> ch_pntiw( num_verts );
|
---|
[413] | 164 | tdata = ch_t.data();
|
---|
| 165 | mesh->add_channel( ch_pnt.release() );
|
---|
| 166 | mesh->add_channel( ch_t.release() );
|
---|
[287] | 167 | // TODO: hack to prevent rendering
|
---|
[412] | 168 | //ch_pntiw->m_count = 0;
|
---|
[415] | 169 | mesh->add_channel( ch_pntiw.release() );
|
---|
[239] | 170 | }
|
---|
[259] | 171 | weight_info.resize( num_verts );
|
---|
[239] | 172 |
|
---|
[190] | 173 | next_line( sstream );
|
---|
[226] | 174 | std::string line;
|
---|
[323] | 175 | for ( uint32 i = 0; i < num_verts; ++i )
|
---|
[190] | 176 | {
|
---|
[239] | 177 | size_t weight_count;
|
---|
| 178 | size_t start_weight;
|
---|
| 179 | vec2 texcoord;
|
---|
[190] | 180 |
|
---|
[226] | 181 | std::getline( sstream, line );
|
---|
[239] | 182 | sscanf( line.c_str(), "%*s %*u ( %f %f ) %u %u", &(texcoord.x), &(texcoord.y), &(start_weight), &(weight_count) );
|
---|
[259] | 183 | weight_info[i].start_weight = start_weight;
|
---|
| 184 | weight_info[i].weight_count = weight_count;
|
---|
[287] | 185 | tdata[i].texcoord = texcoord;
|
---|
[190] | 186 | }
|
---|
| 187 | }
|
---|
| 188 | else if ( command == "numtris" )
|
---|
| 189 | {
|
---|
| 190 | sstream >> num_tris;
|
---|
[239] | 191 |
|
---|
[413] | 192 | data_channel_creator< index_u32 > ch_i( num_tris * 3 );
|
---|
| 193 | uint32* vtx_i = reinterpret_cast< uint32* >( ch_i.raw_data() );
|
---|
[239] | 194 | uint32 idx = 0;
|
---|
| 195 |
|
---|
[190] | 196 | next_line( sstream );
|
---|
[226] | 197 | std::string line;
|
---|
[323] | 198 | for ( uint32 i = 0; i < num_tris; ++i )
|
---|
[190] | 199 | {
|
---|
[406] | 200 | unsigned ti0;
|
---|
| 201 | unsigned ti1;
|
---|
| 202 | unsigned ti2;
|
---|
[190] | 203 |
|
---|
[226] | 204 | std::getline( sstream, line );
|
---|
[239] | 205 | sscanf( line.c_str(), "%*s %*u %u %u %u )", &(ti0), &(ti1), &(ti2));
|
---|
[226] | 206 |
|
---|
[406] | 207 | vtx_i[idx++] = ti0;
|
---|
| 208 | vtx_i[idx++] = ti1;
|
---|
| 209 | vtx_i[idx++] = ti2;
|
---|
[190] | 210 | }
|
---|
[413] | 211 |
|
---|
| 212 | mesh->add_channel( ch_i.release() );
|
---|
[190] | 213 | }
|
---|
| 214 | else if ( command == "numweights" )
|
---|
| 215 | {
|
---|
| 216 | sstream >> num_weights;
|
---|
[261] | 217 | weights.resize( num_weights );
|
---|
[190] | 218 | next_line( sstream );
|
---|
[226] | 219 | std::string line;
|
---|
[323] | 220 | for ( uint32 i = 0; i < num_weights; ++i )
|
---|
[190] | 221 | {
|
---|
| 222 | md5_weight weight;
|
---|
[226] | 223 |
|
---|
| 224 | std::getline( sstream, line );
|
---|
| 225 | sscanf( line.c_str(), "%*s %*u %u %f ( %f %f %f )", &(weight.joint_id), &(weight.bias), &(weight.pos.x), &(weight.pos.y), &(weight.pos.z));
|
---|
[261] | 226 | weights[i] = weight;
|
---|
[190] | 227 | }
|
---|
| 228 | }
|
---|
| 229 | else
|
---|
| 230 | {
|
---|
| 231 | next_line( sstream );
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | sstream >> command;
|
---|
| 235 | }
|
---|
| 236 |
|
---|
[415] | 237 | prepare_mesh( nodes, weight_info.size(), mesh, weights.data(), weight_info.data() );
|
---|
[190] | 238 |
|
---|
[289] | 239 | m_meshes[ num_meshes ] = mesh;
|
---|
| 240 | num_meshes++;
|
---|
| 241 | } // mesh
|
---|
| 242 | else if ( command == "hierarchy" )
|
---|
| 243 | {
|
---|
| 244 | assert( m_type == ANIMATION );
|
---|
| 245 | assert( nodes == nullptr );
|
---|
| 246 | nodes = new mesh_node_data[ num_joints ];
|
---|
[406] | 247 | m_nodes = new mesh_nodes_data( "md5_animation", num_joints, nodes, static_cast< nv::uint16 >( frame_rate ), static_cast< float >( num_frames ), true );
|
---|
[289] | 248 | joint_infos.resize( num_joints );
|
---|
| 249 |
|
---|
| 250 | discard( sstream, "{" );
|
---|
| 251 | for ( size_t i = 0; i < m_nodes->get_count(); ++i )
|
---|
| 252 | {
|
---|
| 253 | std::string name;
|
---|
| 254 | sstream >> nodes[i].name >> nodes[i].parent_id >> joint_infos[i].flags >> joint_infos[i].start_index;
|
---|
| 255 | remove_quotes( name );
|
---|
| 256 | nodes[i].transform = mat4();
|
---|
| 257 | nodes[i].target_id = -1;
|
---|
| 258 | nodes[i].data = new key_data;
|
---|
[415] | 259 | data_channel_creator< md5_key_t > fc( num_frames );
|
---|
| 260 | nodes[i].data->add_channel( fc.release() );
|
---|
[289] | 261 | next_line( sstream );
|
---|
| 262 | }
|
---|
| 263 | discard( sstream, "}" );
|
---|
[190] | 264 | }
|
---|
[289] | 265 | else if ( command == "bounds" )
|
---|
| 266 | {
|
---|
| 267 | assert( m_type == ANIMATION );
|
---|
| 268 | discard( sstream, "{" );
|
---|
| 269 | next_line( sstream );
|
---|
| 270 | for ( size_t i = 0; i < num_frames; ++i )
|
---|
| 271 | {
|
---|
| 272 | // vec3 min;
|
---|
| 273 | // vec3 max;
|
---|
| 274 | // discard( sstream, "(" );
|
---|
| 275 | // sstream >> min.x >> min.y >> min.z;
|
---|
| 276 | // discard( sstream, ")" );
|
---|
| 277 | // discard( sstream, "(" );
|
---|
| 278 | // sstream >> max.x >> max.y >> max.z;
|
---|
| 279 | // m_bounds.push_back( bound );
|
---|
| 280 | next_line( sstream );
|
---|
| 281 | }
|
---|
| 282 |
|
---|
| 283 | discard( sstream, "}" );
|
---|
| 284 | next_line( sstream );
|
---|
| 285 | }
|
---|
| 286 | else if ( command == "baseframe" )
|
---|
| 287 | {
|
---|
| 288 | assert( m_type == ANIMATION );
|
---|
| 289 | discard( sstream, "{" );
|
---|
| 290 | next_line( sstream );
|
---|
| 291 |
|
---|
| 292 | for ( size_t i = 0; i < m_nodes->get_count(); ++i )
|
---|
| 293 | {
|
---|
| 294 | transform base_frame;
|
---|
| 295 | vec3 pos;
|
---|
| 296 | quat orient;
|
---|
| 297 | discard( sstream, "(" );
|
---|
| 298 | sstream >> pos.x >> pos.y >> pos.z;
|
---|
| 299 | discard( sstream, ")" );
|
---|
| 300 | discard( sstream, "(" );
|
---|
| 301 | sstream >> orient.x >> orient.y >> orient.z;
|
---|
| 302 | next_line( sstream );
|
---|
| 303 |
|
---|
| 304 | base_frames.emplace_back( pos, orient );
|
---|
| 305 | }
|
---|
| 306 | discard( sstream, "}" );
|
---|
| 307 | next_line( sstream );
|
---|
| 308 | }
|
---|
| 309 | else if ( command == "frame" )
|
---|
| 310 | {
|
---|
[383] | 311 | vector<float> frame;
|
---|
[289] | 312 | uint32 frame_id;
|
---|
| 313 | sstream >> frame_id;
|
---|
| 314 | discard( sstream, "{" );
|
---|
| 315 | next_line( sstream );
|
---|
| 316 |
|
---|
| 317 | frame.reserve( num_animated_components );
|
---|
| 318 | char buf[50];
|
---|
| 319 | for ( size_t i = 0; i < num_animated_components; ++i )
|
---|
| 320 | {
|
---|
| 321 | sstream >> buf;
|
---|
[406] | 322 | frame.push_back( static_cast< float >( atof(buf) ) );
|
---|
[289] | 323 | }
|
---|
| 324 |
|
---|
| 325 | build_frame_skeleton( nodes, frame_id, joint_infos, base_frames, frame );
|
---|
| 326 |
|
---|
| 327 | discard( sstream, "}" );
|
---|
| 328 | next_line( sstream );
|
---|
| 329 | }
|
---|
| 330 |
|
---|
[190] | 331 | sstream >> command;
|
---|
| 332 | }
|
---|
| 333 |
|
---|
| 334 | return true;
|
---|
| 335 | }
|
---|
| 336 |
|
---|
[415] | 337 | bool md5_loader::prepare_mesh( mesh_node_data* nodes, uint32 vtx_count, mesh_data* mdata, md5_weight* weights, md5_weight_info* weight_info )
|
---|
[190] | 338 | {
|
---|
[289] | 339 | assert( m_type == MESH );
|
---|
[415] | 340 | data_channel_creator< md5_vtx_pnt > pnt ( const_cast< raw_data_channel* >( mdata->get_channel< md5_vtx_pnt >() ) );
|
---|
| 341 | data_channel_creator< md5_vtx_pntiw > pntiw( const_cast< raw_data_channel* >( mdata->get_channel< md5_vtx_pntiw >() ) );
|
---|
| 342 | md5_vtx_pntiw* vtx_data = pntiw.data();
|
---|
| 343 | md5_vtx_pnt* vtcs = pnt.data();
|
---|
[190] | 344 |
|
---|
[239] | 345 | for ( uint32 i = 0; i < vtx_count; ++i )
|
---|
[190] | 346 | {
|
---|
[259] | 347 | size_t start_weight = weight_info[i].start_weight;
|
---|
| 348 | size_t weight_count = weight_info[i].weight_count;
|
---|
[287] | 349 | md5_vtx_pntiw& vdata = vtx_data[i];
|
---|
[239] | 350 | md5_vtx_pnt& vtc = vtcs[i];
|
---|
[190] | 351 |
|
---|
[398] | 352 | vtc.position = vec3(0);
|
---|
| 353 | vtc.normal = vec3(0);
|
---|
| 354 | vtc.tangent = vec3(0);
|
---|
[190] | 355 |
|
---|
[374] | 356 | stable_sort( weights + start_weight, weights + start_weight + weight_count, [] ( const md5_weight& a, const md5_weight& b ) -> bool { return a.bias > b.bias; } );
|
---|
| 357 | //std::sort( weights + start_weight, weights + start_weight + weight_count, [](const md5_weight& a, const md5_weight& b) -> bool { return a.bias > b.bias; } );
|
---|
[258] | 358 |
|
---|
[259] | 359 | if ( weight_count > 4 )
|
---|
[258] | 360 | {
|
---|
| 361 | float sum = 0.0f;
|
---|
| 362 | for ( size_t j = 0; j < 4; ++j )
|
---|
| 363 | {
|
---|
[259] | 364 | sum += weights[start_weight + j].bias;
|
---|
[258] | 365 | }
|
---|
| 366 | float ratio = 1.0f / sum;
|
---|
| 367 | for ( size_t j = 0; j < 4; ++j )
|
---|
| 368 | {
|
---|
[259] | 369 | weights[start_weight + j].bias = ratio * weights[start_weight + j].bias;
|
---|
[258] | 370 | }
|
---|
[259] | 371 | weight_count = 4;
|
---|
[258] | 372 | }
|
---|
| 373 |
|
---|
[406] | 374 | for ( int j = 0; j < 4; ++j )
|
---|
[190] | 375 | {
|
---|
[406] | 376 | if ( j < int(weight_count) )
|
---|
[259] | 377 | {
|
---|
[406] | 378 | vdata.boneindex[j] = int( weights[int(start_weight) + j].joint_id );
|
---|
| 379 | vdata.boneweight[j] = weights[int(start_weight) + j].bias;
|
---|
[259] | 380 | }
|
---|
| 381 | else
|
---|
| 382 | {
|
---|
| 383 | vdata.boneindex[j] = 0;
|
---|
| 384 | vdata.boneweight[j] = 0.0f;
|
---|
| 385 | }
|
---|
| 386 | }
|
---|
[190] | 387 |
|
---|
[259] | 388 | for ( size_t j = 0; j < 4; ++j )
|
---|
| 389 | {
|
---|
| 390 | if ( j < weight_count )
|
---|
| 391 | {
|
---|
[289] | 392 | md5_weight& weight = weights[start_weight + j];
|
---|
| 393 | const mesh_node_data& joint = nodes[weight.joint_id];
|
---|
| 394 | const transform tr = transform( joint.transform ).inverse();
|
---|
[398] | 395 | vec3 rot_pos = tr.get_orientation() * weight.pos;
|
---|
[190] | 396 |
|
---|
[289] | 397 | vtc.position += ( tr.get_position() + rot_pos ) * weight.bias;
|
---|
[259] | 398 | }
|
---|
[190] | 399 | }
|
---|
| 400 | }
|
---|
| 401 |
|
---|
[413] | 402 | const uint32* idata = reinterpret_cast< uint32* >( const_cast< uint8* >( mdata->get_index_channel()->raw_data() ) );
|
---|
[287] | 403 | const md5_vtx_t* tdata = mdata->get_channel_data<md5_vtx_t>();
|
---|
| 404 |
|
---|
[239] | 405 | // Prepare normals
|
---|
| 406 | uint32 tri_count = mdata->get_count() / 3;
|
---|
| 407 | for ( unsigned int i = 0; i < tri_count; ++i )
|
---|
[190] | 408 | {
|
---|
[287] | 409 | uint32 ti0 = idata[ i * 3 ];
|
---|
| 410 | uint32 ti1 = idata[ i * 3 + 1 ];
|
---|
| 411 | uint32 ti2 = idata[ i * 3 + 2 ];
|
---|
[239] | 412 |
|
---|
[398] | 413 | vec3 v1 = vtcs[ ti0 ].position;
|
---|
| 414 | vec3 v2 = vtcs[ ti1 ].position;
|
---|
| 415 | vec3 v3 = vtcs[ ti2 ].position;
|
---|
| 416 | vec3 xyz1 = v3 - v1;
|
---|
| 417 | vec3 xyz2 = v2 - v1;
|
---|
[190] | 418 |
|
---|
[398] | 419 | vec3 normal = glm::cross( xyz1, xyz2 );
|
---|
[190] | 420 |
|
---|
[239] | 421 | vtcs[ ti0 ].normal += normal;
|
---|
| 422 | vtcs[ ti1 ].normal += normal;
|
---|
| 423 | vtcs[ ti2 ].normal += normal;
|
---|
[190] | 424 |
|
---|
[287] | 425 | const vec2& w1 = tdata[ ti0 ].texcoord;
|
---|
| 426 | const vec2& w2 = tdata[ ti1 ].texcoord;
|
---|
| 427 | const vec2& w3 = tdata[ ti2 ].texcoord;
|
---|
[190] | 428 |
|
---|
| 429 | vec2 st1 = w3 - w1;
|
---|
| 430 | vec2 st2 = w2 - w1;
|
---|
| 431 |
|
---|
| 432 | float coef = 1.0f / (st1.x * st2.y - st2.x * st1.y);
|
---|
| 433 |
|
---|
| 434 | vec3 tangent = (( xyz1 * st2.y ) - ( xyz2 * st1.y )) * coef;
|
---|
| 435 |
|
---|
[239] | 436 | vtcs[ ti0 ].tangent += tangent;
|
---|
| 437 | vtcs[ ti1 ].tangent += tangent;
|
---|
| 438 | vtcs[ ti2 ].tangent += tangent;
|
---|
[190] | 439 | }
|
---|
| 440 |
|
---|
[239] | 441 | for ( size_t i = 0; i < vtx_count; ++i )
|
---|
[190] | 442 | {
|
---|
[287] | 443 | md5_vtx_pntiw& vdata = vtx_data[i];
|
---|
[190] | 444 |
|
---|
[398] | 445 | vec3 normal = glm::normalize( vtcs[i].normal );
|
---|
| 446 | vec3 tangent = glm::normalize( vtcs[i].tangent );
|
---|
[239] | 447 | vtcs[i].normal = normal;
|
---|
| 448 | vtcs[i].tangent = tangent;
|
---|
[190] | 449 |
|
---|
[259] | 450 | vdata.position = vtcs[i].position;
|
---|
[398] | 451 | vdata.normal = vec3(0);
|
---|
| 452 | vdata.tangent = vec3(0);
|
---|
[239] | 453 |
|
---|
[406] | 454 | for ( int j = 0; j < 4; ++j )
|
---|
[239] | 455 | {
|
---|
[289] | 456 | const mesh_node_data& joint = nodes[vdata.boneindex[j]];
|
---|
| 457 | const transform tr = transform( joint.transform ).inverse();
|
---|
| 458 | vdata.normal += ( normal * tr.get_orientation() ) * vdata.boneweight[j];
|
---|
| 459 | vdata.tangent += ( tangent * tr.get_orientation() ) * vdata.boneweight[j];
|
---|
[239] | 460 | }
|
---|
[190] | 461 | }
|
---|
| 462 |
|
---|
| 463 | return true;
|
---|
| 464 | }
|
---|
| 465 |
|
---|
[399] | 466 | void md5_loader::build_frame_skeleton( mesh_node_data* nodes, uint32 index, const array_view<md5_joint_info>& joint_infos, const array_view<transform>& base_frames, const array_view<float>& frame_data )
|
---|
[191] | 467 | {
|
---|
[289] | 468 | assert( m_type == ANIMATION );
|
---|
[191] | 469 | for ( unsigned int i = 0; i < joint_infos.size(); ++i )
|
---|
| 470 | {
|
---|
| 471 | unsigned int j = 0;
|
---|
| 472 |
|
---|
| 473 | const md5_joint_info& jinfo = joint_infos[i];
|
---|
[289] | 474 | mesh_node_data& joint = nodes[i];
|
---|
| 475 | int parent_id = joint.parent_id;
|
---|
[191] | 476 |
|
---|
[241] | 477 | vec3 pos = base_frames[i].get_position();
|
---|
| 478 | quat orient = base_frames[i].get_orientation();
|
---|
| 479 | if ( jinfo.flags & 1 ) pos.x = frame_data[ jinfo.start_index + j++ ];
|
---|
| 480 | if ( jinfo.flags & 2 ) pos.y = frame_data[ jinfo.start_index + j++ ];
|
---|
| 481 | if ( jinfo.flags & 4 ) pos.z = frame_data[ jinfo.start_index + j++ ];
|
---|
| 482 | if ( jinfo.flags & 8 ) orient.x = frame_data[ jinfo.start_index + j++ ];
|
---|
| 483 | if ( jinfo.flags & 16 ) orient.y = frame_data[ jinfo.start_index + j++ ];
|
---|
| 484 | if ( jinfo.flags & 32 ) orient.z = frame_data[ jinfo.start_index + j++ ];
|
---|
| 485 | unit_quat_w( orient );
|
---|
[191] | 486 |
|
---|
[241] | 487 | if ( parent_id >= 0 ) // Has a parent joint
|
---|
[191] | 488 | {
|
---|
[289] | 489 | const mesh_node_data& pjoint = nodes[parent_id];
|
---|
[413] | 490 | const transform* ptv = reinterpret_cast< const transform* >( pjoint.data->get_channel(0)->raw_data() );
|
---|
[241] | 491 | transform ptr;
|
---|
[415] | 492 | if ( pjoint.data->get_channel(0)->size() > index ) ptr = ptv[ index ];
|
---|
[398] | 493 | vec3 rot_pos = ptr.get_orientation() * pos;
|
---|
[191] | 494 |
|
---|
[241] | 495 | pos = ptr.get_position() + rot_pos;
|
---|
| 496 | orient = ptr.get_orientation() * orient;
|
---|
[191] | 497 |
|
---|
[241] | 498 | orient = glm::normalize( orient );
|
---|
[191] | 499 | }
|
---|
| 500 |
|
---|
[413] | 501 | reinterpret_cast< transform* >( const_cast< uint8* >( joint.data->get_channel(0)->raw_data() ) )[index] = transform( pos, orient );
|
---|
[191] | 502 | }
|
---|
[241] | 503 | }
|
---|
[191] | 504 |
|
---|
[241] | 505 | mesh_data* nv::md5_loader::release_mesh_data( size_t index )
|
---|
| 506 | {
|
---|
| 507 | mesh_data* result = m_meshes[ index ];
|
---|
| 508 | m_meshes[ index ] = nullptr;
|
---|
| 509 | return result;
|
---|
[191] | 510 | }
|
---|
| 511 |
|
---|
[291] | 512 | mesh_nodes_data* nv::md5_loader::release_mesh_nodes_data( size_t )
|
---|
[191] | 513 | {
|
---|
[289] | 514 | mesh_nodes_data* nodes = m_nodes;
|
---|
| 515 | m_nodes = nullptr;
|
---|
| 516 | return nodes;
|
---|
[191] | 517 | }
|
---|
| 518 |
|
---|
[287] | 519 | mesh_data_pack* nv::md5_loader::release_mesh_data_pack()
|
---|
[191] | 520 | {
|
---|
[287] | 521 | uint32 size = m_meshes.size();
|
---|
| 522 | mesh_data* meshes = new mesh_data[ size ];
|
---|
| 523 | for ( uint32 i = 0; i < size; ++i )
|
---|
| 524 | {
|
---|
| 525 | m_meshes[i]->move_to( meshes[i] );
|
---|
| 526 | delete m_meshes[i];
|
---|
| 527 | m_meshes[i] = nullptr;
|
---|
| 528 | }
|
---|
| 529 | return new mesh_data_pack( size, meshes, release_mesh_nodes_data() );
|
---|
[191] | 530 | }
|
---|
| 531 |
|
---|
[287] | 532 |
|
---|
| 533 | nv::md5_loader::~md5_loader()
|
---|
[191] | 534 | {
|
---|
[289] | 535 | reset();
|
---|
| 536 | }
|
---|
| 537 |
|
---|
| 538 | void nv::md5_loader::reset()
|
---|
| 539 | {
|
---|
| 540 | if ( m_nodes ) delete m_nodes;
|
---|
[287] | 541 | for ( auto m : m_meshes ) { if (m) delete m; }
|
---|
[289] | 542 | m_meshes.resize(0);
|
---|
| 543 | m_nodes = nullptr;
|
---|
[239] | 544 | }
|
---|
| 545 |
|
---|