NasNas
An intuitive and beginner friendly 2D game framework for C++
Region.hpp
1 // Created by Modar Nasser on 19/12/2021.
2 
3 #pragma once
4 
5 #include <SFML/Graphics/Rect.hpp>
6 #include <SFML/System/Vector2.hpp>
7 
8 #include <NasNas/core/data/Maths.hpp>
9 
10 namespace ns::ui {
11  struct Region {
12  virtual ~Region() = default;
13  virtual inline auto getBounds() const -> sf::FloatRect = 0;
14  virtual inline auto contains(const sf::Vector2f& pos) const -> bool = 0;
15  };
16 
17  struct RectangleRegion : public Region {
18  float width = 0.f;
19  float height = 0.f;
20 
21  RectangleRegion(float w, float h) : width(w), height(h) {}
22 
23  inline auto getBounds() const -> sf::FloatRect override {
24  return {-width/2.f, -height/2.f, width, height};
25  }
26  inline auto contains(const sf::Vector2f& pos) const -> bool override {
27  return getBounds().contains(pos);
28  };
29  };
30 
31  struct CircleRegion : public Region {
32  float radius = 0.f;
33 
34  CircleRegion(float r) : radius(r) {}
35 
36  inline auto getBounds() const -> sf::FloatRect override {
37  return {-radius, -radius, 2.f*radius, 2.f*radius};
38  }
39  inline auto contains(const sf::Vector2f& pos) const -> bool override {
40  return norm(pos) < radius;
41  };
42  };
43 }
auto norm(const sf::Vector2< T > &vector) -> float
Calculates the norm of a vector (its length)
Definition: Maths.hpp:40