bitsy-parser/src/tile.rs

101 lines
2.5 KiB
Rust
Raw Normal View History

2020-04-13 18:25:49 +00:00
use crate::{AnimationFrames, from_base36, ToBase36, optional_data_line};
2020-04-12 11:53:11 +00:00
use crate::image::Image;
2020-04-12 12:50:07 +00:00
use crate::mock;
2020-04-12 11:53:11 +00:00
#[derive(Debug, Eq, PartialEq)]
pub struct Tile {
pub id: u64,
2020-04-12 11:53:11 +00:00
pub name: Option<String>,
pub wall: bool,
pub animation_frames: Vec<Image>,
}
2020-04-13 18:25:49 +00:00
impl Tile {
fn name_line(&self) -> String {
optional_data_line("NAME", self.name.as_ref())
}
}
2020-04-12 11:53:11 +00:00
impl From<String> for Tile {
2020-04-13 12:30:55 +00:00
#[inline]
2020-04-12 11:53:11 +00:00
fn from(string: String) -> Tile {
let mut lines: Vec<&str> = string.lines().collect();
let id = from_base36(&lines[0].replace("TIL ", ""));
2020-04-12 11:53:11 +00:00
let last_line = lines.pop().unwrap();
let wall = match last_line == "WAL true" {
true => true,
false => {
lines.push(last_line);
false
}
};
let last_line = lines.pop().unwrap();
let name = match last_line.starts_with("NAME") {
true => Some(last_line.replace("NAME ", "").to_string()),
false => {
lines.push(last_line);
None
}
};
let animation_frames = lines[1..].join("");
let animation_frames: Vec<&str> = animation_frames.split("\n>\n").collect();
let animation_frames: Vec<Image> = animation_frames.iter().map(|&frame| {
Image::from(frame.to_string())
}).collect();
Tile { id, name, wall, animation_frames }
}
}
impl ToString for Tile {
#[inline]
fn to_string(&self) -> String {
format!(
"TIL {}\n{}{}{}",
self.id.to_base36(),
2020-04-12 11:53:11 +00:00
self.animation_frames.to_string(),
2020-04-13 18:25:49 +00:00
self.name_line(),
2020-04-12 11:53:11 +00:00
if self.wall {"\nWAL true"} else {""}
)
}
}
#[test]
fn test_tile_from_string() {
2020-04-13 23:17:40 +00:00
let output = Tile::from(include_str!("test-resources/tile").to_string());
2020-04-12 11:53:11 +00:00
let expected = Tile {
id: 35,
2020-04-12 11:53:11 +00:00
name: Some("concrete 1".to_string()),
wall: true,
animation_frames: vec![
Image {
pixels: vec![1; 64]
}
],
};
assert_eq!(output, expected);
}
#[test]
fn test_tile_to_string() {
let output = Tile {
id: 262,
2020-04-12 11:53:11 +00:00
name: Some("chequers".to_string()),
wall: false,
animation_frames: vec![
2020-04-12 12:50:07 +00:00
mock::image::chequers_1(),
mock::image::chequers_2(),
2020-04-12 11:53:11 +00:00
]
}.to_string();
2020-04-13 23:17:40 +00:00
let expected = include_str!("test-resources/tile-chequers").to_string();
2020-04-12 11:53:11 +00:00
assert_eq!(output, expected);
}