summary refs log tree commit diff stats
path: root/src/animation_system.h
blob: c64c2dcb0fa8f56e0c59e70eff13896bf24b3ad1 (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
34
35
#ifndef ANIMATION_SYSTEM_H_CCCC7CB8
#define ANIMATION_SYSTEM_H_CCCC7CB8

#include <string_view>
#include <vector>
#include "direction.h"
#include "system.h"
#include "timer.h"

class Game;

class AnimationSystem : public System {
public:

  static constexpr SystemKey Key = SystemKey::Animation;

  AnimationSystem(Game& game) : game_(game) {}

  void tick(double dt) override;

  void initSprite(int spriteId, std::string_view filename);

  void setSpriteDirection(int spriteId, Direction dir);

  void setSpriteAnimation(int spriteId, std::string_view name);

private:

  void updateAnimation(int spriteId);

  Game& game_;
  std::vector<Timer> animTimers_ = {{1000/5}, {1000/60}};//30fps * 1000 t/s;;
};

#endif /* end of include guard: ANIMATION_SYSTEM_H_CCCC7CB8 */