summary refs log tree commit diff stats
path: root/src/animation_system.h
blob: 2e1378479f97fd684bae4e22b2960e38a6938767 (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 "direction.h"
#include "system.h"
#include "timer.h"

class Game;
class Renderer;

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, Renderer& renderer);

  void setSpriteDirection(int spriteId, Direction dir);

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

private:

  void updateAnimation(int spriteId);

  Game& game_;
  Timer animTimer_ {1000/5};//30fps * 1000 t/s;;
};

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