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;

/// Used to mark a dice roll if its result is a critic.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Critic {
    /// Normal result
    No,
    /// Minimum reached
    Min,
    /// Maximum reached
    Max,
}

/// Carry one dice result and a marker field to say if it the result is a min, max, or none.
#[derive(Debug, Clone, Copy)]
pub struct DiceResult {
    /// The side of the dice that was rolled
    pub res: u64,
    /// If the result was remarkable (critic)
    pub crit: Critic,
}

impl DiceResult {
    /// Create a `DiceResult`.
    ///
    /// - `value`: value rolled on the dice
    /// - `sides`: number of sides of the dice
    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
    }
}