1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
use crate::prelude::Point;
use std::collections::HashSet;
use std::convert::TryInto;
use std::ops;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(PartialEq, Eq, Copy, Clone, Debug)]
pub struct Rect {
pub x1: i32,
pub x2: i32,
pub y1: i32,
pub y2: i32,
}
#[cfg(feature = "specs")]
impl specs::prelude::Component for Rect {
type Storage = specs::prelude::VecStorage<Self>;
}
impl Default for Rect {
fn default() -> Rect {
Rect::zero()
}
}
impl Rect {
pub fn with_size<T>(x: T, y: T, w: T, h: T) -> Rect
where
T: TryInto<i32>,
{
let x_i32: i32 = x.try_into().ok().unwrap();
let y_i32: i32 = y.try_into().ok().unwrap();
Rect {
x1: x_i32,
y1: y_i32,
x2: x_i32 + w.try_into().ok().unwrap(),
y2: y_i32 + h.try_into().ok().unwrap(),
}
}
pub fn with_exact<T>(x1: T, y1: T, x2: T, y2: T) -> Rect
where
T: TryInto<i32>,
{
Rect {
x1: x1.try_into().ok().unwrap(),
y1: y1.try_into().ok().unwrap(),
x2: x2.try_into().ok().unwrap(),
y2: y2.try_into().ok().unwrap(),
}
}
pub fn zero() -> Rect {
Rect {
x1: 0,
y1: 0,
x2: 0,
y2: 0,
}
}
pub fn intersect(&self, other: &Rect) -> bool {
self.x1 <= other.x2 && self.x2 >= other.x1 && self.y1 <= other.y2 && self.y2 >= other.y1
}
pub fn center(&self) -> Point {
Point::new((self.x1 + self.x2) / 2, (self.y1 + self.y2) / 2)
}
pub fn point_in_rect(&self, point: Point) -> bool {
point.x >= self.x1 && point.x < self.x2 && point.y >= self.y1 && point.y < self.y2
}
pub fn for_each<F>(&self, mut f: F)
where
F: FnMut(Point),
{
for y in self.y1..=self.y2 {
for x in self.x1..=self.x2 {
f(Point::new(x, y));
}
}
}
pub fn point_set(&self) -> HashSet<Point> {
let mut result = HashSet::new();
for y in self.y1..self.y2 {
for x in self.x1..self.x2 {
result.insert(Point::new(x, y));
}
}
result
}
pub fn width(&self) -> i32 {
i32::abs(self.x2 - self.x1)
}
pub fn height(&self) -> i32 {
i32::abs(self.y2 - self.y1)
}
}
impl ops::Add<Rect> for Rect {
type Output = Rect;
fn add(mut self, rhs: Rect) -> Rect {
let w = self.width();
let h = self.height();
self.x1 += rhs.x1;
self.x2 = self.x1 + w;
self.y1 += rhs.y1;
self.y2 = self.y1 + h;
self
}
}
#[cfg(test)]
mod tests {
use crate::prelude::{Point, Rect};
#[test]
fn test_dimensions() {
let rect = Rect::with_size(0, 0, 10, 10);
assert!(rect.width() == 10);
assert!(rect.height() == 10);
}
#[test]
fn test_add() {
let rect = Rect::with_size(0, 0, 10, 10) + Rect::with_size(1, 1, 1, 1);
assert!(rect.x1 == 1 && rect.y1 == 1);
assert!(rect.x2 == 11 && rect.y2 == 11);
}
#[test]
fn test_intersect() {
let r1 = Rect::with_size(0, 0, 10, 10);
let r2 = Rect::with_size(5, 5, 10, 10);
let r3 = Rect::with_size(100, 100, 5, 5);
assert!(r1.intersect(&r2));
assert!(!r1.intersect(&r3));
}
#[test]
fn test_center() {
let r1 = Rect::with_size(0, 0, 10, 10);
let center = r1.center();
assert!(center.x == 5 && center.y == 5);
}
#[test]
fn test_point_in_rect() {
let r1 = Rect::with_size(0, 0, 10, 10);
assert!(r1.point_in_rect(Point::new(5, 5)));
assert!(!r1.point_in_rect(Point::new(100, 100)));
}
#[test]
fn test_rect_set() {
let r1 = Rect::with_size(0, 0, 1, 1);
let points = r1.point_set();
assert!(points.contains(&Point::new(0, 0)));
assert!(!points.contains(&Point::new(1, 0)));
assert!(!points.contains(&Point::new(0, 1)));
assert!(!points.contains(&Point::new(1, 1)));
}
#[test]
fn test_rect_callback() {
use std::collections::HashSet;
let r1 = Rect::with_size(0, 0, 1, 1);
let mut points: HashSet<Point> = HashSet::new();
r1.for_each(|p| {
points.insert(p);
});
assert!(points.contains(&Point::new(0, 0)));
assert!(points.contains(&Point::new(1, 0)));
assert!(points.contains(&Point::new(0, 1)));
assert!(points.contains(&Point::new(1, 1)));
}
}