14725
|
1 |
use integral_geometry::{Point, Rect, Size};
|
|
2 |
|
|
3 |
#[derive(Debug)]
|
|
4 |
pub struct Camera {
|
|
5 |
pub position: Point,
|
|
6 |
pub zoom: f32,
|
14726
|
7 |
size: Size,
|
14725
|
8 |
}
|
|
9 |
|
|
10 |
impl Camera {
|
|
11 |
pub fn new() -> Self {
|
14726
|
12 |
Self::with_size(Size::new(1024, 768))
|
|
13 |
}
|
|
14 |
|
|
15 |
pub fn with_size(size: Size) -> Self {
|
|
16 |
Self {
|
|
17 |
position: Point::ZERO,
|
14729
|
18 |
zoom: 1.0,
|
14726
|
19 |
size,
|
|
20 |
}
|
14725
|
21 |
}
|
|
22 |
|
|
23 |
pub fn viewport(&self) -> Rect {
|
14730
|
24 |
#[inline]
|
|
25 |
fn scale(value: usize, zoom: f32) -> i32 {
|
|
26 |
(value as f32 / zoom / 2.0) as i32
|
|
27 |
}
|
|
28 |
let half_width = scale(self.size.width, self.zoom);
|
|
29 |
let half_height = scale(self.size.height, self.zoom);
|
|
30 |
Rect::from_box(
|
|
31 |
self.position.x - half_width,
|
|
32 |
self.position.x + half_width,
|
|
33 |
self.position.y - half_height,
|
|
34 |
self.position.y + half_height,
|
|
35 |
)
|
14725
|
36 |
}
|
14726
|
37 |
}
|