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 std::ops::Deref;
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Critic {
No,
Min,
Max,
}
#[derive(Debug, Clone, Copy)]
pub struct DiceResult {
pub res: u64,
pub crit: Critic,
}
impl DiceResult {
pub fn new(value: u64, sides: u64) -> Self {
DiceResult {
res: value,
crit: if value == sides {
Critic::Max
} else if value == 1 {
Critic::Min
} else {
Critic::No
},
}
}
}
impl PartialEq for DiceResult {
fn eq(&self, other: &Self) -> bool {
self.res == other.res
}
}
impl Eq for DiceResult {}
impl PartialOrd for DiceResult {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(&other))
}
}
impl Ord for DiceResult {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.res.cmp(&other.res)
}
}
impl Deref for DiceResult {
type Target = u64;
fn deref(&self) -> &Self::Target {
&self.res
}
}