bitsy-parser/src/position.rs

58 lines
1.2 KiB
Rust
Raw Normal View History

2020-04-18 15:12:06 +00:00
use std::error::Error;
2020-04-29 17:33:22 +00:00
use std::fmt;
use std::str::FromStr;
2020-04-18 15:12:06 +00:00
2020-04-12 12:21:27 +00:00
#[derive(Debug, Eq, PartialEq)]
pub struct Position {
pub x: u8,
pub y: u8,
2020-04-12 12:21:27 +00:00
}
2020-04-29 17:33:22 +00:00
impl Error for Position {}
impl FromStr for Position {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
let string = s.to_string();
2020-04-12 12:21:27 +00:00
// e.g. "2,5"
let xy: Vec<&str> = string.split(',').collect();
2020-04-25 13:18:34 +00:00
let x = xy[0].parse().expect("Bad x coordinate supplied for Position");
2020-04-13 23:37:02 +00:00
if xy.len() < 2 {
panic!("Bad position : {}", string);
}
2020-04-25 13:18:34 +00:00
let y = xy[1].parse().expect("Bad y coordinate supplied for Position");
2020-04-12 12:21:27 +00:00
2020-04-18 15:12:06 +00:00
Ok(Position { x, y })
2020-04-12 12:21:27 +00:00
}
}
2020-04-29 17:33:22 +00:00
impl fmt::Display for Position {
2020-04-12 12:21:27 +00:00
#[inline]
2020-04-29 17:33:22 +00:00
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{},{}", self.x, self.y)
2020-04-12 12:21:27 +00:00
}
}
2020-04-19 07:13:55 +00:00
#[cfg(test)]
mod test {
use crate::position::Position;
2020-04-29 17:33:22 +00:00
use std::str::FromStr;
2020-04-19 07:13:55 +00:00
#[test]
2020-04-29 17:33:22 +00:00
fn test_position_from_str() {
2020-04-19 07:13:55 +00:00
assert_eq!(
2020-04-29 17:33:22 +00:00
Position::from_str(&"4,12").unwrap(),
2020-04-19 07:13:55 +00:00
Position { x: 4, y: 12 }
);
}
2020-04-12 12:21:27 +00:00
2020-04-19 07:13:55 +00:00
#[test]
fn test_position_to_string() {
assert_eq!(Position { x: 4, y: 12 }.to_string(), "4,12".to_string())
}
2020-04-12 12:21:27 +00:00
}