2020-04-18 09:46:07 +00:00
|
|
|
use crate::{AnimationFrames, Image, from_base36, ToBase36, optional_data_line};
|
2020-04-12 11:53:11 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
pub struct Tile {
|
2020-04-13 13:43:23 +00:00
|
|
|
pub id: u64,
|
2020-04-12 11:53:11 +00:00
|
|
|
pub name: Option<String>,
|
2020-04-13 23:40:14 +00:00
|
|
|
pub wall: Option<bool>, // this is "optional" in that a tile can have `WAL true|false` or neither
|
2020-04-12 11:53:11 +00:00
|
|
|
pub animation_frames: Vec<Image>,
|
2020-04-13 23:40:14 +00:00
|
|
|
pub colour_id: Option<u64>,
|
2020-04-12 11:53:11 +00:00
|
|
|
}
|
|
|
|
|
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-13 23:40:14 +00:00
|
|
|
|
|
|
|
fn wall_line(&self) -> String {
|
|
|
|
if self.wall.is_some() {
|
|
|
|
format!("\nWAL {}", self.wall.unwrap())
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn colour_line(&self) -> String {
|
|
|
|
if self.colour_id.is_some() {
|
|
|
|
format!("\nCOL {}", self.colour_id.unwrap())
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
}
|
2020-04-13 18:25:49 +00:00
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
2020-04-13 13:43:23 +00:00
|
|
|
let id = from_base36(&lines[0].replace("TIL ", ""));
|
2020-04-12 11:53:11 +00:00
|
|
|
|
2020-04-13 23:40:14 +00:00
|
|
|
let mut wall = None;
|
|
|
|
let mut name = None;
|
|
|
|
let mut colour_id = None;
|
2020-04-12 11:53:11 +00:00
|
|
|
|
2020-04-13 23:40:14 +00:00
|
|
|
loop {
|
|
|
|
let last_line = lines.pop().unwrap();
|
|
|
|
|
|
|
|
if last_line.starts_with("WAL") {
|
|
|
|
wall = Some(last_line.ends_with("true"));
|
|
|
|
} else if last_line.starts_with("NAME") {
|
|
|
|
name = Some(last_line.replace("NAME ", "").to_string());
|
|
|
|
} else if last_line.starts_with("COL") {
|
|
|
|
colour_id = Some(last_line.replace("COL ", "").parse().unwrap());
|
|
|
|
} else {
|
2020-04-12 11:53:11 +00:00
|
|
|
lines.push(last_line);
|
2020-04-13 23:40:14 +00:00
|
|
|
break;
|
2020-04-12 11:53:11 +00:00
|
|
|
}
|
2020-04-13 23:40:14 +00:00
|
|
|
}
|
2020-04-12 11:53:11 +00:00
|
|
|
|
|
|
|
let animation_frames = lines[1..].join("");
|
2020-04-13 23:40:14 +00:00
|
|
|
let animation_frames: Vec<&str> = animation_frames.split(">").collect();
|
2020-04-12 11:53:11 +00:00
|
|
|
let animation_frames: Vec<Image> = animation_frames.iter().map(|&frame| {
|
|
|
|
Image::from(frame.to_string())
|
|
|
|
}).collect();
|
|
|
|
|
2020-04-13 23:40:14 +00:00
|
|
|
Tile { id, name, wall, animation_frames, colour_id }
|
2020-04-12 11:53:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToString for Tile {
|
|
|
|
#[inline]
|
|
|
|
fn to_string(&self) -> String {
|
|
|
|
format!(
|
2020-04-13 23:40:14 +00:00
|
|
|
"TIL {}\n{}{}{}{}",
|
2020-04-13 13:43:23 +00:00
|
|
|
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-13 23:40:14 +00:00
|
|
|
self.wall_line(),
|
|
|
|
self.colour_line(),
|
2020-04-12 11:53:11 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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 {
|
2020-04-13 13:43:23 +00:00
|
|
|
id: 35,
|
2020-04-12 11:53:11 +00:00
|
|
|
name: Some("concrete 1".to_string()),
|
2020-04-13 23:40:14 +00:00
|
|
|
wall: Some(true),
|
2020-04-12 11:53:11 +00:00
|
|
|
animation_frames: vec![
|
|
|
|
Image {
|
|
|
|
pixels: vec![1; 64]
|
|
|
|
}
|
|
|
|
],
|
2020-04-13 23:40:14 +00:00
|
|
|
colour_id: None
|
2020-04-12 11:53:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(output, expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tile_to_string() {
|
|
|
|
let output = Tile {
|
2020-04-13 13:43:23 +00:00
|
|
|
id: 262,
|
2020-04-12 11:53:11 +00:00
|
|
|
name: Some("chequers".to_string()),
|
2020-04-13 23:40:14 +00:00
|
|
|
wall: None,
|
2020-04-12 11:53:11 +00:00
|
|
|
animation_frames: vec![
|
2020-04-18 09:46:07 +00:00
|
|
|
crate::mock::image::chequers_1(),
|
|
|
|
crate::mock::image::chequers_2(),
|
2020-04-13 23:40:14 +00:00
|
|
|
],
|
|
|
|
colour_id: None
|
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);
|
|
|
|
}
|