NasNas
An intuitive and beginner friendly 2D game framework for C++
MultiTween.hpp
1 // Created by Modar Nasser on 27/07/2021.
2 
3 #pragma once
4 
5 #include <array>
6 #include <functional>
7 #include <type_traits>
8 #include <vector>
9 
10 #include <NasNas/tween/Easing.hpp>
11 
12 namespace ns {
13  template <unsigned N, typename = std::enable_if_t<N != 0 && N != 1>>
14  class MultiTween {
15  public:
16  MultiTween();
17 
18  void clear();
19 
20  auto loop() -> MultiTween<N>&;
21 
22  auto after(float delay) -> MultiTween<N>&;
23 
24  auto from_to(const std::array<float, N>& start, const std::array<float, N>& end) -> MultiTween<N>&;
25 
26  auto to(const std::array<float, N>& end) -> MultiTween<N>&;
27 
28  auto during(float duration) -> MultiTween<N>&;
29 
30  auto apply(tween::MultiCallbackFunction<N> cb) -> MultiTween<N>&;
31 
32  auto with(const tween::EasingFunction& fn) -> MultiTween<N>&;
33  auto with(std::array<tween::EasingFunction, N> fn) -> MultiTween<N>&;
34 
35  auto delay(float delay) -> MultiTween<N>&;
36 
37  void onEnd(std::function<void()> fn);
38 
39  void restart();
40 
41  auto ended() const -> bool;
42 
43  auto step() -> float;
44 
45  private:
46  sf::Clock m_clock;
47  std::vector<std::array<float, N>> m_starts;
48  std::vector<std::array<float, N>> m_ends;
49  std::vector<float> m_durations;
50  std::vector<float> m_delays;
51  std::vector<std::array<tween::EasingFunction, N>> m_easing_fns;
52  std::vector<tween::MultiCallbackFunction<N>> m_on_step_cbs;
53  std::function<void()> m_on_end_cb = []{};
54  unsigned m_index = 0;
55  float m_initial_delay = 0.f;
56  float m_current_delay = 0.f;
57  bool m_first_run = true;
58  bool m_on_end_called = false;
59  bool m_loop = false;
60 
61  inline void interpolate(unsigned index, std::array<float, N>& x) const {
62  for (unsigned i = 0; i < N; ++i) {
63  x[i] = (m_ends[index][i] - m_starts[index][i]) * x[i] + m_starts[index][i];
64  }
65  }
66  void emplaceAnimation();
67  };
68 
69 }
70 
71 #include "MultiTween.tpp"