26 m_eStatus = status::started;
28 m_fCurrentY = m_fStartY;
34 if (m_eStatus == status::started)
35 m_eStatus = status::paused;
41 if (m_eStatus == status::paused)
42 m_eStatus = status::started;
48 m_eStatus = status::finished;
50 m_fCurrentY = m_fEndY;
56 m_eStatus = status::not_started;
58 m_fCurrentY = m_fStartY;
66 if (m_eStatus == status::started)
68 m_fCurrentX = m_fCurrentX + fDeltaTime * m_fSpeed;
70 if (m_fCurrentX < T(1.f))
72 m_fCurrentY = m_fStartY + m_EasingFunc(m_fCurrentX) * (m_fEndY - m_fStartY);
76 fRet = (m_fCurrentX - T(1.f)) / m_fSpeed;
122 return m_eStatus == status::not_started;
128 return m_eStatus == status::started;
134 return m_eStatus == status::paused;
140 return m_eStatus == status::finished;
T get() const noexcept
Get current value of element.
void set_speed(T fSpeed) noexcept
Set speed value.
bool is_not_started() const noexcept
Check if element is not started.
T update(T fDeltaTime) noexcept
Update element corresponding to easing function.
status get_status() const noexcept
Get element status.
void finish() noexcept
Mark element as finished.
void reset() noexcept
Mark element as inactive.
void pause() noexcept
Pause element if started.
bool is_paused() const noexcept
Check if element is paused.
T get_fraction() const noexcept
Get a fraction indicating how much of the element has played.
void resume() noexcept
Resume updating if paused.
bool is_started() const noexcept
Check if element is started.
T get_speed() const noexcept
Get speed value.
base_easing_element(const easing::func< T > &func, T fStart=T(0.f), T fEnd=T(1.f), T fSpeed=T(1.f)) noexcept
base_easing_element object constructor
bool is_finished() const noexcept
Check if element is finished.
void start() noexcept
Mark element as active and let it update.