NasNas
An intuitive and beginner friendly 2D game framework for C++
Transition.hpp
1 
5 #pragma once
6 
7 #include <functional>
8 #include <vector>
9 
10 #include <SFML/Graphics/CircleShape.hpp>
11 #include <SFML/Graphics/RectangleShape.hpp>
12 #include <SFML/Graphics/RenderTexture.hpp>
13 
14 #include <NasNas/core/AppAccess.hpp>
15 
16 namespace ns {
17 
18  class Transition : public sf::Drawable {
19  public:
20  static std::vector<Transition*> list;
21 
22  Transition();
23  void start();
24  void end();
25 
26  auto hasStarted() const -> bool;
27  auto hasEnded() const -> bool;
28 
29  void addShape(const sf::Shape& shape);
30 
31  void setOnEndCallback(const std::function<void()>& fn);
32 
33  void update();
34 
35  protected:
36  virtual void onUpdate() = 0;
37 
38  private:
39  void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
40  bool m_started = false;
41  bool m_ended = false;
42  std::vector<const sf::Drawable*> m_drawables;
43  std::function<void()> m_end_callback;
44 
45  sf::RenderTexture m_render_texture;
46  };
47 
48  namespace transition {
49  class CircleOpen : public Transition, public AppAccess<> {
50  public:
51  explicit CircleOpen(int duration_ms=1000);
52  void setDuration(int duration_ms);
53  void onUpdate() override;
54  private:
55  int m_duration_ms;
56  float m_limit;
57  float m_scale_factor;
58  sf::CircleShape m_circle;
59  sf::RectangleShape m_rectangle;
60  };
61 
62  class CircleClose : public Transition, public AppAccess<> {
63  public:
64  explicit CircleClose(int duration_ms=1000);
65  void setDuration(int duration_ms);
66  void onUpdate() override;
67  private:
68  int m_duration_ms;
69  float m_scale_factor;
70  sf::CircleShape m_circle;
71  sf::RectangleShape m_rectangle;
72  };
73  }
74 
75 
76 }