File include/avatar.h changed (mode: 100644) (index c853a12..d54c764) |
... |
... |
fgl::Texture *getCacheTexture( FILE *(*ModFopen)(const char*,const char*), const |
387 |
387 |
// Override current animation and blend to the first frame of new animation. |
// Override current animation and blend to the first frame of new animation. |
388 |
388 |
void Avatar::blendTo( const std::string &animation ){ |
void Avatar::blendTo( const std::string &animation ){ |
389 |
389 |
if( !smoothAnimation ) return; |
if( !smoothAnimation ) return; |
390 |
|
if( bodyFrame >= 0.0 ){ |
|
|
390 |
|
if( bodyFrame > 0.0 ){ |
391 |
391 |
bodyAnimations["_blend"] = |
bodyAnimations["_blend"] = |
392 |
392 |
linalg::vec<int,2>(std::floor(bodyFrame), bodyAnimations[animation].x); |
linalg::vec<int,2>(std::floor(bodyFrame), bodyAnimations[animation].x); |
393 |
393 |
bodyFrame = -1.0; |
bodyFrame = -1.0; |
394 |
394 |
} |
} |
395 |
|
if( headFrame >= 0.0 ){ |
|
|
395 |
|
if( headFrame > 0.0 ){ |
396 |
396 |
headAnimations["_blend"] = |
headAnimations["_blend"] = |
397 |
397 |
linalg::vec<int,2>(std::floor(headFrame), headAnimations[animation].x); |
linalg::vec<int,2>(std::floor(headFrame), headAnimations[animation].x); |
398 |
398 |
headFrame = -1.0; |
headFrame = -1.0; |
|
... |
... |
void Avatar::blendTo( const std::string &animation ){ |
400 |
400 |
} |
} |
401 |
401 |
|
|
402 |
402 |
void Avatar::simulate( const std::string &animation, double d, bool loop ){ |
void Avatar::simulate( const std::string &animation, double d, bool loop ){ |
403 |
|
bool blend = bodyFrame < 0.0 && headFrame < 0.0; |
|
404 |
|
if( blend ) loop = false; |
|
405 |
|
auto bodyAnim = bodyAnimations[blend ? "_blend" : animation]; |
|
406 |
|
auto headAnim = headAnimations[blend ? "_blend" : animation]; |
|
407 |
|
if( (!blend && bodyFrame < bodyAnim.x) || (loop && bodyFrame >= bodyAnim.y) ) |
|
|
403 |
|
bool bodyBlend = bodyFrame < 0.0, headBlend = headFrame < 0.0; |
|
404 |
|
auto bodyAnim = bodyAnimations[bodyBlend ? "_blend" : animation]; |
|
405 |
|
auto headAnim = headAnimations[headBlend ? "_blend" : animation]; |
|
406 |
|
if( (!bodyBlend && bodyFrame < bodyAnim.x) || (loop && bodyFrame >= bodyAnim.y) ) |
408 |
407 |
bodyFrame = bodyAnim.x; |
bodyFrame = bodyAnim.x; |
409 |
408 |
if( (double)bodyAnim.y - bodyAnim.x > 0.0 ){ |
if( (double)bodyAnim.y - bodyAnim.x > 0.0 ){ |
410 |
409 |
// Play the appropriate body animation. |
// Play the appropriate body animation. |
411 |
|
if( loop ){ |
|
|
410 |
|
if( loop && !bodyBlend ){ |
412 |
411 |
bodyFrame = bodyAnim.x |
bodyFrame = bodyAnim.x |
413 |
412 |
+ std::fmod(bodyFrame - bodyAnim.x + bodyFPS * d, (double)bodyAnim.y - bodyAnim.x); |
+ std::fmod(bodyFrame - bodyAnim.x + bodyFPS * d, (double)bodyAnim.y - bodyAnim.x); |
414 |
413 |
}else{ |
}else{ |
415 |
414 |
bodyFrame = std::min(bodyFrame + bodyFPS * d, (double)bodyAnim.y); |
bodyFrame = std::min(bodyFrame + bodyFPS * d, (double)bodyAnim.y); |
416 |
415 |
} |
} |
417 |
416 |
} |
} |
418 |
|
if( (!blend && headFrame < headAnim.x) || (loop && headFrame >= headAnim.y) ) |
|
|
417 |
|
if( (!headBlend && headFrame < headAnim.x) || (loop && headFrame >= headAnim.y) ) |
419 |
418 |
headFrame = headAnim.x; |
headFrame = headAnim.x; |
420 |
419 |
if( (double)headAnim.y - headAnim.x > 0.0 ){ |
if( (double)headAnim.y - headAnim.x > 0.0 ){ |
421 |
420 |
// Play the appropriate head animation. |
// Play the appropriate head animation. |
422 |
|
if( loop ){ |
|
|
421 |
|
if( loop && !headBlend ){ |
423 |
422 |
headFrame = headAnim.x |
headFrame = headAnim.x |
424 |
423 |
+ std::fmod(headFrame - headAnim.x + headFPS * d, (double)headAnim.y - headAnim.x); |
+ std::fmod(headFrame - headAnim.x + headFPS * d, (double)headAnim.y - headAnim.x); |
425 |
424 |
}else{ |
}else{ |
|
... |
... |
void Avatar::simulate( const std::string &animation, double d, bool loop ){ |
429 |
428 |
if( smoothAnimation ){ |
if( smoothAnimation ){ |
430 |
429 |
for( auto &prim : bodyPrims ){ |
for( auto &prim : bodyPrims ){ |
431 |
430 |
if( prim.meshes.size() == 0 ) continue; |
if( prim.meshes.size() == 0 ) continue; |
432 |
|
float frameA = blend ? bodyAnim.x |
|
|
431 |
|
float frameA = bodyBlend ? bodyAnim.x |
433 |
432 |
: std::fmod(bodyFrame - bodyAnim.x, bodyAnim.y) + bodyAnim.x; |
: std::fmod(bodyFrame - bodyAnim.x, bodyAnim.y) + bodyAnim.x; |
434 |
|
float frameB = blend ? bodyAnim.y |
|
|
433 |
|
float frameB = bodyBlend ? bodyAnim.y |
435 |
434 |
: std::fmod(frameA + 1.0 - bodyAnim.x, bodyAnim.y) + bodyAnim.x; |
: std::fmod(frameA + 1.0 - bodyAnim.x, bodyAnim.y) + bodyAnim.x; |
436 |
435 |
lerpMeshes( |
lerpMeshes( |
437 |
436 |
prim.streamingMesh, |
prim.streamingMesh, |
438 |
437 |
*prim.meshes[std::fmod((size_t)frameA, prim.meshes.size())], |
*prim.meshes[std::fmod((size_t)frameA, prim.meshes.size())], |
439 |
438 |
*prim.meshes[std::fmod((size_t)frameB, prim.meshes.size())], |
*prim.meshes[std::fmod((size_t)frameB, prim.meshes.size())], |
440 |
|
bodyFrame + (blend ? 1.0 : -std::floor(bodyFrame)) |
|
|
439 |
|
bodyFrame + (bodyBlend ? 1.0 : -std::floor(bodyFrame)) |
441 |
440 |
); |
); |
442 |
441 |
} |
} |
443 |
442 |
for( auto &prim : headPrims ){ |
for( auto &prim : headPrims ){ |
444 |
443 |
if( prim.meshes.size() == 0 ) continue; |
if( prim.meshes.size() == 0 ) continue; |
445 |
|
float frameA = blend ? headAnim.x |
|
|
444 |
|
float frameA = headBlend ? headAnim.x |
446 |
445 |
: std::fmod(headFrame - headAnim.x, headAnim.y) + headAnim.x; |
: std::fmod(headFrame - headAnim.x, headAnim.y) + headAnim.x; |
447 |
|
float frameB = blend ? headAnim.y |
|
|
446 |
|
float frameB = headBlend ? headAnim.y |
448 |
447 |
: std::fmod(frameA + 1.0 - headAnim.x, headAnim.y) + headAnim.x; |
: std::fmod(frameA + 1.0 - headAnim.x, headAnim.y) + headAnim.x; |
449 |
448 |
lerpMeshes( |
lerpMeshes( |
450 |
449 |
prim.streamingMesh, |
prim.streamingMesh, |
451 |
450 |
*prim.meshes[std::fmod((size_t)frameA, prim.meshes.size())], |
*prim.meshes[std::fmod((size_t)frameA, prim.meshes.size())], |
452 |
451 |
*prim.meshes[std::fmod((size_t)frameB, prim.meshes.size())], |
*prim.meshes[std::fmod((size_t)frameB, prim.meshes.size())], |
453 |
|
headFrame + (blend ? 1.0 : -std::floor(headFrame)) |
|
|
452 |
|
headFrame + (headBlend ? 1.0 : -std::floor(headFrame)) |
454 |
453 |
); |
); |
455 |
454 |
} |
} |
456 |
455 |
} |
} |