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> 17 #include <NasNas/core/graphics/Shapes.hpp> 18 #include <NasNas/tilemapping/PropertiesContainer.hpp> 19 #include <NasNas/tilemapping/Tile.hpp> 23 struct RectangleObject;
25 struct PolylineObject;
39 explicit Object(
const pugi::xml_node& xml_node, Shape shape);
40 virtual ~
Object() =
default;
42 const std::string name;
43 const std::string type;
47 const Shape shapetype;
58 ShapeObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
59 auto getShape()
const ->
const T&;
63 Shape getShapeTypeEnum();
64 using Object::asPoint;
65 using Object::asRectangle;
66 using Object::asEllipse;
67 using Object::asPolyline;
68 using Object::asPolygon;
73 PointObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
77 RectangleObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
83 EllipseObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
89 PolylineObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
90 const std::vector<sf::Vector2f> points;
94 PolygonObject(
const pugi::xml_node& xml_node,
const sf::Color& color);
95 const std::vector<sf::Vector2f> points;
99 TileObject(
const pugi::xml_node& xml_node,
const sf::Color& color,
TiledMap* tiledmap);
102 const std::uint32_t gid;
103 const Tile::Flip flip;
106 template <
typename T>
108 Object(xml_node, getShapeTypeEnum())
110 m_shape.setPosition(x, y);
111 m_shape.setRotation(rotation);
113 if constexpr(std::is_same_v<T, ns::LineShape>) {
114 m_shape.setColor({color.r, color.g, color.b, 200});
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);
123 template <
typename T>
128 template <
typename T>
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;