-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3_animation.cpp
90 lines (74 loc) · 2.9 KB
/
3_animation.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <game/window.h>
#include <game/scene.h>
#include <game/animation.h>
#include <game/sprite.h>
#include <game/image.h>
#include <game/state.h>
#include <game/clock.h>
// This is not the final form yet of how things should be organized
class MyScene : public Scene {
using Scene::Scene;
public:
// Animation wraps sprite and clips
// Can play various clips from the sprite
// Like imagine Sprite has MOVE and ATTACK clips
Animation* animation;
SDL_FRect position;
int currentFrame = 0;
virtual void prepare() {
// Sprites is the map with integers where you can store your sprite collection
// Because you just need to load sprite once and then reuse in different objects
sprites[1] = (new Sprite(
new Image(renderer, "doc/images/planet.png"),
100,
100,
// This is new: Default pause per frame 60 miliseconds
// for this spritesheet produced clips
// Higher value causes slow animation
60
))->addClip(
1, // Clip index
1, // Frame start row in sprite sheet
1, // Frame start cell in sprite sheet
24 // Frame count to generate from row, cell
// We know our sprite contains 6x4 frames so 24 is total frame count
);
// So once we have our sprite and its clip regions configured
// We can create animation with this sprite
// Animation will play specific clip and
// will manage frame change and render per tick and delta
animation = new Animation(
sprites[1],
1 // This is default clip name but animation can change clips within the sprite
);
// Scale the frame a bit from its original size
position.w = 200;
position.h = 200;
}
virtual void update(State* state) {
// Here we center image based on scene width and height
// No matter window size it will always stay in center
position.x = this->width/2 - position.w/2;
position.y = this->height/2 - position.h/2;
// At this point animation is playing default clip
// And here we just update with delta time elapsed from last frame
// With delta animaitons will play always with same speed no
// matter how many frames per second we do have
animation->update(state->clock->delta);
}
virtual void render(State* state) {
clear();
// Here we specify what to render from image with &frame
// and where to render on scene with &position
animation->render(&position);
present();
}
};
int main(int argc, char** argv){
// Just create the window
Window* window = new Window("Hello World", 800, 600);
// Pass our scene instanse
window->setScene(new MyScene(window->window));
// Do the thing
return window->run();
}