use std::ops::Deref;
use std::{error, fmt, str::FromStr};
use rkyv::{Archive, Deserialize as RkyvDeserialize, Serialize as RkyvSerialize};
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
#[derive(
Archive, RkyvSerialize, RkyvDeserialize, Clone, Copy, Debug, Eq, PartialEq, PartialOrd, Ord,
)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Score(u16);
impl fmt::Display for Score {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl Deref for Score {
type Target = u16;
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
Parse(lexical::Error),
Invalid(TryFromIntError),
}
impl error::Error for ParseError {}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Parse(e) => write!(f, "parse error: {}", e),
Self::Invalid(e) => write!(f, "invalid input: {}", e),
}
}
}
impl FromStr for Score {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let n: u32 = lexical::parse(s).map_err(ParseError::Parse)?;
Self::try_from(n).map_err(ParseError::Invalid)
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct TryFromIntError(u32);
impl error::Error for TryFromIntError {}
impl fmt::Display for TryFromIntError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "invalid value: {}", self.0)
}
}
impl TryFrom<u32> for Score {
type Error = TryFromIntError;
fn try_from(n: u32) -> Result<Self, Self::Error> {
u16::try_from(n)
.map(|n| Self(n))
.map_err(|_| TryFromIntError(n))
}
}
impl From<u16> for Score {
fn from(n: u16) -> Self {
Self(n)
}
}
impl From<Score> for u16 {
fn from(score: Score) -> Self {
score.0
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_fmt() {
assert_eq!(Score(1).to_string(), "1");
assert_eq!(Score(1000).to_string(), "1000");
}
#[test]
fn test_try_from_u16_for_score() {
assert_eq!(Score::try_from(1u16), Ok(Score(1)));
assert_eq!(Score::try_from(1000u16), Ok(Score(1000)));
assert_eq!(Score::try_from(2000u16), Ok(Score(2000)));
}
#[test]
fn test_from_score_for_u16() {
assert_eq!(u16::from(Score(8)), 8);
}
}