NasNas
An intuitive and beginner friendly 2D game framework for C++
Shapes.hpp
1 
5 #pragma once
6 
7 #include <optional>
8 
9 #include <SFML/Graphics/Color.hpp>
10 #include <SFML/Graphics/Drawable.hpp>
11 #include <SFML/Graphics/RenderTarget.hpp>
12 #include <SFML/Graphics/Shape.hpp>
13 #include <SFML/Graphics/Transformable.hpp>
14 
15 #include <NasNas/core/data/Rect.hpp>
16 
17 namespace ns {
18  class EllipseShape : public sf::Shape {
19  public :
20 
21  EllipseShape() = default;
22  explicit EllipseShape(const sf::Vector2f& radius);
23  EllipseShape(float radius_x, float radius_y);
24 
25  void setRadius(const sf::Vector2f& radius) ;
26 
27  auto getRadius() const -> const sf::Vector2f&;
28 
29  void setPointCount(std::size_t point_count);
30 
31  auto getPointCount() const -> std::size_t override;
32 
33  auto getPoint(std::size_t index) const -> sf::Vector2f override;
34 
35  private :
36  std::size_t m_point_count = 30;
37  sf::Vector2f m_radius;
38  };
39 
40  class LineShape : public sf::Drawable, public sf::Transformable {
41  struct Point {
42  sf::Vector2f pos;
43  sf::Color color;
44  float radius=1.f;
45  auto operator==(const Point& p1) const -> bool;
46  };
47  public:
48  LineShape();
49 
50  void resize(size_t size);
51 
52  void addPoint(float x, float y, const std::optional<sf::Color>& color=std::nullopt);
53  void addPoint(const sf::Vector2f& position, const std::optional<sf::Color>& color=std::nullopt);
54  void removePoint(unsigned index);
55 
56  void setPoint(unsigned index, float x, float y);
57  void setPoint(unsigned index, const sf::Vector2f& position);
58  auto getPoint(unsigned index) const -> const sf::Vector2f&;
59 
60  void setColor(const sf::Color& color);
61  auto getColor() const -> const sf::Color&;
62 
63  void setColor(unsigned index, const sf::Color& color);
64  auto getColor(unsigned index) const -> const sf::Color&;
65 
66  void setThickness(float thickness);
67  auto getThickness() const -> float;
68 
69  void setThickness(unsigned index, float thickness);
70  auto getThickness(unsigned index) const -> float;
71 
72  void setOutlineThickness(float thickness);
73  auto getOutlineThickness() const -> float;
74 
75  void setOutlineColor(const sf::Color& color);
76  auto getOutlineColor() const -> const sf::Color&;
77 
78  auto getPointCount() const -> std::size_t;
79 
80  auto getLocalBounds() const -> sf::FloatRect;
81  auto getGlobalBounds() const -> ns::FloatRect;
82 
83  private:
84  void update();
85  void update(unsigned index);
86  void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
87  sf::Color m_color=sf::Color::White;
88  sf::Color m_outline_color=sf::Color::Black;
89  float m_thickness = 1.f;
90  float m_outline_thickness = 0.f;
91  std::vector<Point> m_points;
92  sf::VertexArray m_shape_verts;
93  sf::VertexArray m_outline_verts;
94  };
95 
96 }