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 core::{
  ops::Deref,
  ops::{Div, Mul},
};
use num_traits::SaturatingMul;

/// A percent from 0u16 to 100u16.
///
/// Arithmetic operations won't result in values greater than u16::MAX.
#[derive(Clone, Copy, Debug)]
pub struct Pct(u16);

impl Pct {
  /// From percent representation (0 to 100).
  ///
  /// Values greater than 100 will be truncated to 100.
  ///
  /// # Example
  ///
  /// ```rust
  /// use mop_blocks::Pct;
  /// assert_eq!(*Pct::from_percent(40), 40);
  /// ```
  pub fn from_percent(pct: u16) -> Self {
    Pct(pct)
  }

  /// Is In Random Probability?
  #[cfg(feature = "with-rand")]
  pub fn is_in_rnd_pbty<R>(self, rng: &mut R) -> bool
  where
    R: rand::Rng,
  {
    let random = rng.gen::<u16>() % 100;
    random < self.0
  }
}

impl AsRef<u16> for Pct {
  fn as_ref(&self) -> &u16 {
    &self.0
  }
}

impl Deref for Pct {
  type Target = u16;
  fn deref(&self) -> &u16 {
    &self.0
  }
}

/// # Example
///
/// ```rust
/// use mop_blocks::Pct;
/// assert_eq!(Pct::from_percent(20) * 10, 2);
/// ```
impl<T> Mul<T> for Pct
where
  T: Div<T, Output = T> + From<u16> + SaturatingMul,
{
  type Output = T;

  fn mul(self, rhs: T) -> T {
    let t: T = self.0.into();
    t.saturating_mul(&rhs).div(100.into())
  }
}