TDME2 1.9.121
GUIPositionEffect.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
7#include <tdme/gui/GUI.h>
8#include <tdme/math/Math.h>
9
11
15using tdme::gui::GUI;
17
18GUIPositionEffect::GUIPositionEffect(GUINode* guiNode): GUIEffect(EFFECTTYPE_POSITION, guiNode)
19{
20}
21
23{
24 float screenWidth = guiRenderer->getGUI()->getWidth();
25 float screenHeight = guiRenderer->getGUI()->getHeight();
26 auto t = Math::abs(timeTotal) < Math::EPSILON?1.0f:(timeTotal - timeLeft) / timeTotal;
27 auto effectState = node->getEffectState();
29 effectState->positionY = startState.positionY + ((endState.positionY - startState.positionY) * t);
30 guiRenderer->setGUIEffectOffsetX(guiRenderer->getGUIEffectOffsetX() + -effectState->positionX / screenWidth * 2.0f);
31 guiRenderer->setGUIEffectOffsetY(guiRenderer->getGUIEffectOffsetY() + -effectState->positionY / screenHeight * 2.0f);
32}
GUI module class.
Definition: GUI.h:66
int getHeight()
Definition: GUI.h:188
int getWidth()
Definition: GUI.h:181
GUI effect base class.
Definition: GUIEffect.h:23
GUIEffectState startState
Definition: GUIEffect.h:44
void apply(GUIRenderer *guiRenderer) override
Apply effect.
GUI node base class.
Definition: GUINode.h:63
GUIEffectState * getEffectState()
Definition: GUINode.h:647
void setGUIEffectOffsetY(float guiEffectOffsetY)
Set GUI effect offset Y.
void setGUIEffectOffsetX(float guiEffectOffsetX)
Set GUI effect offset X.
Standard math functions.
Definition: Math.h:21