blob: 22317acf2752bfdaa29751ebd00930fa804d15b3 (
plain) (
blame)
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
|
#include "animation.h"
#include "components.h"
#include "world.h"
void animation_system(World* world) {
int i;
unsigned bits;
CSprite* sprite;
CAnimated* animated;
const Animation* animation;
for (i = 0; i < world->entity_count; i++) {
bits = world->bitmask[i];
if ((bits & ctype_sprite) && (bits & ctype_animated)) {
sprite = &world->sprites[i];
animated = &world->animateds[i];
animation = get_animation(animated->id);
animated->timer++;
if (animated->timer > animation->slowness) {
animated->frame++;
animated->timer = 0;
}
if (animated->frame >= animation->frame_count) {
animated->frame = 0;
animated->timer = 0;
}
sprite->rect = animation->frames[animated->frame];
}
}
}
|