TDME2 1.9.121
AnimationSetup.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
11
12/**
13 * Animation setup
14 * @author Andreas Drewke
15 * @version $Id$
16 */
18{
19 friend class Model;
20
21private:
22 Model* model { nullptr };
23 string id;
24 int32_t startFrame;
25 int32_t endFrame;
26 int32_t frames;
27 bool loop;
29 float speed;
30
31public:
32
33 /**
34 * Public constructor
35 * @param model model
36 * @param id id
37 * @param startFrame start frame
38 * @param endFrame end frame
39 * @param loop loop
40 * @param overlayFromNodeId overlay from node id
41 * @param speed speed whereas 1.0 is default speed
42 */
43 AnimationSetup(Model* model, const string& id, int32_t startFrame, int32_t endFrame, bool loop, const string& overlayFromNodeId, float speed = 1.0);
44
45 /**
46 * @return model this animation belongs to
47 */
48 inline Model* getModel() {
49 return model;
50 }
51
52 /**
53 * @return id
54 */
55 inline const string& getId() {
56 return id;
57 }
58
59 /**
60 * @return if animation set up is a overlay animation setup
61 */
63 return overlayFromNodeId.empty() == false;
64 }
65
66 /**
67 * @return start frame
68 */
69 inline int32_t getStartFrame() {
70 return startFrame;
71 }
72
73 /**
74 * Set start frame
75 * @param startFrame start frame
76 */
77 void setStartFrame(int32_t startFrame);
78
79 /**
80 * @return end frame
81 */
82 inline int32_t getEndFrame() {
83 return endFrame;
84 }
85
86 /**
87 * Set end frame
88 * @param endFrame end frame
89 */
90 void setEndFrame(int32_t endFrame);
91
92 /**
93 * @return frames
94 */
95 inline int32_t getFrames() {
96 return frames;
97 }
98
99 /**
100 * @return looping enabled
101 */
102 inline bool isLoop() {
103 return loop;
104 }
105
106 /**
107 * Set loop
108 * @param loop loop
109 */
110 inline void setLoop(bool loop) {
111 this->loop = loop;
112 }
113
114 /**
115 * If this is a overlay animation this returns a node id from which node the animation will start in the hierarchy
116 * @return node id from which the animation will start in the hierarchy
117 */
118 inline const string& getOverlayFromNodeId() {
119 return overlayFromNodeId;
120 }
121
122 /**
123 * Set overlay from node id
124 * @param overlayFromNodeId overlay from node id
125 */
126 inline void setOverlayFromNodeId(const string& overlayFromNodeId) {
127 this->overlayFromNodeId = overlayFromNodeId;
128 }
129
130 /**
131 * @return animation duration in milliseconds
132 */
133 int64_t computeDuration();
134
135 /**
136 * Compute animation duration
137 * @param startFrame start frame
138 * @param endFrame end frame
139 * @return animation duration in milliseconds
140 */
141 int64_t computeDuration(int32_t startFrame, int32_t endFrame);
142
143 /**
144 * @return speed whereas 1.0 is default speed
145 */
146 inline float getSpeed() {
147 return speed;
148 }
149
150 /**
151 * Set up animation speed
152 * @param speed speed whereas 1.0 is default speed
153 */
154 inline void setSpeed(float speed) {
155 this->speed = speed;
156 }
157
158private:
159
160 /**
161 * Set id
162 * @param id id
163 */
164 inline void setId(const string& id) {
165 this->id = id;
166 }
167
168};
const string & getOverlayFromNodeId()
If this is a overlay animation this returns a node id from which node the animation will start in the...
AnimationSetup(Model *model, const string &id, int32_t startFrame, int32_t endFrame, bool loop, const string &overlayFromNodeId, float speed=1.0)
Public constructor.
void setEndFrame(int32_t endFrame)
Set end frame.
void setSpeed(float speed)
Set up animation speed.
void setId(const string &id)
Set id.
void setStartFrame(int32_t startFrame)
Set start frame.
void setLoop(bool loop)
Set loop.
void setOverlayFromNodeId(const string &overlayFromNodeId)
Set overlay from node id.
Representation of a 3d model.
Definition: Model.h:32