qxLib
easing_element.inl
Go to the documentation of this file.
1 /**
2 
3  @file easing_element.inl
4  @author Khrapov
5  @date 4.05.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<class T>
14 inline base_easing_element<T>::base_easing_element(const easing::func<T>& func, T fStart, T fEnd, T fSpeed) noexcept
15  : m_EasingFunc(func)
16  , m_fCurrentY(fStart)
17  , m_fStartY(fStart)
18  , m_fEndY(fEnd)
19 {
20  set_speed(fSpeed);
21 }
22 
23 template<class T>
24 inline void base_easing_element<T>::start() noexcept
25 {
26  m_eStatus = status::started;
27  m_fCurrentX = T(0.f);
28  m_fCurrentY = m_fStartY;
29 }
30 
31 template<class T>
32 inline void base_easing_element<T>::pause() noexcept
33 {
34  if (m_eStatus == status::started)
35  m_eStatus = status::paused;
36 }
37 
38 template<class T>
39 inline void base_easing_element<T>::resume() noexcept
40 {
41  if (m_eStatus == status::paused)
42  m_eStatus = status::started;
43 }
44 
45 template<class T>
46 inline void base_easing_element<T>::finish() noexcept
47 {
48  m_eStatus = status::finished;
49  m_fCurrentX = T(1.f);
50  m_fCurrentY = m_fEndY;
51 }
52 
53 template<class T>
54 inline void base_easing_element<T>::reset() noexcept
55 {
56  m_eStatus = status::not_started;
57  m_fCurrentX = T(0.f);
58  m_fCurrentY = m_fStartY;
59 }
60 
61 template<class T>
62 inline T base_easing_element<T>::update(T fDeltaTime) noexcept
63 {
64  T fRet = T(0.f);
65 
66  if (m_eStatus == status::started)
67  {
68  m_fCurrentX = m_fCurrentX + fDeltaTime * m_fSpeed;
69 
70  if (m_fCurrentX < T(1.f))
71  {
72  m_fCurrentY = m_fStartY + m_EasingFunc(m_fCurrentX) * (m_fEndY - m_fStartY);
73  }
74  else
75  {
76  fRet = (m_fCurrentX - T(1.f)) / m_fSpeed;
77  finish();
78  }
79  }
80  else
81  {
82  fRet = fDeltaTime;
83  }
84 
85  return fRet;
86 }
87 
88 template<class T>
89 inline void base_easing_element<T>::set_speed(T fSpeed) noexcept
90 {
91  if (fSpeed > T(0.f))
92  m_fSpeed = fSpeed;
93 }
94 
95 template<class T>
96 inline T base_easing_element<T>::get() const noexcept
97 {
98  return m_fCurrentY;
99 }
100 
101 template<class T>
102 inline T base_easing_element<T>::get_fraction() const noexcept
103 {
104  return m_fCurrentX;
105 }
106 
107 template<class T>
108 inline T base_easing_element<T>::get_speed() const noexcept
109 {
110  return m_fSpeed;
111 }
112 
113 template<class T>
114 inline typename base_easing_element<T>::status base_easing_element<T>::get_status() const noexcept
115 {
116  return m_eStatus;
117 }
118 
119 template<class T>
120 inline bool base_easing_element<T>::is_not_started() const noexcept
121 {
122  return m_eStatus == status::not_started;
123 }
124 
125 template<class T>
126 inline bool base_easing_element<T>::is_started() const noexcept
127 {
128  return m_eStatus == status::started;
129 }
130 
131 template<class T>
132 inline bool base_easing_element<T>::is_paused() const noexcept
133 {
134  return m_eStatus == status::paused;
135 }
136 
137 template<class T>
138 inline bool base_easing_element<T>::is_finished() const noexcept
139 {
140  return m_eStatus == status::finished;
141 }
142 
143 } // namespace qx
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.