TDME2 1.9.121
GUIColorEffect.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
8#include <tdme/math/Math.h>
9
16
17GUIColorEffect::GUIColorEffect(GUINode* guiNode): GUIEffect(EFFECTTYPE_COLOR, guiNode)
18{
19}
20
22{
23 auto t = Math::abs(timeTotal) < Math::EPSILON?1.0f:(timeTotal - timeLeft) / timeTotal;
24 auto effectState = node->getEffectState();
25 effectState->colorMul.set(
30 );
31 auto& effectColorMul = guiRenderer->getGUIEffectColorMul();
32 auto& effectColorAdd = guiRenderer->getGUIEffectColorAdd();
33 guiRenderer->setGUIEffectColorMul(
35 effectColorMul.getRed() * effectState->colorMul.getRed(),
36 effectColorMul.getGreen() * effectState->colorMul.getGreen(),
37 effectColorMul.getBlue() * effectState->colorMul.getBlue(),
38 effectColorMul.getAlpha() * effectState->colorMul.getAlpha()
39 )
40 );
41 effectState->colorAdd.set(
46 );
47 guiRenderer->setGUIEffectColorAdd(
49 effectColorAdd.getRed() + effectState->colorAdd.getRed(),
50 effectColorAdd.getGreen() + effectState->colorAdd.getGreen(),
51 effectColorAdd.getBlue() + effectState->colorAdd.getBlue(),
52 effectColorAdd.getAlpha() + effectState->colorAdd.getAlpha()
53 )
54 );
55}
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
void apply(GUIRenderer *guiRenderer) override
Apply effect.
GUI effect base class.
Definition: GUIEffect.h:23
GUIEffectState startState
Definition: GUIEffect.h:44
GUI node base class.
Definition: GUINode.h:63
GUIEffectState * getEffectState()
Definition: GUINode.h:647
const GUIColor & getGUIEffectColorAdd()
Definition: GUIRenderer.h:192
const GUIColor & getGUIEffectColorMul()
Definition: GUIRenderer.h:177
void setGUIEffectColorMul(const GUIColor &color)
Set GUI effect color mul.
Definition: GUIRenderer.h:185
void setGUIEffectColorAdd(const GUIColor &color)
Set GUI effect color add.
Definition: GUIRenderer.h:200
Standard math functions.
Definition: Math.h:21