bitsy-parser/src/main.rs

507 lines
13 KiB
Rust
Raw Normal View History

2020-04-05 20:02:45 +00:00
use std::collections::HashMap;
2020-04-06 07:36:52 +00:00
use std::fmt;
2020-04-05 17:58:04 +00:00
2020-04-05 21:26:47 +00:00
const IMAGE_DIMENSION_SD: usize = 8;
const IMAGE_DIMENSION_HD: usize = 16;
2020-04-06 07:27:08 +00:00
fn test_image_chequers_1() -> Image {
Image {
pixels: vec![
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
]
}
}
fn test_image_chequers_2() -> Image {
Image {
pixels: vec![
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
0,1,0,1,0,1,0,1,
1,0,1,0,1,0,1,0,
]
}
}
fn test_sprite() -> Sprite {
Sprite {
id: "a".to_string(),
name: Some("hatch".to_string()),
animation_frames: vec![
Image {
pixels: vec![
0,0,0,0,0,0,0,0,
0,1,1,1,1,0,0,0,
0,1,0,0,1,0,0,0,
0,0,1,1,1,1,0,0,
0,0,1,1,1,1,0,0,
0,1,0,1,1,1,1,0,
0,1,0,1,1,1,1,0,
0,1,1,0,1,1,1,1,
]
}
],
dialogue: Some("SPR_0".to_string()),
position: Position {
room: "4".to_string(),
x: 9,
y: 7
}
}
}
2020-04-06 06:55:10 +00:00
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 17:58:04 +00:00
struct Colour {
red: u8,
green: u8,
blue: u8,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 17:58:04 +00:00
struct Palette {
id: String, // base36 string (why??)
name: Option<String>,
colours: Vec<Colour>,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 17:58:04 +00:00
struct Image {
2020-04-05 21:28:23 +00:00
pixels: Vec<u8>, // 64 for SD, 256 for HD
2020-04-05 17:58:04 +00:00
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 17:58:04 +00:00
struct Tile {
id: String, // base36 string
name: Option<String>,
wall: bool,
animation_frames: Vec<Image>,
}
2020-04-05 22:00:15 +00:00
#[derive(Debug, Eq, PartialEq, Hash)]
2020-04-05 19:46:55 +00:00
struct Position {
room: String, // id. is room id int or base36 string?
x: u8,
y: u8,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 19:46:55 +00:00
struct Dialogue {
id: String,
contents: String,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 19:46:55 +00:00
struct Sprite {
id: String, // lowercase base36
name: Option<String>,
animation_frames: Vec<Image>,
2020-04-05 22:58:10 +00:00
dialogue: Option<String>, /// dialogue id
2020-04-05 19:46:55 +00:00
position: Position,
}
2020-04-05 20:02:45 +00:00
/// avatar is a "sprite" in the game data but with a specific ID
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 19:46:55 +00:00
struct Avatar {
animation_frames: Vec<Image>,
position: Position,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 19:46:55 +00:00
struct Item {
id: String,
animation_frames: Vec<Image>,
name: Option<String>,
dialogue: Option<Dialogue>,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 20:02:45 +00:00
struct Exit {
/// destination
room: String, /// id
position: Position,
}
// same as a dialogue basically
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 20:02:45 +00:00
struct Ending {
contents: String,
}
2020-04-05 22:02:03 +00:00
#[derive(Debug, Eq, PartialEq)]
2020-04-05 20:02:45 +00:00
struct Room {
id: String,
palette: String, /// id
name: Option<String>,
2020-04-05 21:33:06 +00:00
tiles: Vec<String>, /// tile ids
2020-04-05 20:02:45 +00:00
items: HashMap<Position, Item>,
exits: HashMap<Position, Exit>,
endings: HashMap<Position, Ending>,
}
2020-04-05 17:58:04 +00:00
#[derive(PartialEq)]
struct Game {
name: String,
version: f64,
room_format: bool,
palettes: Vec<Palette>,
}
fn image_from_string(string: String) -> Image {
let string = string.replace("\n", "");
let pixels: Vec<&str> = string.split("").collect();
// the above seems to add an extra "" at the start and end of the vec, so strip them below
2020-04-05 21:28:23 +00:00
let pixels = &pixels[1..(pixels.len() - 1)];
let pixels: Vec<u8> = pixels.iter().map(|&pixel| { pixel.parse::<u8>().unwrap() }).collect();
2020-04-05 17:58:04 +00:00
Image { pixels }
}
2020-04-05 21:28:23 +00:00
#[test]
fn test_image_from_string() {
let output = image_from_string(
"11111111\n11001111\n10111111\n11111111\n11111111\n11111111\n11111111\n11111111".to_string()
);
let expected = Image {
pixels: vec![
1,1,1,1,1,1,1,1,
1,1,0,0,1,1,1,1,
1,0,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1,
]
};
assert_eq!(output, expected)
}
2020-04-05 17:58:04 +00:00
fn image_to_string(image: Image) -> String {
2020-04-06 07:36:52 +00:00
image_to_string_opts(image, false)
2020-04-05 21:26:47 +00:00
}
fn image_to_string_opts(image: Image, hd: bool) -> String {
2020-04-05 17:58:04 +00:00
let mut string = String::new();
2020-04-05 21:26:47 +00:00
let chunk_size = if hd {IMAGE_DIMENSION_HD} else {IMAGE_DIMENSION_SD};
2020-04-05 17:58:04 +00:00
2020-04-05 21:26:47 +00:00
for line in image.pixels.chunks(chunk_size) {
2020-04-05 17:58:04 +00:00
for pixel in line {
2020-04-06 07:36:52 +00:00
string.push_str(&format!("{}", *pixel));
2020-04-05 17:58:04 +00:00
}
string.push('\n');
}
string.pop(); // remove trailing newline
string
}
#[test]
fn test_image_to_string() {
2020-04-06 07:27:08 +00:00
let output = image_to_string(test_image_chequers_1());
2020-04-05 17:58:04 +00:00
let expected = "10101010\n01010101\n10101010\n01010101\n10101010\n01010101\n10101010\n01010101".to_string();
assert_eq!(output, expected);
}
fn animation_frames_to_string(animation_frames: Vec<Image>) -> String {
let mut string = String::new();
let last_frame = animation_frames.len() - 1;
for (i, frame) in animation_frames.into_iter().enumerate() {
string.push_str(&image_to_string(frame));
if i < last_frame {
string.push_str(&"\n>\n".to_string());
}
}
string
}
2020-04-05 17:58:04 +00:00
fn tile_from_string(string: String) -> Tile {
let mut lines: Vec<&str> = string.split("\n").collect();
let id = lines[0].replace("TIL ", "");
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_string(frame.to_string())
}).collect();
Tile {id, name, wall, animation_frames}
}
#[test]
fn test_tile_from_string() {
let output = tile_from_string("TIL z\n11111111\n11111111\n11111111\n11111111\n11111111\n11111111\n11111111\n11111111\nNAME concrete 1\nWAL true".to_string());
let expected = Tile {
id: "z".to_string(),
name: Some("concrete 1".to_string()),
wall: true,
animation_frames: vec![
Image {
2020-04-05 21:28:23 +00:00
pixels: vec![1; 64]
2020-04-05 17:58:04 +00:00
}
],
};
assert_eq!(output, expected);
}
fn tile_to_string(tile: Tile) -> String {
format!(
"TIL {}\n{}{}{}",
tile.id,
animation_frames_to_string(tile.animation_frames),
2020-04-05 17:58:04 +00:00
if tile.name.is_some() {format!("\nNAME {}", tile.name.unwrap())} else {"".to_string()},
if tile.wall {"\nWAL true"} else {""}
)
}
#[test]
fn test_tile_to_string() {
let output = tile_to_string(Tile {
id: "7a".to_string(),
name: Some("chequers".to_string()),
wall: false,
animation_frames: vec![
2020-04-06 07:27:08 +00:00
test_image_chequers_1(),
test_image_chequers_2(),
]
});
let expected = "TIL 7a\n10101010\n01010101\n10101010\n01010101\n10101010\n01010101\n10101010\n01010101\n>\n01010101\n10101010\n01010101\n10101010\n01010101\n10101010\n01010101\n10101010\nNAME chequers".to_string();
assert_eq!(output, expected);
}
2020-04-05 17:58:04 +00:00
fn colour_from_string(colour: String) -> Colour {
let values: Vec<&str> = colour.split(',').collect();
let red: u8 = values[0].parse().unwrap_or(0);
let green: u8 = values[1].parse().unwrap_or(0);
let blue: u8 = values[2].parse().unwrap_or(0);
Colour { red, green, blue }
}
#[test]
fn test_colour_from_string() {
assert_eq!(
colour_from_string("0,255,0".to_string()),
Colour { red: 0, green: 255, blue: 0 }
);
}
2020-04-05 21:28:35 +00:00
fn colour_to_string(colour: Colour) -> String {
format!("{},{},{}", colour.red, colour.green, colour.blue)
}
2020-04-05 17:58:04 +00:00
#[test]
fn test_colour_to_string() {
assert_eq!(
colour_to_string(Colour { red: 22, green: 33, blue: 44 }),
"22,33,44".to_string()
);
}
fn palette_from_string(palette: String) -> Palette {
let lines: Vec<&str> = palette.split('\n').collect();
let id = lines[0].replace("PAL ", "");
let name = match lines[1].starts_with("NAME") {
true => Some(lines[1].replace("NAME ", "").to_string()),
false => None,
};
let colour_start_index = if name.is_some() {2} else {1};
let colours = lines[colour_start_index..].iter().map(|&line| {
colour_from_string(line.to_string())
}).collect();
Palette { id, name, colours }
}
#[test]
fn test_palette_from_string() {
let output = palette_from_string(
"PAL 1\nNAME lamplight\n45,45,59\n66,60,39\n140,94,1".to_string()
);
let expected = Palette {
id: "1".to_string(),
name: Some("lamplight".to_string()),
colours: vec![
Colour {red: 45, green: 45, blue: 59},
Colour {red: 66, green: 60, blue: 39},
Colour {red: 140, green: 94, blue: 1 },
],
};
assert_eq!(output, expected);
}
#[test]
fn test_palette_from_string_no_name() {
let output = palette_from_string(
"PAL 9\n45,45,59\n66,60,39\n140,94,1".to_string()
);
let expected = Palette {
id: "9".to_string(),
name: None,
colours: vec![
Colour {red: 45, green: 45, blue: 59},
Colour {red: 66, green: 60, blue: 39},
Colour {red: 140, green: 94, blue: 1 },
],
};
assert_eq!(output, expected);
}
2020-04-05 22:00:15 +00:00
fn position_from_string(string: String) -> Position {
// e.g. "0 2,5"
let room_xy: Vec<&str> = string.split(' ').collect();
let xy: Vec<&str> = room_xy[1].split(',').collect();
let room = room_xy[0].to_string();
let x = xy[0].parse().unwrap();
let y = xy[1].parse().unwrap();
Position {room, x, y}
}
#[test]
fn test_position_from_string() {
assert_eq!(
position_from_string("5 4,12".to_string()),
Position { room: "5".to_string(), x: 4, y: 12 }
)
}
fn position_to_string(position: Position) -> String {
format!("{} {},{}", position.room, position.x, position.y)
}
#[test]
fn test_position_to_string() {
assert_eq!(
position_to_string(Position { room: "5".to_string(), x: 4, y: 12 }),
"5 4,12".to_string()
)
}
2020-04-05 22:58:10 +00:00
fn sprite_from_string(string: String) -> Sprite {
let mut lines: Vec<&str> = string.split("\n").collect();
let id = lines[0].replace("SPR ", "");
let mut name = None;
let mut dialogue = None;
let mut position: Option<Position> = None;
for _ in 0..3 {
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 = Some(last_line.replace("DLG ", "").to_string());
} else if last_line.starts_with("POS") {
position = Some(position_from_string(
last_line.replace("POS ", "").to_string()
));
} else {
lines.push(last_line); break;
}
}
let position = position.unwrap();
// todo dedupe
let animation_frames = lines[1..].join("");
// print!("{}", animation_frames);
let animation_frames: Vec<&str> = animation_frames.split("\n>\n").collect();
let animation_frames: Vec<Image> = animation_frames.iter().map(|&frame| {
image_from_string(frame.to_string())
}).collect();
Sprite { id, name, animation_frames, dialogue, position }
}
#[test]
fn test_sprite_from_string() {
let output = sprite_from_string("SPR a\n00000000\n01111000\n01001000\n00111100\n00111100\n01011110\n01011110\n01101111\nNAME hatch\nDLG SPR_0\nPOS 4 9,7".to_string());
2020-04-06 07:27:08 +00:00
let expected = test_sprite();
2020-04-05 22:58:10 +00:00
assert_eq!(output, expected);
}
2020-04-05 19:46:55 +00:00
fn sprite_to_string(sprite: Sprite) -> String {
format!(
2020-04-06 07:27:08 +00:00
"SPR {}\n{}{}{}\nPOS {}",
sprite.id,
animation_frames_to_string(sprite.animation_frames),
2020-04-06 07:27:08 +00:00
if sprite.name.is_some() {format!("\nNAME {}", sprite.name.unwrap())} else {"".to_string()},
if sprite.dialogue.is_some() {format!("\nDLG {}", sprite.dialogue.unwrap())} else {"".to_string()},
position_to_string(sprite.position),
)
}
2020-04-06 07:27:08 +00:00
#[test]
fn test_sprite_to_string() {
let output = sprite_to_string(test_sprite());
let expected = "SPR a\n00000000\n01111000\n01001000\n00111100\n00111100\n01011110\n01011110\n01101111\nNAME hatch\nDLG SPR_0\nPOS 4 9,7".to_string();
assert_eq!(output, expected);
}
2020-04-05 17:58:04 +00:00
// fn game_from_string(game: String ) -> Game {
2020-04-05 19:46:55 +00:00
// // probably needs to split the game data into different segments starting from the end
// // e.g. VAR... then END... then DLG...
// // then split all these up into their individual items
2020-04-05 17:58:04 +00:00
// }
//
// fn game_to_string(game: Game) -> String {
//
// }
fn main() {
println!("why am I here?")
}