NasNas
An intuitive and beginner friendly 2D game framework for C++
Object.hpp
1 // Created by Modar Nasser on 28/06/2021.
2 
3 #pragma once
4 
5 #include <cstdint>
6 #include <string>
7 #include <type_traits>
8 #include <vector>
9 
10 #include <SFML/Graphics/CircleShape.hpp>
11 #include <SFML/Graphics/Color.hpp>
12 #include <SFML/Graphics/ConvexShape.hpp>
13 #include <SFML/Graphics/RectangleShape.hpp>
14 #include <SFML/Graphics/Sprite.hpp>
15 #include <SFML/System/Vector2.hpp>
16 
17 #include <NasNas/core/graphics/Shapes.hpp>
18 #include <NasNas/tilemapping/PropertiesContainer.hpp>
19 #include <NasNas/tilemapping/Tile.hpp>
20 
21 namespace ns::tm {
22  struct PointObject;
23  struct RectangleObject;
24  struct EllipseObject;
25  struct PolylineObject;
26  struct PolygonObject;
27  struct TileObject;
28  class TiledMap;
29 
31  enum class Shape {
32  Point,
33  Rectangle,
34  Ellipse,
35  Polyline,
36  Polygon,
37  Tile
38  };
39  explicit Object(const pugi::xml_node& xml_node, Shape shape);
40  virtual ~Object() = default;
41  const unsigned id;
42  const std::string name;
43  const std::string type;
44  const float x;
45  const float y;
46  const float rotation;
47  const Shape shapetype;
48  auto asPoint() -> PointObject&;
49  auto asRectangle() -> RectangleObject&;
50  auto asEllipse() -> EllipseObject&;
51  auto asPolyline() -> PolylineObject&;
52  auto asPolygon() -> PolygonObject&;
53  auto asTile() -> TileObject&;
54  };
55 
56  template <typename T>
57  struct ShapeObject : Object {
58  ShapeObject(const pugi::xml_node& xml_node, const sf::Color& color);
59  auto getShape() const -> const T&;
60  protected:
61  T m_shape;
62  private:
63  Shape getShapeTypeEnum();
64  using Object::asPoint;
65  using Object::asRectangle;
66  using Object::asEllipse;
67  using Object::asPolyline;
68  using Object::asPolygon;
69  using Object::asTile;
70  };
71 
72  struct PointObject : ShapeObject<sf::CircleShape> {
73  PointObject(const pugi::xml_node& xml_node, const sf::Color& color);
74  };
75 
76  struct RectangleObject : ShapeObject<sf::RectangleShape> {
77  RectangleObject(const pugi::xml_node& xml_node, const sf::Color& color);
78  const float width;
79  const float height;
80  };
81 
82  struct EllipseObject : ShapeObject<ns::EllipseShape> {
83  EllipseObject(const pugi::xml_node& xml_node, const sf::Color& color);
84  const float width;
85  const float height;
86  };
87 
88  struct PolylineObject : ShapeObject<ns::LineShape> {
89  PolylineObject(const pugi::xml_node& xml_node, const sf::Color& color);
90  const std::vector<sf::Vector2f> points;
91  };
92 
93  struct PolygonObject : ShapeObject<sf::ConvexShape> {
94  PolygonObject(const pugi::xml_node& xml_node, const sf::Color& color);
95  const std::vector<sf::Vector2f> points;
96  };
97 
98  struct TileObject : ShapeObject<sf::Sprite> {
99  TileObject(const pugi::xml_node& xml_node, const sf::Color& color, TiledMap* tiledmap);
100  const float width;
101  const float height;
102  const std::uint32_t gid;
103  const Tile::Flip flip;
104  };
105 
106  template <typename T>
107  ShapeObject<T>::ShapeObject(const pugi::xml_node& xml_node, const sf::Color& color) :
108  Object(xml_node, getShapeTypeEnum())
109  {
110  m_shape.setPosition(x, y);
111  m_shape.setRotation(rotation);
112 
113  if constexpr(std::is_same_v<T, ns::LineShape>) {
114  m_shape.setColor({color.r, color.g, color.b, 200});
115  }
116  else if constexpr(!std::is_same_v<T, sf::Sprite>) {
117  m_shape.setFillColor({color.r, color.g, color.b, 40});
118  m_shape.setOutlineColor({color.r, color.g, color.b, 200});
119  m_shape.setOutlineThickness(-1);
120  }
121  }
122 
123  template <typename T>
124  auto ShapeObject<T>::getShape() const -> const T& {
125  return m_shape;
126  }
127 
128  template <typename T>
129  auto ShapeObject<T>::getShapeTypeEnum() -> Shape {
130  if constexpr(std::is_same_v<T, sf::CircleShape>)
131  return Object::Shape::Point;
132  else if constexpr(std::is_same_v<T, sf::RectangleShape>)
133  return Object::Shape::Rectangle;
134  else if constexpr(std::is_same_v<T, ns::EllipseShape>)
135  return Object::Shape::Ellipse;
136  else if constexpr(std::is_same_v<T, ns::LineShape>)
137  return Object::Shape::Polyline;
138  else if constexpr(std::is_same_v<T, sf::ConvexShape>)
139  return Object::Shape::Polygon;
140  else if constexpr(std::is_same_v<T, sf::Sprite>)
141  return Object::Shape::Tile;
142  }
143 }