qxLib
rect.h
Go to the documentation of this file.
1 /**
2 
3  @file rect.h
4  @author Khrapov
5  @date 12.11.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <algorithm>
12 #include <optional>
13 
15 #include <qx/math/common.h>
16 
17 QX_PUSH_SUPPRESS_ALL_WARNINGS();
18 #include <glm/vec2.hpp>
19 QX_POP_SUPPRESS_WARNINGS();
20 
21 namespace qx
22 {
23 
24 /**
25 
26  @class rect
27  @brief Rectangle class
28  @details ~
29  @author Khrapov
30  @date 12.11.2021
31 
32 **/
33 template<class vector_t>
35 {
36 public:
37  using vector_type = vector_t;
38  using value_type = typename vector_type::value_type;
39 
40 public:
41  QX_COPYMOVABLE(basic_rect);
42 
43  constexpr basic_rect() noexcept = default;
44 
45  /**
46  @brief basic_rect object constructor
47  @param size - rect size
48  @param pos - upper left corner pos
49  **/
50  constexpr explicit basic_rect(vector_t size, vector_t pos = vector_t(value_type(0.f))) noexcept;
51 
52  /**
53  @brief basic_rect object constructor
54  @param width - rect width
55  @param height - rect height
56  @param xPos - rect upper left corner x pos
57  @param yPos - rect upper left corner y pos
58  **/
59  constexpr basic_rect(
60  value_type width,
61  value_type height,
62  value_type xPos = value_type(0.f),
63  value_type yPos = value_type(0.f)) noexcept;
64 
65  /**
66  @brief Expand rect
67  @param dSize - size to expand
68  **/
69  constexpr void expand(const vector_t& dSize) noexcept;
70 
71  /**
72  @brief Contract rect
73  @param dSize - size to contract
74  **/
75  constexpr void contract(const vector_t& dSize) noexcept;
76 
77  /**
78  @brief Change rect size
79  @param size - new size
80  **/
81  constexpr void set_size(const vector_t& size) noexcept;
82 
83  /**
84  @brief Set rect position
85  @param pos - rect position
86  **/
87  constexpr void set_pos(const vector_t& pos) noexcept;
88 
89  /**
90  @brief Shift rect position
91  @param dPos - position delta
92  **/
93  constexpr void shift(const vector_t& dPos) noexcept;
94 
95  /**
96  @brief Get upper left corner pos
97  @retval - upper left corner pos
98  **/
99  constexpr const vector_t& pos() const noexcept;
100 
101  /**
102  @brief Get min rect pos
103  @details same as pos()
104  @retval - min rect pos
105  **/
106  constexpr const vector_t& min() const noexcept;
107 
108  /**
109  @brief Get max rect pos
110  @retval - max rect pos
111  **/
112  constexpr vector_t max() const noexcept;
113 
114  /**
115  @brief Get rect size
116  @retval - rect size
117  **/
118  constexpr const vector_t& size() const noexcept;
119 
120  /**
121  @brief Get rect width
122  @retval - rect width
123  **/
124  constexpr value_type width() const noexcept;
125 
126  /**
127  @brief Get rect height
128  @retval - rect height
129  **/
130  constexpr value_type height() const noexcept;
131 
132  /**
133  @brief Get rect left border coordinate (x)
134  @retval - rect left border coordinate (x)
135  **/
136  constexpr value_type left() const noexcept;
137 
138  /**
139  @brief rect right border coordinate (x)
140  @retval - rect right border coordinate (x)
141  **/
142  constexpr value_type right() const noexcept;
143 
144  /**
145  @brief rect top border coordinate (y)
146  @retval - rect top border coordinate (y)
147  **/
148  constexpr value_type top() const noexcept;
149 
150  /**
151  @brief rect bottom border coordinate (y)
152  @retval - rect bottom border coordinate (y)
153  **/
154  constexpr value_type bottom() const noexcept;
155 
156  /**
157  @brief Get rect center pos
158  @retval - rect center pos
159  **/
160  constexpr vector_t center() const noexcept;
161 
162  /**
163  @brief Is rect empty
164  @retval - true if rect is empty
165  **/
166  constexpr bool empty() const noexcept;
167 
168  /**
169  @brief Calc rect area
170  @retval - rect area
171  **/
172  constexpr value_type area() const noexcept;
173 
174  /**
175  @brief Is point inside rect
176  @param pos - point pos
177  @param originPos - coordinate system center pos
178  @retval - true if pos is inside rect
179  **/
180  constexpr bool contains(const vector_t& pos, const vector_t& originPos = vector_t(0.f)) const noexcept;
181 
182  /**
183  @brief Is other rect inside this rect
184  @param other - other rect
185  @param originPos - coordinate system center pos
186  @retval - true if other rect is inside this rect
187  **/
188  constexpr bool contains(const basic_rect& other, const vector_t& originPos = vector_t(0.f)) const noexcept;
189 
190  /**
191  @brief Is this rect overlaps other rect
192  @param other - other rect
193  @retval - true if this rect is overlaps other rect
194  **/
195  constexpr bool overlaps(const basic_rect& other) const noexcept;
196 
197  /**
198  @brief Get rect representing overlap this rect by other rect
199  @param other - other rect
200  @retval - rect representing overlap this rect by other rect or nullopt
201  **/
202  constexpr std::optional<basic_rect> overlap(const basic_rect& other) const noexcept;
203 
204  constexpr bool operator==(const basic_rect& other) const noexcept;
205  constexpr bool operator!=(const basic_rect& other) const noexcept;
206 
207 private:
208  /**
209  @brief Check new size and assign if size is positive
210  @param size - new size
211  **/
212  constexpr void check_and_assign_size(const vector_t& size) noexcept;
213 
214 private:
215  vector_t m_Size = vector_t(0.f);
216  vector_t m_Pos = vector_t(0.f);
217 };
218 
221 
222 } // namespace qx
223 
224 #include <qx/render/rect.inl>
constexpr void shift(const vector_t &dPos) noexcept
Shift rect position.
Definition: rect.inl:55
constexpr value_type width() const noexcept
Get rect width.
Definition: rect.inl:85
constexpr vector_t center() const noexcept
Get rect center pos.
Definition: rect.inl:121
constexpr value_type height() const noexcept
Get rect height.
Definition: rect.inl:91
constexpr void set_pos(const vector_t &pos) noexcept
Set rect position.
Definition: rect.inl:49
constexpr value_type bottom() const noexcept
rect bottom border coordinate (y)
Definition: rect.inl:115
constexpr value_type top() const noexcept
rect top border coordinate (y)
Definition: rect.inl:109
constexpr bool empty() const noexcept
Is rect empty.
Definition: rect.inl:127
constexpr void contract(const vector_t &dSize) noexcept
Contract rect.
Definition: rect.inl:37
constexpr const vector_t & min() const noexcept
Get min rect pos.
Definition: rect.inl:67
constexpr std::optional< basic_rect > overlap(const basic_rect &other) const noexcept
Get rect representing overlap this rect by other rect.
Definition: rect.inl:161
constexpr value_type area() const noexcept
Calc rect area.
Definition: rect.inl:133
constexpr value_type right() const noexcept
rect right border coordinate (x)
Definition: rect.inl:103
constexpr value_type left() const noexcept
Get rect left border coordinate (x)
Definition: rect.inl:97
constexpr void set_size(const vector_t &size) noexcept
Change rect size.
Definition: rect.inl:43
constexpr bool overlaps(const basic_rect &other) const noexcept
Is this rect overlaps other rect.
Definition: rect.inl:154
constexpr const vector_t & pos() const noexcept
Get upper left corner pos.
Definition: rect.inl:61
constexpr vector_t max() const noexcept
Get max rect pos.
Definition: rect.inl:73
constexpr const vector_t & size() const noexcept
Get rect size.
Definition: rect.inl:79
constexpr bool contains(const vector_t &pos, const vector_t &originPos=vector_t(0.f)) const noexcept
Is point inside rect.
Definition: rect.inl:139
constexpr void expand(const vector_t &dSize) noexcept
Expand rect.
Definition: rect.inl:31