10 #include <SFML/Graphics/CircleShape.hpp> 11 #include <SFML/Graphics/RectangleShape.hpp> 12 #include <SFML/Graphics/RenderTexture.hpp> 14 #include <NasNas/core/AppAccess.hpp> 20 static std::vector<Transition*> list;
26 auto hasStarted()
const -> bool;
27 auto hasEnded()
const -> bool;
29 void addShape(
const sf::Shape& shape);
31 void setOnEndCallback(
const std::function<
void()>& fn);
36 virtual void onUpdate() = 0;
39 void draw(sf::RenderTarget& target, sf::RenderStates states)
const override;
40 bool m_started =
false;
42 std::vector<const sf::Drawable*> m_drawables;
43 std::function<void()> m_end_callback;
45 sf::RenderTexture m_render_texture;
48 namespace transition {
52 void setDuration(
int duration_ms);
53 void onUpdate()
override;
58 sf::CircleShape m_circle;
59 sf::RectangleShape m_rectangle;
65 void setDuration(
int duration_ms);
66 void onUpdate()
override;
70 sf::CircleShape m_circle;
71 sf::RectangleShape m_rectangle;