aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AnimatorSystem.cpp
blob: 9cf8ba5f5fca7516125f9e2f1c85dd23d88003f6 (plain)
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
#include "api/Animator.h"

#include "AnimatorSystem.h"
#include "ComponentManager.h"

using namespace crepe;

void AnimatorSystem::update() {
	ComponentManager & mgr = this->component_manager;

	RefVector<Animator> animations = mgr.get_components_by_type<Animator>();

	double elapsed_time = this->timer.get_current_time();

	for (Animator & a : animations) {
		if (!a.active) continue;

		Animator::Data & ctx = a.data;
		double frame_duration = 1.0f / ctx.fps;

		int cycle_end = (ctx.cycle_end == -1) ? ctx.row : ctx.cycle_end;
		int total_frames = cycle_end - ctx.cycle_start;

		int curr_frame = static_cast<int>(elapsed_time / frame_duration) % total_frames;

		ctx.curr_row = ctx.cycle_start + curr_frame;
		ctx.spritesheet.mask.x = ctx.curr_row * ctx.spritesheet.mask.w;
		ctx.spritesheet.mask.y = (ctx.curr_col * ctx.spritesheet.mask.h);

		if (!ctx.looping && curr_frame == total_frames - 1) {
			a.active = false;
		}
	}
}