aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AnimatorSystem.cpp
blob: 8bb6465a13e4b44ac0b3432ee586a281566b51a1 (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
#include <cstdint>

#include "../api/Animator.h"
#include "../facade/SDLContext.h"
#include "../manager/ComponentManager.h"

#include "AnimatorSystem.h"

using namespace crepe;

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

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

	uint64_t tick = SDLContext::get_instance().get_ticks();
	for (Animator & a : animations) {
		if (!a.active) continue;
		// (10 frames per second)
		a.curr_row = (tick / 100) % a.row;
		a.spritesheet.mask.x = (a.curr_row * a.spritesheet.mask.w) + a.curr_col;
		a.spritesheet.mask = a.spritesheet.mask;
	}
}