2013-12-08 17:35:43 +00:00
|
|
|
#include "AnimationController.h"
|
|
|
|
|
|
|
|
AnimationController::AnimationController(Animation* anim, std::function<void()> finishedCallback, bool reverse)
|
|
|
|
: mAnimation(anim), mFinishedCallback(finishedCallback), mReverse(reverse), mTime(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimationController::~AnimationController()
|
|
|
|
{
|
|
|
|
if(mFinishedCallback)
|
|
|
|
mFinishedCallback();
|
|
|
|
|
|
|
|
delete mAnimation;
|
|
|
|
}
|
|
|
|
|
2013-12-13 03:17:59 +00:00
|
|
|
bool AnimationController::update(int deltaTime)
|
2013-12-08 17:35:43 +00:00
|
|
|
{
|
|
|
|
mTime += deltaTime;
|
|
|
|
float t = (float)mTime / mAnimation->getDuration();
|
|
|
|
|
|
|
|
if(t > 1.0f)
|
|
|
|
t = 1.0f;
|
|
|
|
else if(t < 0.0f)
|
|
|
|
t = 0.0f;
|
|
|
|
|
|
|
|
mAnimation->apply(mReverse ? 1.0f - t : t);
|
|
|
|
|
|
|
|
if(t == 1.0f)
|
2013-12-13 03:17:59 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2013-12-08 17:35:43 +00:00
|
|
|
}
|