-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimation_handler.cpp
executable file
·63 lines (50 loc) · 1.62 KB
/
animation_handler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <SFML/Graphics.hpp>
#include <vector>
#include "animation_handler.hpp"
void AnimationHandler::update(const float dt)
{
if(currentAnim >= this->animations.size() || currentAnim < 0) return;
float duration = this->animations[currentAnim].duration;
/* Check if the animation has progessed to a new frame and if so
* change to the next frame */
if(int((t + dt) / duration) > int(t / duration))
{
/* Calculate the frame number */
int frame = int((t + dt) / duration);
/* Adjust for looping */
frame %= this->animations[currentAnim].getLength();
/* Set the sprite to the new frame */
sf::IntRect rect = this->frameSize;
rect.left = rect.width * frame;
rect.top = rect.height * this->currentAnim;
this->bounds = rect;
}
/* Increment the time elapsed */
this->t += dt;
/* Adjust for looping */
if(this->t > duration * this->animations[currentAnim].getLength())
{
this->t = 0.0f;
}
return;
}
void AnimationHandler::addAnim(Animation& anim)
{
this->animations.push_back(anim);
return;
}
void AnimationHandler::changeAnim(unsigned int animID)
{
/* Do not change the animation if the animation is currently active or
* the new animation does not exist */
if(this->currentAnim == animID || animID >= this->animations.size() ||
animID < 0) return;
/* Set the current animation */
this->currentAnim = animID;
/* Update the animation bounds */
sf::IntRect rect = this->frameSize;
rect.top = rect.height * animID;
this->bounds = rect;
this->t = 0.0;
return;
}