bitsy-parser/src/position.rs

50 lines
1.1 KiB
Rust
Raw Normal View History

2020-04-18 15:12:06 +00:00
use std::error::Error;
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-18 15:12:06 +00:00
impl Position {
#[inline]
2020-04-18 15:12:06 +00:00
pub(crate) fn from(string: String) -> Result<Position, &'static dyn Error> {
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
}
}
impl ToString for Position {
#[inline]
fn to_string(&self) -> String {
format!("{},{}", self.x, self.y)
}
}
2020-04-19 07:13:55 +00:00
#[cfg(test)]
mod test {
use crate::position::Position;
#[test]
fn test_position_from_string() {
assert_eq!(
Position::from("4,12".to_string()).unwrap(),
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
}