NasNas
An intuitive and beginner friendly 2D game framework for C++
Rect.hpp
1 
6 #pragma once
7 
8 #include <SFML/Graphics/Rect.hpp>
9 
10 namespace ns {
16  template <typename T>
17  class Rect : public sf::Rect<T> {
18  public:
19  // parent constructor
20  using sf::Rect<T>::Rect;
21  // copy constructor
22  Rect(const ns::Rect<T>& rect);
23 
24  template <typename S>
25  Rect(const sf::Rect<S>& rect);
26 
27  auto size() const -> sf::Vector2<T> { return sf::Vector2<T>(this->width, this->height); }
28 
29  auto right() const -> T { return this->left + this->width; }
30 
31  auto bottom() const -> T { return this->top + this->height; }
32 
33  auto topleft() const -> sf::Vector2<T> { return sf::Vector2<T>(this->left, this->top); }
34  auto topright() const -> sf::Vector2<T> { return sf::Vector2<T>(right(), this->top); }
35  auto bottomleft() const -> sf::Vector2<T> { return sf::Vector2<T>(this->left, bottom()); }
36  auto bottomright() const -> sf::Vector2<T> { return sf::Vector2<T>(right(), bottom()); }
37 
38  auto center() const -> sf::Vector2f { return sf::Vector2f((float)this->width/2.f, (float)this->height/2.f); }
39 
40  auto operator=(const ns::Rect<T>& other) -> ns::Rect<T>&;
41 
42  template <typename S>
43  auto operator=(const sf::Rect<S>& other) -> ns::Rect<T>&;
44 
45  };
46 
47  template <typename T>
48  Rect<T>::Rect(const ns::Rect<T>& rect): sf::Rect<T>(rect)
49  {}
50 
51  template <typename T>
52  template <typename S>
53  Rect<T>::Rect(const sf::Rect<S>& rect) : sf::Rect<T>(rect)
54  {}
55 
56  template <typename T>
57  auto Rect<T>::operator=(const ns::Rect<T> &other) -> ns::Rect<T>&{
58  if (&other == this)
59  return *this;
60  this->left = other.left;
61  this->top = other.top;
62  this->width = other.width;
63  this->height = other.height;
64  return *this;
65  }
66 
67  template <typename T>
68  template <typename S>
69  auto Rect<T>::operator=(const sf::Rect<S>& other) -> ns::Rect<T>& {
70  this->left = static_cast<T>(other.left);
71  this->top = static_cast<T>(other.top);
72  this->width = static_cast<T>(other.width);
73  this->height = static_cast<T>(other.height);
74  return *this;
75  }
76 
77  typedef Rect<int> IntRect;
78  typedef Rect<float> FloatRect;
79 
80 }
Extending sf::Rect with customized properties.
Definition: Rect.hpp:17