blob: bd5603c832561a2cb0388279134d07929ec04ed1 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#pragma once
#include "StarDrawable.hpp"
#include "StarBiMap.hpp"
namespace Star {
STAR_CLASS(Animation);
class Animation {
public:
// config can be either a path to a config or a literal config.
Animation(Json config = {}, String const& directory = {});
void setAngle(float angle);
void setProcessing(DirectivesGroup processing);
void setColor(Color color);
void setTag(String tagName, String tagValue);
void clearTags();
Drawable drawable(float pixelSize) const;
void update(float dt);
bool isComplete() const;
void reset();
private:
enum AnimationMode { Stop, EndAndDisappear, LoopForever };
static EnumMap<AnimationMode> AnimationModeNames;
AnimationMode m_mode;
String m_directory;
String m_base;
bool m_appendFrame;
int m_frameNumber;
float m_animationCycle;
float m_animationTime;
float m_angle;
Vec2F m_offset;
bool m_centered;
DirectivesGroup m_processing;
Color m_color;
int m_variantOffset;
StringMap<String> m_tagValues;
int m_frame;
float m_animationTimer;
float m_timeToLive;
bool m_completed;
};
}
|