File include/avatar.h changed (mode: 100644) (index 07c9d7e..c853a12) |
... |
... |
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; |
|
|
403 |
|
bool blend = bodyFrame < 0.0 && headFrame < 0.0; |
404 |
404 |
if( blend ) loop = false; |
if( blend ) loop = false; |
405 |
405 |
auto bodyAnim = bodyAnimations[blend ? "_blend" : animation]; |
auto bodyAnim = bodyAnimations[blend ? "_blend" : animation]; |
406 |
406 |
auto headAnim = headAnimations[blend ? "_blend" : animation]; |
auto headAnim = headAnimations[blend ? "_blend" : animation]; |
407 |
|
if( bodyFrame < bodyAnim.x || (loop && bodyFrame >= bodyAnim.y) ) |
|
|
407 |
|
if( (!blend && bodyFrame < bodyAnim.x) || (loop && bodyFrame >= bodyAnim.y) ) |
408 |
408 |
bodyFrame = bodyAnim.x; |
bodyFrame = bodyAnim.x; |
409 |
409 |
if( (double)bodyAnim.y - bodyAnim.x > 0.0 ){ |
if( (double)bodyAnim.y - bodyAnim.x > 0.0 ){ |
410 |
410 |
// Play the appropriate body animation. |
// Play the appropriate body animation. |
|
... |
... |
void Avatar::simulate( const std::string &animation, double d, bool loop ){ |
415 |
415 |
bodyFrame = std::min(bodyFrame + bodyFPS * d, (double)bodyAnim.y); |
bodyFrame = std::min(bodyFrame + bodyFPS * d, (double)bodyAnim.y); |
416 |
416 |
} |
} |
417 |
417 |
} |
} |
418 |
|
if( headFrame < headAnim.x || (loop && headFrame >= headAnim.y) ) |
|
|
418 |
|
if( (!blend && headFrame < headAnim.x) || (loop && headFrame >= headAnim.y) ) |
419 |
419 |
headFrame = headAnim.x; |
headFrame = headAnim.x; |
420 |
420 |
if( (double)headAnim.y - headAnim.x > 0.0 ){ |
if( (double)headAnim.y - headAnim.x > 0.0 ){ |
421 |
421 |
// Play the appropriate head animation. |
// Play the appropriate head animation. |
File src/rsod.cpp changed (mode: 100644) (index 2b2c7d0..646212d) |
... |
... |
void FirstPersonLoop( double d ){ |
3789 |
3789 |
}else{ |
}else{ |
3790 |
3790 |
move = { 0.0f, 0.0f }; |
move = { 0.0f, 0.0f }; |
3791 |
3791 |
} |
} |
3792 |
|
// TODO: Customizable jump velocity. |
|
3793 |
3792 |
player_translation = { |
player_translation = { |
3794 |
3793 |
move.x, |
move.x, |
3795 |
3794 |
jumpButtonDown ? (float)dungeon.playerAgent->jumpVel : 0.0f, |
jumpButtonDown ? (float)dungeon.playerAgent->jumpVel : 0.0f, |
|
... |
... |
void FirstPersonLoop( double d ){ |
3875 |
3874 |
); |
); |
3876 |
3875 |
// Bob the weapon. |
// Bob the weapon. |
3877 |
3876 |
bobbing = true; |
bobbing = true; |
|
3877 |
|
// Blend the animation. |
|
3878 |
|
dungeon.playerAgent->avatar.blendTo( "jump" ); |
3878 |
3879 |
} |
} |
3879 |
3880 |
// Rotate the third-person camera about the player. TODO: Adjust pitch. |
// Rotate the third-person camera about the player. TODO: Adjust pitch. |
3880 |
3881 |
if(autorotate){ |
if(autorotate){ |