NasNas
An intuitive and beginner friendly 2D game framework for C++
ParticleSystem.hpp
1 // Created by Modar Nasser on 14/02/2021.
2 
3 #pragma once
4 
5 #include <vector>
6 #include <memory>
7 
8 #include <SFML/Graphics/Color.hpp>
9 #include <SFML/Graphics/Drawable.hpp>
10 #include <SFML/Graphics/RenderStates.hpp>
11 #include <SFML/Graphics/RenderTarget.hpp>
12 #include <SFML/Graphics/Texture.hpp>
13 
14 #include <NasNas/core/data/Rect.hpp>
15 #include <NasNas/core/graphics/Sprite.hpp>
16 #include <NasNas/core/graphics/SpriteBatch.hpp>
17 
18 namespace ns {
19  class ParticleSystem;
20 
21  struct Particle {
22  float rotation = 0.f;
23  float scale = 1.f;
24  sf::Vector2f velocity = {0.f,0.f};
25  sf::Color color = sf::Color::White;
26  float lifetime = 1.f;
27  auto getAge() const -> float { return age; }
28  private:
29  friend ParticleSystem;
30  bool active = false;
31  bool repeat = false;
32  float age = 0.f;
33  ns::Sprite sprite;
34  };
35 
36  class ParticleSystem : public sf::Drawable {
37  public:
38  ParticleSystem() = default;
39 
40  void setTexture(const sf::Texture& texture);
41  void setEmitRate(float rate);
42  void emit(const sf::IntRect& rect, int nb, bool repeat=false);
43  void emitBurst(const sf::IntRect& rect, int nb);
44 
45  auto getParticleCount() const -> unsigned;
46 
47  void setPosition(float x, float y);
48  void setPosition(const sf::Vector2f& pos);
49  auto getPosition() const -> sf::Vector2f;
50  auto getGlobalBounds() const -> ns::FloatRect;
51 
52  virtual void onParticleCreate(Particle& particle) = 0;
53  virtual void onParticleUpdate(Particle& particle) = 0;
54 
55  void update();
56 
57  private:
58  void updateParticle(Particle& particle, float dt);
59  void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
60 
61  const sf::Texture* m_texture = nullptr;
62  sf::Vector2f m_position;
63  std::vector<std::unique_ptr<Particle>> m_particles;
64  float m_rate = 9999.f;
65  float m_to_emmit = 0.f;
66  unsigned m_count = 0;
67  ns::SpriteBatch m_batch;
68  };
69 
70 }
71