aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AnimatorSystem.cpp
blob: 1650b3d0d6ac1bba39b431badc3aa24290547e00 (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
37
#include "api/Animator.h"

#include "AnimatorSystem.h"
#include "ComponentManager.h"
#include <iostream>

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;

		double frame_duration = 1.0f / a.fps;

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

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

		a.curr_row = a.cycle_start + curr_frame;
		a.spritesheet.mask.x = a.curr_row * a.spritesheet.mask.w;
		a.spritesheet.mask.y = (a.curr_col * a.spritesheet.mask.h);
	
		std::cout << curr_frame << " " << total_frames << std::endl;
		if (!a.looping && curr_frame == 0) {
			a.active = false;
		}
	}
}