doukutsu-rs/src/stage.rs

410 lines
13 KiB
Rust
Raw Normal View History

2020-08-18 16:46:07 +00:00
use std::io::{Cursor, Read};
use std::str::from_utf8;
use byteorder::LE;
use byteorder::ReadBytesExt;
2020-08-18 16:46:07 +00:00
use log::info;
2020-08-19 19:11:32 +00:00
use crate::ggez::{Context, filesystem, GameResult};
use crate::ggez::GameError::ResourceLoadError;
2020-09-03 12:19:46 +00:00
use crate::map::{Map, NPCData};
2020-08-23 02:17:45 +00:00
use crate::text_script::TextScript;
2020-08-18 16:46:07 +00:00
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct NpcType {
name: String,
}
impl Clone for NpcType {
fn clone(&self) -> Self {
Self {
name: self.name.clone(),
}
}
2020-08-18 16:46:07 +00:00
}
impl NpcType {
pub fn new(name: &str) -> Self {
Self {
name: name.to_owned(),
}
}
2020-08-18 16:46:07 +00:00
pub fn filename(&self) -> String {
["Npc", &self.name].join("")
2020-08-18 16:46:07 +00:00
}
}
2020-08-18 16:46:07 +00:00
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Tileset {
name: String,
}
impl Clone for Tileset {
fn clone(&self) -> Self {
2020-08-19 00:55:21 +00:00
Self {
2020-08-18 16:46:07 +00:00
name: self.name.clone(),
}
}
}
impl Tileset {
2020-08-19 00:55:21 +00:00
pub fn new(name: &str) -> Self {
Self {
2020-08-18 16:46:07 +00:00
name: name.to_owned(),
}
}
pub fn filename(&self) -> String {
["Prt", &self.name].join("")
}
pub fn orig_width(&self) -> usize {
// todo: move to json or something?
if self.name == "Labo" {
return 128;
}
256
}
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct Background {
name: String,
}
impl Clone for Background {
fn clone(&self) -> Self {
2020-08-19 00:55:21 +00:00
Self {
2020-08-18 16:46:07 +00:00
name: self.name.clone(),
}
}
}
impl Background {
2020-08-19 00:55:21 +00:00
pub fn new(name: &str) -> Self {
Self {
2020-08-18 16:46:07 +00:00
name: name.to_owned(),
}
}
pub fn filename(&self) -> String {
self.name.to_owned()
}
}
#[derive(Debug, EnumIter, PartialEq, Eq, Hash, Copy, Clone)]
pub enum BackgroundType {
Stationary,
MoveDistant,
MoveNear,
Water,
Black,
Autoscroll,
OutsideWind,
Outside,
}
impl BackgroundType {
2020-08-19 00:55:21 +00:00
pub fn new(id: usize) -> Self {
2020-08-18 16:46:07 +00:00
match id {
2020-08-19 00:55:21 +00:00
0 => { Self::Stationary }
1 => { Self::MoveDistant }
2 => { Self::MoveNear }
3 => { Self::Water }
4 => { Self::Black }
5 => { Self::Autoscroll }
6 => { Self::OutsideWind }
7 => { Self::Outside }
_ => { Self::Black }
2020-08-18 16:46:07 +00:00
}
}
}
#[derive(Debug)]
pub struct StageData {
pub name: String,
pub map: String,
pub boss_no: usize,
pub tileset: Tileset,
pub background: Background,
pub background_type: BackgroundType,
pub npc1: NpcType,
pub npc2: NpcType,
2020-08-18 16:46:07 +00:00
}
impl Clone for StageData {
fn clone(&self) -> Self {
StageData {
name: self.name.clone(),
map: self.map.clone(),
boss_no: self.boss_no,
tileset: self.tileset.clone(),
background: self.background.clone(),
background_type: self.background_type,
npc1: self.npc1.clone(),
npc2: self.npc2.clone(),
2020-08-18 16:46:07 +00:00
}
}
}
const NXENGINE_BACKDROPS: [&str; 15] = [
"bk0", "bkBlue", "bkGreen", "bkBlack", "bkGard", "bkMaze",
"bkGray", "bkRed", "bkWater", "bkMoon", "bkFog", "bkFall",
"bkLight", "bkSunset", "bkHellish"
];
const NXENGINE_TILESETS: [&str; 22] = [
"0", "Pens", "Eggs", "EggX", "EggIn", "Store", "Weed",
"Barr", "Maze", "Sand", "Mimi", "Cave", "River",
"Gard", "Almond", "Oside", "Cent", "Jail", "White",
"Fall", "Hell", "Labo"
];
const NXENGINE_NPCS: [&str; 34] = [
"Guest", "0", "Eggs1", "Ravil", "Weed", "Maze",
"Sand", "Omg", "Cemet", "Bllg", "Plant", "Frog",
"Curly", "Stream", "IronH", "Toro", "X", "Dark",
"Almo1", "Eggs2", "TwinD", "Moon", "Cent", "Heri",
"Red", "Miza", "Dr", "Almo2", "Kings", "Hell",
"Press", "Priest", "Ballos", "Island"
];
2020-09-11 16:30:18 +00:00
fn zero_index(s: &[u8]) -> usize {
s.iter().position(|&c| c == b'\0').unwrap_or(s.len())
}
2020-08-18 16:46:07 +00:00
impl StageData {
2020-08-19 00:55:21 +00:00
// todo: refactor to make it less repetitive.
pub fn load_stage_table(ctx: &mut Context, root: &str) -> GameResult<Vec<Self>> {
2020-08-18 16:46:07 +00:00
let stage_tbl_path = [root, "stage.tbl"].join("");
let stage_dat_path = [root, "stage.dat"].join("");
2020-08-18 16:46:07 +00:00
let mrmap_bin_path = [root, "mrmap.bin"].join("");
if filesystem::exists(ctx, &stage_tbl_path) {
// Cave Story+ stage table.
2020-08-18 16:46:07 +00:00
let mut stages = Vec::new();
info!("Loading CaveStory+/Booster's Lab style stage table from {}", &stage_tbl_path);
2020-08-18 16:46:07 +00:00
let mut data = Vec::new();
filesystem::open(ctx, stage_tbl_path)?.read_to_end(&mut data)?;
let count = data.len() / 0xe5;
let mut f = Cursor::new(data);
2020-08-19 00:55:21 +00:00
for _ in 0..count {
let mut ts_buf = vec![0u8; 0x20];
let mut map_buf = vec![0u8; 0x20];
let mut back_buf = vec![0u8; 0x20];
let mut npc1_buf = vec![0u8; 0x20];
let mut npc2_buf = vec![0u8; 0x20];
2020-08-19 00:55:21 +00:00
let mut name_jap_buf = vec![0u8; 0x20];
let mut name_buf = vec![0u8; 0x20];
f.read_exact(&mut ts_buf)?;
f.read_exact(&mut map_buf)?;
let bg_type = f.read_u32::<LE>()? as usize;
f.read_exact(&mut back_buf)?;
f.read_exact(&mut npc1_buf)?;
f.read_exact(&mut npc2_buf)?;
2020-08-19 00:55:21 +00:00
let boss_no = f.read_u8()? as usize;
f.read_exact(&mut name_jap_buf)?;
f.read_exact(&mut name_buf)?;
2020-09-11 16:30:18 +00:00
let tileset = from_utf8(&ts_buf[0..zero_index(&ts_buf)])
2020-08-19 00:55:21 +00:00
.map_err(|_| ResourceLoadError("UTF-8 error in tileset field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
let map = from_utf8(&map_buf[0..zero_index(&map_buf)])
2020-08-19 00:55:21 +00:00
.map_err(|_| ResourceLoadError("UTF-8 error in map field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
let background = from_utf8(&back_buf[0..zero_index(&back_buf)])
2020-08-19 00:55:21 +00:00
.map_err(|_| ResourceLoadError("UTF-8 error in background field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
let npc1 = from_utf8(&npc1_buf[0..zero_index(&npc1_buf)])
.map_err(|_| ResourceLoadError("UTF-8 error in npc1 field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
let npc2 = from_utf8(&npc2_buf[0..zero_index(&npc2_buf)])
.map_err(|_| ResourceLoadError("UTF-8 error in npc2 field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
let name = from_utf8(&name_buf[0..zero_index(&name_buf)])
2020-08-19 00:55:21 +00:00
.map_err(|_| ResourceLoadError("UTF-8 error in name field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
2020-08-19 00:55:21 +00:00
let stage = Self {
name: name.clone(),
map: map.clone(),
boss_no,
tileset: Tileset::new(&tileset),
background: Background::new(&background),
background_type: BackgroundType::new(bg_type),
npc1: NpcType::new(&npc1),
npc2: NpcType::new(&npc2),
2020-08-19 00:55:21 +00:00
};
stages.push(stage);
}
2020-08-18 16:46:07 +00:00
return Ok(stages);
} else if filesystem::exists(ctx, &mrmap_bin_path) {
// CSE2E stage table
2020-08-18 16:46:07 +00:00
let mut stages = Vec::new();
info!("Loading CSE2E style stage table from {}", &mrmap_bin_path);
2020-08-18 16:46:07 +00:00
let mut data = Vec::new();
let mut fh = filesystem::open(ctx, &mrmap_bin_path)?;
let count = fh.read_u32::<LE>()?;
fh.read_to_end(&mut data)?;
if data.len() < count as usize * 0x74 {
return Err(ResourceLoadError("Specified stage table size is bigger than actual number of entries.".to_string()));
}
let mut f = Cursor::new(data);
for _ in 0..count {
let mut ts_buf = vec![0u8; 0x10];
2020-08-19 00:55:21 +00:00
let mut map_buf = vec![0u8; 0x10];
2020-08-18 16:46:07 +00:00
let mut back_buf = vec![0u8; 0x10];
let mut npc1_buf = vec![0u8; 0x10];
let mut npc2_buf = vec![0u8; 0x10];
2020-08-19 00:55:21 +00:00
let mut name_buf = vec![0u8; 0x22];
2020-08-18 16:46:07 +00:00
f.read_exact(&mut ts_buf)?;
f.read_exact(&mut map_buf)?;
2020-08-19 00:55:21 +00:00
let bg_type = f.read_u8()? as usize;
2020-08-18 16:46:07 +00:00
f.read_exact(&mut back_buf)?;
f.read_exact(&mut npc1_buf)?;
f.read_exact(&mut npc2_buf)?;
2020-08-18 16:46:07 +00:00
let boss_no = f.read_u8()? as usize;
f.read_exact(&mut name_buf)?;
2020-09-11 16:30:18 +00:00
let tileset = from_utf8(&ts_buf[0..zero_index(&ts_buf)])
2020-08-18 16:46:07 +00:00
.map_err(|_| ResourceLoadError("UTF-8 error in tileset field".to_string()))?
2020-09-11 16:30:18 +00:00
.to_owned();
2020-08-18 16:46:07 +00:00
let map = from_utf8(&map_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in map field".to_string()))?
.trim_matches('\0').to_owned();
let background = from_utf8(&back_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in background field".to_string()))?
.trim_matches('\0').to_owned();
let npc1 = from_utf8(&npc1_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in npc1 field".to_string()))?
.trim_matches('\0').to_owned();
let npc2 = from_utf8(&npc2_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in npc2 field".to_string()))?
2020-08-18 16:46:07 +00:00
.trim_matches('\0').to_owned();
let name = from_utf8(&name_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in name field".to_string()))?
.trim_matches('\0').to_owned();
println!("bg type: {}", bg_type);
2020-08-19 00:55:21 +00:00
let stage = Self {
2020-08-18 16:46:07 +00:00
name: name.clone(),
map: map.clone(),
boss_no,
tileset: Tileset::new(&tileset),
background: Background::new(&background),
background_type: BackgroundType::new(bg_type),
npc1: NpcType::new(&npc1),
npc2: NpcType::new(&npc2),
};
stages.push(stage);
}
return Ok(stages);
} else if filesystem::exists(ctx, &stage_dat_path) {
let mut stages = Vec::new();
info!("Loading NXEngine style stage table from {}", &stage_dat_path);
let mut data = Vec::new();
let mut fh = filesystem::open(ctx, &stage_dat_path)?;
let count = fh.read_u8()? as usize;
fh.read_to_end(&mut data)?;
if data.len() < count * 0x49 {
return Err(ResourceLoadError("Specified stage table size is bigger than actual number of entries.".to_string()));
}
let mut f = Cursor::new(data);
for _ in 0..count {
let mut map_buf = vec![0u8; 0x20];
let mut name_buf = vec![0u8; 0x23];
f.read_exact(&mut map_buf)?;
f.read_exact(&mut name_buf)?;
let tileset_id = f.read_u8()? as usize;
let bg_id = f.read_u8()? as usize;
let bg_type = f.read_u8()? as usize;
let boss_no = f.read_u8()? as usize;
let _npc1 = f.read_u8()? as usize;
let _npc2 = f.read_u8()? as usize;
let map = from_utf8(&map_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in map field".to_string()))?
.trim_matches('\0').to_owned();
let name = from_utf8(&name_buf)
.map_err(|_| ResourceLoadError("UTF-8 error in name field".to_string()))?
.trim_matches('\0').to_owned();
let stage = Self {
name: name.clone(),
map: map.clone(),
boss_no,
tileset: Tileset::new(NXENGINE_TILESETS.get(tileset_id).unwrap_or(&"0")),
background: Background::new(NXENGINE_BACKDROPS.get(bg_id).unwrap_or(&"0")),
background_type: BackgroundType::new(bg_type),
npc1: NpcType::new(NXENGINE_NPCS.get(tileset_id).unwrap_or(&"0")),
npc2: NpcType::new(NXENGINE_NPCS.get(tileset_id).unwrap_or(&"0")),
2020-08-18 16:46:07 +00:00
};
stages.push(stage);
}
return Ok(stages);
}
Err(ResourceLoadError("No stage table found.".to_string()))
}
}
pub struct Stage {
pub map: Map,
pub data: StageData,
}
impl Stage {
2020-08-27 23:34:28 +00:00
pub fn load(root: &str, data: &StageData, ctx: &mut Context) -> GameResult<Self> {
2020-08-19 00:55:21 +00:00
let map_file = filesystem::open(ctx, [root, "Stage/", &data.map, ".pxm"].join(""))?;
let attrib_file = filesystem::open(ctx, [root, "Stage/", &data.tileset.name, ".pxa"].join(""))?;
2020-08-23 02:17:45 +00:00
2020-08-18 16:46:07 +00:00
let map = Map::load_from(map_file, attrib_file)?;
2020-08-19 00:55:21 +00:00
let stage = Self {
2020-08-18 16:46:07 +00:00
map,
data: data.clone(),
};
Ok(stage)
}
2020-08-27 23:34:28 +00:00
pub fn load_text_script(&mut self, root: &str, ctx: &mut Context) -> GameResult<TextScript> {
let tsc_file = filesystem::open(ctx, [root, "Stage/", &self.data.map, ".tsc"].join(""))?;
let text_script = TextScript::load_from(tsc_file)?;
Ok(text_script)
}
2020-09-03 12:19:46 +00:00
pub fn load_npcs(&mut self, root: &str, ctx: &mut Context) -> GameResult<Vec<NPCData>> {
let pxe_file = filesystem::open(ctx, [root, "Stage/", &self.data.map, ".pxe"].join(""))?;
let npc_data = NPCData::load_from(pxe_file)?;
Ok(npc_data)
}
2020-08-18 16:46:07 +00:00
}