TDME2 1.9.121
GUIColorEffect.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
10
16
17/**
18 * GUI color effect
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24public:
25 /**
26 * Reset effect state regarding color effect
27 * @param effectState effect state
28 */
29 inline static void resetEffectState(GUIEffectState* effectState) {
30 effectState->colorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
31 effectState->colorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
32 }
33
34 /**
35 * Public constructor
36 * @param guiNode GUI node
37 */
38 GUIColorEffect(GUINode* guiNode);
39
40 /**
41 * @return color add
42 */
43 inline const GUIColor& getColorAdd() const {
45 }
46
47 /**
48 * Set color add
49 * @param colorAdd color add
50 */
51 inline void setColorAdd(const GUIColor& colorAdd) {
52 originalEndState.colorAdd = colorAdd;
53 }
54
55 /**
56 * @return color mul
57 */
58 inline const GUIColor& getColorMul() const {
60 }
61
62 /**
63 * Set color mul
64 * @param colorMul color mul
65 */
66 inline void setColorMul(const GUIColor& colorMul) {
67 originalEndState.colorMul = colorMul;
68 }
69
70 /**
71 * @return start color add
72 */
73 inline const GUIColor& getStartColorAdd() const {
75 }
76
77 /**
78 * Set start color add
79 * @param colorAdd start color add
80 */
81 inline void setStartColorAdd(const GUIColor& colorAdd) {
83 }
84
85 /**
86 * @return start color mul
87 */
88 inline const GUIColor& getStartColorMul() const {
90 }
91
92 /**
93 * Set start color mul
94 * @param colorMul start color mul
95 */
96 inline void setStartColorMul(const GUIColor& colorMul) {
98 }
99
100 // overridden methods
101 void apply(GUIRenderer* guiRenderer) override;
102
103};
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
const GUIColor & getColorMul() const
void setColorAdd(const GUIColor &colorAdd)
Set color add.
const GUIColor & getColorAdd() const
const GUIColor & getStartColorMul() const
void setStartColorMul(const GUIColor &colorMul)
Set start color mul.
void apply(GUIRenderer *guiRenderer) override
Apply effect.
const GUIColor & getStartColorAdd() const
void setColorMul(const GUIColor &colorMul)
Set color mul.
static void resetEffectState(GUIEffectState *effectState)
Reset effect state regarding color effect.
GUIColorEffect(GUINode *guiNode)
Public constructor.
void setStartColorAdd(const GUIColor &colorAdd)
Set start color add.
GUI effect base class.
Definition: GUIEffect.h:23
GUIEffectState originalEndState
Definition: GUIEffect.h:43
GUIEffectState originalStartState
Definition: GUIEffect.h:42
GUI node base class.
Definition: GUINode.h:63