use std::fs::read_to_string;
use std::path::PathBuf;
use serde_derive::{Serialize, Deserialize};
use crate::Position;
#[derive(Debug, Eq, PartialEq)]
pub struct Scene {
pub name: String,
// rename to "tiles"?
pub background: Vec>,
// rename to "things"?
pub foreground: Vec >,
}
impl Scene {
pub fn from_file(path: PathBuf) -> Self {
let name = path.file_stem().unwrap().to_str().unwrap().into();
let data = read_to_string(path).unwrap();
let intermediate: IntermediateScene = toml::from_str(&data).unwrap();
let mut background = Vec::new();
let mut foreground = Vec::new();
for name in intermediate.background.iter() {
match name.as_ref() {
"" => background.push(None),
_ => background.push(Some(name.to_owned())),
}
}
for name in intermediate.foreground.iter() {
match name.as_ref() {
"" => foreground.push(None),
_ => foreground.push(Some(name.to_owned())),
}
}
Self { name, background, foreground }
}
pub fn set_tile(_position: Position, _new: String) {
todo!();
}
}
/// scene name is derived from the filename,
/// and None values are represented as "" in the toml
/// so it's Vec instead of Vec>
#[derive(Serialize, Deserialize)]
struct IntermediateScene {
background: Vec,
foreground: Vec,
}
#[cfg(test)]
mod test {
use std::path::PathBuf;
use crate::scene::Scene;
#[test]
fn scene_from_file() {
let path = PathBuf::from("src/test-resources/basic/scenes/zero.toml");
let output = Scene::from_file(path);
let expected = crate::mock::scenes::zero();
assert_eq!(output, expected);
}
}