TDME2 1.9.121
GUIEffect.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
10
16
17/**
18 * GUI effect base class
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24public:
26 static constexpr int REPEAT_UNLIMITED { -1 };
27
28protected:
30 bool active { false };
31 int64_t timeLast { -1LL };
32 float timeTotal { 0.0 };
33 float timeLeft { 0.0 };
34 float timePassed { 0.0 };
35 int repeat { 0 };
36 int repeatLeft { 0 };
37 bool yoyo { false };
38 int yoyoLeft { 0 };
39 bool persistant { false };
40 Action* action { nullptr };
41 GUINode* node { nullptr };
46
47public:
48 /**
49 * Public constructor
50 * @param type type
51 * @param GUINode GUI node
52 */
54
55 /**
56 * Destructor
57 */
58 virtual ~GUIEffect();
59
60 /**
61 * @return type
62 */
63 inline EffectType getType() const {
64 return type;
65 }
66
67 /**
68 * @return active
69 */
70 inline bool isActive() const {
71 return active;
72 }
73
74 /**
75 * @return time total
76 */
77 inline float getTimeTotal() const {
78 return timeTotal;
79 }
80
81 /**
82 * Set time total
83 * @param timeTotal time total
84 */
85 inline void setTimeTotal(float timeTotal) {
86 this->timeTotal = timeTotal;
87 }
88
89 /**
90 * @return repeat count or -1 for unlimited repeating
91 */
92 inline int getRepeat() const {
93 return repeat;
94 }
95
96 /**
97 * Set repeat count or -1 for unlimited repeating
98 * @param repeat repeat
99 */
100 inline void setRepeat(int repeat) {
101 this->repeat = repeat;
102 }
103
104 /**
105 * @return yoyo
106 */
107 inline float isYoyo() const {
108 return yoyo;
109 }
110
111 /**
112 * Set yoyo
113 * @param yoyo yoyo
114 */
115 inline void setYoyo(bool yoyo) {
116 this->yoyo = yoyo;
117 }
118
119 /**
120 * @return if this effect is persistant, means if duration is reached this effect will still remain until removal
121 */
122 inline float isPersistant() const {
123 return persistant;
124 }
125
126 /**
127 * Set persistant, means if duration is reached this effect will still remain until removal
128 * @param persistant persistant
129 */
130 inline void setPersistant(bool persistant) {
131 this->persistant = persistant;
132 }
133
134 /**
135 * @return action to be performed on effect end
136 */
137 inline Action* getAction() const {
138 return action;
139 }
140
141 /**
142 * Set action to be performed on effect end
143 * @param action action
144 */
145 inline void setAction(Action* action) {
146 this->action = action;
147 }
148
149 /**
150 * Start this effect
151 */
152 virtual void start();
153
154 /**
155 * Stop this effect
156 */
157 virtual void stop();
158
159 /**
160 * Updates the effect to GUI renderer and updates time
161 * @param guiRenderer gui renderer
162 * @return if action should be called
163 */
164 virtual bool update(GUIRenderer* guiRenderer);
165
166 /**
167 * Apply effect
168 * @param guiRenderer GUI renderer
169 * @param guiNode GUI node
170 */
171 virtual void apply(GUIRenderer* guiRenderer) = 0;
172
173};
GUI effect base class.
Definition: GUIEffect.h:23
GUIEffect(EffectType type, GUINode *guiNode)
Public constructor.
Definition: GUIEffect.cpp:15
float getTimeTotal() const
Definition: GUIEffect.h:77
GUIEffectState originalEndState
Definition: GUIEffect.h:43
void setAction(Action *action)
Set action to be performed on effect end.
Definition: GUIEffect.h:145
virtual void apply(GUIRenderer *guiRenderer)=0
Apply effect.
void setRepeat(int repeat)
Set repeat count or -1 for unlimited repeating.
Definition: GUIEffect.h:100
Action * getAction() const
Definition: GUIEffect.h:137
EffectType getType() const
Definition: GUIEffect.h:63
virtual void start()
Start this effect.
Definition: GUIEffect.cpp:23
void setYoyo(bool yoyo)
Set yoyo.
Definition: GUIEffect.h:115
virtual void stop()
Stop this effect.
Definition: GUIEffect.cpp:35
void setPersistant(bool persistant)
Set persistant, means if duration is reached this effect will still remain until removal.
Definition: GUIEffect.h:130
GUIEffectState originalStartState
Definition: GUIEffect.h:42
virtual bool update(GUIRenderer *guiRenderer)
Updates the effect to GUI renderer and updates time.
Definition: GUIEffect.cpp:40
virtual ~GUIEffect()
Destructor.
Definition: GUIEffect.cpp:19
GUIEffectState startState
Definition: GUIEffect.h:44
void setTimeTotal(float timeTotal)
Set time total.
Definition: GUIEffect.h:85
static constexpr int REPEAT_UNLIMITED
Definition: GUIEffect.h:26
GUI node base class.
Definition: GUINode.h:63
Action Interface.
Definition: Action.h:12