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
use winapi::um::wincon::COORD;
use std::fmt::Display;
use winapi::_core::fmt::{Formatter, Error};
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, PartialOrd, Hash)]
pub struct Coord {
pub x: i16,
pub y: i16,
}
impl Coord {
pub const ZERO: Coord = Coord { x: 0, y: 0 };
#[inline]
pub fn new(x: i16, y: i16) -> Coord {
Coord { x, y }
}
#[inline]
pub fn with_x(&self, x: i16) -> Coord{
Coord{
x,
y: self.y
}
}
#[inline]
pub fn with_y(&self, y: i16) -> Coord{
Coord{
x: self.x,
y
}
}
}
impl Display for Coord{
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
f.write_fmt(format_args!("({}, {})", self.x, self.y))
}
}
impl From<COORD> for Coord {
#[inline]
fn from(coord: COORD) -> Self {
Coord::new(coord.X, coord.Y)
}
}
impl Into<COORD> for Coord {
#[inline]
fn into(self) -> COORD {
COORD {
X: self.x,
Y: self.y,
}
}
}