bitsy-parser/src/item.rs

95 lines
2.6 KiB
Rust
Raw Normal View History

2020-04-18 15:58:30 +00:00
use crate::{from_base36, optional_data_line, AnimationFrames, Image, ToBase36};
2020-04-12 12:46:55 +00:00
#[derive(Debug, Eq, PartialEq)]
pub struct Item {
pub id: u64,
pub animation_frames: Vec<Image>,
pub name: Option<String>,
2020-04-13 18:11:51 +00:00
pub dialogue_id: Option<String>,
2020-04-13 23:36:31 +00:00
pub colour_id: Option<u64>,
2020-04-12 12:46:55 +00:00
}
2020-04-13 18:12:21 +00:00
impl Item {
fn name_line(&self) -> String {
optional_data_line("NAME", self.name.as_ref())
}
2020-04-13 23:36:31 +00:00
2020-04-13 18:12:21 +00:00
fn dialogue_line(&self) -> String {
optional_data_line("DLG", self.dialogue_id.as_ref())
}
2020-04-13 23:36:31 +00:00
fn colour_line(&self) -> String {
optional_data_line("COL", self.colour_id.as_ref())
}
2020-04-13 18:12:21 +00:00
}
2020-04-12 12:46:55 +00:00
impl From<String> for Item {
fn from(string: String) -> Item {
let mut lines: Vec<&str> = string.lines().collect();
let id = from_base36(&lines[0].replace("ITM ", ""));
2020-04-12 12:46:55 +00:00
let mut name = None;
let mut dialogue_id = None;
2020-04-13 23:36:31 +00:00
let mut colour_id: Option<u64> = None;
2020-04-12 12:46:55 +00:00
2020-04-13 23:36:31 +00:00
loop {
2020-04-12 12:46:55 +00:00
let last_line = lines.pop().unwrap();
if last_line.starts_with("NAME") {
name = Some(last_line.replace("NAME ", "").to_string());
} else if last_line.starts_with("DLG") {
dialogue_id = Some(last_line.replace("DLG ", "").to_string());
2020-04-13 23:36:31 +00:00
} else if last_line.starts_with("COL") {
colour_id = Some(last_line.replace("COL ", "").parse().unwrap());
2020-04-12 12:46:55 +00:00
} else {
lines.push(last_line);
break;
}
}
// todo dedupe
let animation_frames = lines[1..].join("");
2020-04-13 23:36:31 +00:00
let animation_frames: Vec<&str> = animation_frames.split(">").collect();
2020-04-18 15:58:30 +00:00
let animation_frames: Vec<Image> = animation_frames
.iter()
.map(|&frame| Image::from(frame.to_string()))
.collect();
2020-04-12 12:46:55 +00:00
2020-04-18 15:58:30 +00:00
Item {
id,
name,
animation_frames,
dialogue_id,
colour_id,
}
2020-04-12 12:46:55 +00:00
}
}
impl ToString for Item {
#[inline]
fn to_string(&self) -> String {
format!(
2020-04-13 23:36:31 +00:00
"ITM {}\n{}{}{}{}",
self.id.to_base36(),
2020-04-12 12:46:55 +00:00
self.animation_frames.to_string(),
2020-04-13 18:12:21 +00:00
self.name_line(),
self.dialogue_line(),
2020-04-13 23:36:31 +00:00
self.colour_line(),
2020-04-12 12:46:55 +00:00
)
}
}
#[test]
fn test_item_from_string() {
2020-04-13 23:17:40 +00:00
let output = Item::from(include_str!("test-resources/item").to_string());
let expected = crate::mock::item();
2020-04-12 12:46:55 +00:00
assert_eq!(output, expected);
}
#[test]
fn test_item_to_string() {
let output = crate::mock::item().to_string();
2020-04-13 23:17:40 +00:00
let expected = include_str!("test-resources/item").to_string();
2020-04-12 12:46:55 +00:00
assert_eq!(output, expected);
}