qxLib
easing_sequence.h
Go to the documentation of this file.
1 /**
2 
3  @file easing_sequence.h
4  @author Khrapov
5  @date 4.05.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 #include <qx/macros/common.h>
13 
14 #include <vector>
15 
16 namespace qx
17 {
18 
19 /**
20 
21  @class base_easing_sequence
22  @brief qx::base_easing_element queue
23  @details ~
24  @tparam T - floating point ish value
25  @author Khrapov
26  @date 04.05.2021
27 
28 **/
29 template<class T>
31 {
32 public:
34  using type = T;
35 
36 public:
37  /**
38  @brief Add easing element to queue
39  @param element - easing element
40  **/
41  void push_back(easing_element_type element) noexcept;
42 
43  /**
44  @brief Add easing element to queue by constructing in-place
45  @tparam args_t - template parameter pack type
46  @param args - arguments for constructing
47  **/
48  template<class... args_t>
49  void emplace_back(args_t&&... args) noexcept;
50 
51  /**
52  @brief Clear elements queue
53  **/
54  void clear() noexcept;
55 
56  /**
57  @brief Start easing element sequence playing
58  **/
59  void start() noexcept;
60 
61  /**
62  @brief Pause easing element sequence playing
63  **/
64  void pause() noexcept;
65 
66  /**
67  @brief Resume easing element sequence playing
68  **/
69  void resume() noexcept;
70 
71  /**
72  @brief Skip current element
73  **/
74  void skip() noexcept;
75 
76  /**
77  @brief Reset sequence
78  **/
79  void reset() noexcept;
80 
81  /**
82  @brief Update easing element sequence
83  @param fDeltaTime - delta time
84  **/
85  void update(T fDeltaTime) noexcept;
86 
87  /**
88  @brief Set loop state
89  @param bLooped - true if loop
90  **/
91  void set_looped(bool bLooped) noexcept;
92 
93  /**
94  @brief Set updating speed value
95  @param fSpeed - speed
96  **/
97  void set_speed(T fSpeed) noexcept;
98 
99  /**
100  @brief Get value of current sequence element
101  @retval - value of current sequence element
102  **/
103  T get() const noexcept;
104 
105  /**
106  @brief Get a fraction indicating how much of the sequence has played
107  @retval - fraction [0.0, 1.0]
108  **/
109  T get_fraction() const noexcept;
110 
111  /**
112  @brief Get updating speed value
113  @retval - speed
114  **/
115  T get_speed() const noexcept;
116 
117  /**
118  @brief Is sequence not started
119  @retval - true if sequence is not started
120  **/
121  bool is_not_started() const noexcept;
122 
123  /**
124  @brief Is sequence started
125  @retval - true if sequence is started
126  **/
127  bool is_started() const noexcept;
128 
129  /**
130  @brief Is sequence paused
131  @retval - true if sequence is paused
132  **/
133  bool is_paused() const noexcept;
134 
135  /**
136  @brief Is sequence finished
137  @retval - true if sequence is finished
138  **/
139  bool is_finished() const noexcept;
140 
141  /**
142  @brief Is sequence looped
143  @retval - true if sequence is looped
144  **/
145  bool is_looped() const noexcept;
146 
147 private:
148  /**
149  @brief Get current element pointer or nullptr if no elements
150  @retval - current element pointer or nullptr if no elements
151  **/
152  easing_element_type* get_current_element() noexcept;
153 
154  /**
155  @brief Get current element pointer or nullptr if no elements
156  @retval - current element pointer or nullptr if no elements
157  **/
158  const easing_element_type* get_current_element() const noexcept;
159 
160  /**
161  @brief Update total time by adding time from last element
162  **/
163  void update_total_time() noexcept;
164 
165 private:
166  std::vector<easing_element_type> m_ElementsSequence;
167  size_t m_nCurrentElement = 0;
168  T m_fTotalTime = T(0.f);
169  T m_fCurrentTime = T(0.f);
170  T m_fSpeed = T(1.f);
171  bool m_bLoop = false;
172 };
173 
175 
176 } // namespace qx
177 
An updatable element representing the value of the easing function at a given time.
qx::base_easing_element queue
bool is_started() const noexcept
Is sequence started.
T get_speed() const noexcept
Get updating speed value.
void update(T fDeltaTime) noexcept
Update easing element sequence.
void start() noexcept
Start easing element sequence playing.
void clear() noexcept
Clear elements queue.
void pause() noexcept
Pause easing element sequence playing.
void skip() noexcept
Skip current element.
bool is_paused() const noexcept
Is sequence paused.
bool is_finished() const noexcept
Is sequence finished.
T get_fraction() const noexcept
Get a fraction indicating how much of the sequence has played.
void resume() noexcept
Resume easing element sequence playing.
void emplace_back(args_t &&... args) noexcept
Add easing element to queue by constructing in-place.
T get() const noexcept
Get value of current sequence element.
void set_looped(bool bLooped) noexcept
Set loop state.
void reset() noexcept
Reset sequence.
bool is_not_started() const noexcept
Is sequence not started.
void set_speed(T fSpeed) noexcept
Set updating speed value.
bool is_looped() const noexcept
Is sequence looped.
void push_back(easing_element_type element) noexcept
Add easing element to queue.