2020-08-18 16:46:07 +00:00
|
|
|
use std::io::{Cursor, Read};
|
|
|
|
use std::str::from_utf8;
|
|
|
|
|
2020-08-19 01:59:16 +00:00
|
|
|
use byteorder::LE;
|
|
|
|
use byteorder::ReadBytesExt;
|
2020-08-18 16:46:07 +00:00
|
|
|
use log::info;
|
|
|
|
|
2020-09-25 17:14:52 +00:00
|
|
|
use crate::encoding::read_cur_shift_jis;
|
|
|
|
use crate::engine_constants::EngineConstants;
|
2021-01-27 18:20:47 +00:00
|
|
|
use crate::framework::context::Context;
|
2021-06-16 15:19:26 +00:00
|
|
|
use crate::framework::error::GameError::ResourceLoadError;
|
2021-01-27 18:20:47 +00:00
|
|
|
use crate::framework::error::GameResult;
|
|
|
|
use crate::framework::filesystem;
|
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
|
|
|
|
2020-08-19 01:59:16 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub struct NpcType {
|
|
|
|
name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for NpcType {
|
|
|
|
fn clone(&self) -> Self {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: self.name.clone() }
|
2020-08-19 01:59:16 +00:00
|
|
|
}
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl NpcType {
|
2020-08-19 01:59:16 +00:00
|
|
|
pub fn new(name: &str) -> Self {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: name.to_owned() }
|
2020-08-19 01:59:16 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 16:46:07 +00:00
|
|
|
pub fn filename(&self) -> String {
|
2020-08-19 01:59:16 +00:00
|
|
|
["Npc", &self.name].join("")
|
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 {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: self.name.clone() }
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Tileset {
|
2020-08-19 00:55:21 +00:00
|
|
|
pub fn new(name: &str) -> Self {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: name.to_owned() }
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: self.name.clone() }
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Background {
|
2020-08-19 00:55:21 +00:00
|
|
|
pub fn new(name: &str) -> Self {
|
2021-06-16 15:19:26 +00:00
|
|
|
Self { name: name.to_owned() }
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 18:19:12 +00:00
|
|
|
pub fn name(&self) -> &str {
|
|
|
|
&self.name
|
|
|
|
}
|
|
|
|
|
2020-08-18 16:46:07 +00:00
|
|
|
pub fn filename(&self) -> String {
|
|
|
|
self.name.to_owned()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, EnumIter, PartialEq, Eq, Hash, Copy, Clone)]
|
|
|
|
pub enum BackgroundType {
|
2021-06-16 15:19:26 +00:00
|
|
|
TiledStatic,
|
|
|
|
TiledParallax,
|
|
|
|
Tiled,
|
|
|
|
/// Used in Core room, renders water in front of tilemap which also affects player's physics.
|
2020-08-18 16:46:07 +00:00
|
|
|
Water,
|
|
|
|
Black,
|
2021-06-16 15:19:26 +00:00
|
|
|
/// Used in Ironhead fight. Affects physics of XP/heart/missile drops.
|
|
|
|
Scrolling,
|
|
|
|
/// Same as Outside, except it affects physics of XP/heart/missile drops.
|
2020-08-18 16:46:07 +00:00
|
|
|
OutsideWind,
|
|
|
|
Outside,
|
2021-06-16 15:19:26 +00:00
|
|
|
/// Present in CS+KAGE, Seems to be a clone of Outside, isn't used anywhere and has unknown purpose
|
|
|
|
OutsideUnknown,
|
|
|
|
/// Used by CS+KAGE in waterway, it's just TiledParallax with bkCircle2 drawn behind water
|
|
|
|
Waterway,
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2021-06-16 15:19:26 +00:00
|
|
|
0 => Self::TiledStatic,
|
|
|
|
1 => Self::TiledParallax,
|
|
|
|
2 => Self::Tiled,
|
|
|
|
3 => Self::Water,
|
|
|
|
4 => Self::Black,
|
|
|
|
5 => Self::Scrolling,
|
|
|
|
6 => Self::OutsideWind,
|
|
|
|
7 => Self::Outside,
|
|
|
|
8 => Self::OutsideUnknown,
|
|
|
|
9 => Self::Waterway,
|
|
|
|
_ => {
|
|
|
|
log::warn!("Unknown background type: {}", id);
|
|
|
|
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,
|
2020-08-19 01:59:16 +00:00
|
|
|
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,
|
2020-08-19 01:59:16 +00:00
|
|
|
npc1: self.npc1.clone(),
|
|
|
|
npc2: self.npc2.clone(),
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 01:59:16 +00:00
|
|
|
const NXENGINE_BACKDROPS: [&str; 15] = [
|
2021-06-16 15:19:26 +00:00
|
|
|
"bk0",
|
|
|
|
"bkBlue",
|
|
|
|
"bkGreen",
|
|
|
|
"bkBlack",
|
|
|
|
"bkGard",
|
|
|
|
"bkMaze",
|
|
|
|
"bkGray",
|
|
|
|
"bkRed",
|
|
|
|
"bkWater",
|
|
|
|
"bkMoon",
|
|
|
|
"bkFog",
|
|
|
|
"bkFall",
|
|
|
|
"bkLight",
|
|
|
|
"bkSunset",
|
|
|
|
"bkHellish",
|
2020-08-19 01:59:16 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const NXENGINE_TILESETS: [&str; 22] = [
|
2021-06-16 15:19:26 +00:00
|
|
|
"0", "Pens", "Eggs", "EggX", "EggIn", "Store", "Weed", "Barr", "Maze", "Sand", "Mimi", "Cave", "River", "Gard",
|
|
|
|
"Almond", "Oside", "Cent", "Jail", "White", "Fall", "Hell", "Labo",
|
2020-08-19 01:59:16 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const NXENGINE_NPCS: [&str; 34] = [
|
2021-06-16 15:19:26 +00:00
|
|
|
"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-08-19 01:59:16 +00:00
|
|
|
];
|
|
|
|
|
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-09-13 03:30:56 +00:00
|
|
|
fn from_shift_jis(s: &[u8]) -> String {
|
|
|
|
let mut cursor = Cursor::new(s);
|
|
|
|
let mut chars = Vec::new();
|
|
|
|
let mut bytes = s.len() as u32;
|
|
|
|
|
|
|
|
while bytes > 0 {
|
|
|
|
let (consumed, chr) = read_cur_shift_jis(&mut cursor, bytes);
|
|
|
|
chars.push(chr);
|
|
|
|
bytes -= consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
chars.iter().collect()
|
|
|
|
}
|
|
|
|
|
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("");
|
2020-10-07 14:08:12 +00:00
|
|
|
let stage_sect_path = [root, "stage.sect"].join("");
|
2020-08-18 16:46:07 +00:00
|
|
|
let mrmap_bin_path = [root, "mrmap.bin"].join("");
|
2020-10-07 14:08:12 +00:00
|
|
|
let stage_dat_path = [root, "stage.dat"].join("");
|
2020-08-18 16:46:07 +00:00
|
|
|
|
|
|
|
if filesystem::exists(ctx, &stage_tbl_path) {
|
2020-08-19 01:59:16 +00:00
|
|
|
// Cave Story+ stage table.
|
2020-08-18 16:46:07 +00:00
|
|
|
let mut stages = Vec::new();
|
|
|
|
|
2020-10-07 14:08:12 +00:00
|
|
|
info!("Loading Cave Story+/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];
|
2020-08-19 01:59:16 +00:00
|
|
|
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)?;
|
2020-08-19 01:59:16 +00:00
|
|
|
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-13 03:30:56 +00:00
|
|
|
let tileset = from_shift_jis(&ts_buf[0..zero_index(&ts_buf)]);
|
2020-10-07 14:08:12 +00:00
|
|
|
let map = from_shift_jis(&map_buf[0..zero_index(&map_buf)]);
|
|
|
|
let background = from_shift_jis(&back_buf[0..zero_index(&back_buf)]);
|
|
|
|
let npc1 = from_shift_jis(&npc1_buf[0..zero_index(&npc1_buf)]);
|
|
|
|
let npc2 = from_shift_jis(&npc2_buf[0..zero_index(&npc2_buf)]);
|
|
|
|
let name = from_shift_jis(&name_buf[0..zero_index(&name_buf)]);
|
|
|
|
|
|
|
|
let stage = StageData {
|
|
|
|
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_sect_path) {
|
|
|
|
// Cave Story freeware executable dump.
|
|
|
|
let mut stages = Vec::new();
|
|
|
|
|
|
|
|
info!("Loading Cave Story freeware exe dump style stage table from {}", &stage_sect_path);
|
|
|
|
|
|
|
|
let mut data = Vec::new();
|
|
|
|
filesystem::open(ctx, stage_sect_path)?.read_to_end(&mut data)?;
|
|
|
|
|
|
|
|
let count = data.len() / 0xc8;
|
|
|
|
let mut f = Cursor::new(data);
|
|
|
|
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];
|
|
|
|
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)?;
|
|
|
|
let boss_no = f.read_u8()? as usize;
|
|
|
|
f.read_exact(&mut name_buf)?;
|
|
|
|
// alignment
|
|
|
|
let _ = f.read_u8()?;
|
|
|
|
let _ = f.read_u8()?;
|
|
|
|
let _ = f.read_u8()?;
|
|
|
|
|
|
|
|
let tileset = from_shift_jis(&ts_buf[0..zero_index(&ts_buf)]);
|
2020-09-13 03:30:56 +00:00
|
|
|
let map = from_shift_jis(&map_buf[0..zero_index(&map_buf)]);
|
|
|
|
let background = from_shift_jis(&back_buf[0..zero_index(&back_buf)]);
|
|
|
|
let npc1 = from_shift_jis(&npc1_buf[0..zero_index(&npc1_buf)]);
|
|
|
|
let npc2 = from_shift_jis(&npc2_buf[0..zero_index(&npc2_buf)]);
|
|
|
|
let name = from_shift_jis(&name_buf[0..zero_index(&name_buf)]);
|
2020-08-19 00:55:21 +00:00
|
|
|
|
2020-09-11 22:52:20 +00:00
|
|
|
let stage = StageData {
|
2020-08-19 00:55:21 +00:00
|
|
|
name: name.clone(),
|
|
|
|
map: map.clone(),
|
|
|
|
boss_no,
|
|
|
|
tileset: Tileset::new(&tileset),
|
|
|
|
background: Background::new(&background),
|
|
|
|
background_type: BackgroundType::new(bg_type),
|
2020-08-19 01:59:16 +00:00
|
|
|
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) {
|
2020-08-19 01:59:16 +00:00
|
|
|
// CSE2E stage table
|
2020-08-18 16:46:07 +00:00
|
|
|
let mut stages = Vec::new();
|
|
|
|
|
2020-08-19 01:59:16 +00:00
|
|
|
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 {
|
2021-06-16 15:19:26 +00:00
|
|
|
return Err(ResourceLoadError(
|
|
|
|
"Specified stage table size is bigger than actual number of entries.".to_string(),
|
|
|
|
));
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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];
|
2020-08-19 01:59:16 +00:00
|
|
|
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)?;
|
2020-08-19 01:59:16 +00:00
|
|
|
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-13 03:30:56 +00:00
|
|
|
let tileset = from_shift_jis(&ts_buf[0..zero_index(&ts_buf)]);
|
|
|
|
let map = from_shift_jis(&map_buf[0..zero_index(&map_buf)]);
|
|
|
|
let background = from_shift_jis(&back_buf[0..zero_index(&back_buf)]);
|
|
|
|
let npc1 = from_shift_jis(&npc1_buf[0..zero_index(&npc1_buf)]);
|
|
|
|
let npc2 = from_shift_jis(&npc2_buf[0..zero_index(&npc2_buf)]);
|
|
|
|
let name = from_shift_jis(&name_buf[0..zero_index(&name_buf)]);
|
2020-08-18 16:46:07 +00:00
|
|
|
|
2020-08-19 01:59:16 +00:00
|
|
|
println!("bg type: {}", bg_type);
|
|
|
|
|
2020-09-11 22:52:20 +00:00
|
|
|
let stage = StageData {
|
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),
|
2020-08-19 01:59:16 +00:00
|
|
|
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 {
|
2021-06-16 15:19:26 +00:00
|
|
|
return Err(ResourceLoadError(
|
|
|
|
"Specified stage table size is bigger than actual number of entries.".to_string(),
|
|
|
|
));
|
2020-08-19 01:59:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2020-09-11 22:52:20 +00:00
|
|
|
let npc1 = f.read_u8()? as usize;
|
|
|
|
let npc2 = f.read_u8()? as usize;
|
2020-08-19 01:59:16 +00:00
|
|
|
|
|
|
|
let map = from_utf8(&map_buf)
|
|
|
|
.map_err(|_| ResourceLoadError("UTF-8 error in map field".to_string()))?
|
2021-06-16 15:19:26 +00:00
|
|
|
.trim_matches('\0')
|
|
|
|
.to_owned();
|
2020-08-19 01:59:16 +00:00
|
|
|
let name = from_utf8(&name_buf)
|
|
|
|
.map_err(|_| ResourceLoadError("UTF-8 error in name field".to_string()))?
|
2021-06-16 15:19:26 +00:00
|
|
|
.trim_matches('\0')
|
|
|
|
.to_owned();
|
2020-08-19 01:59:16 +00:00
|
|
|
|
2020-09-11 22:52:20 +00:00
|
|
|
let stage = StageData {
|
2020-08-19 01:59:16 +00:00
|
|
|
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),
|
2020-09-11 22:52:20 +00:00
|
|
|
npc1: NpcType::new(NXENGINE_NPCS.get(npc1).unwrap_or(&"0")),
|
|
|
|
npc2: NpcType::new(NXENGINE_NPCS.get(npc2).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)?;
|
|
|
|
|
2021-06-16 15:19:26 +00:00
|
|
|
let stage = Self { map, data: data.clone() };
|
2020-08-18 16:46:07 +00:00
|
|
|
|
|
|
|
Ok(stage)
|
|
|
|
}
|
2020-08-27 23:34:28 +00:00
|
|
|
|
2021-06-16 15:19:26 +00:00
|
|
|
pub fn load_text_script(
|
|
|
|
&self,
|
|
|
|
root: &str,
|
|
|
|
constants: &EngineConstants,
|
|
|
|
ctx: &mut Context,
|
|
|
|
) -> GameResult<TextScript> {
|
2020-08-27 23:34:28 +00:00
|
|
|
let tsc_file = filesystem::open(ctx, [root, "Stage/", &self.data.map, ".tsc"].join(""))?;
|
2020-09-25 17:14:52 +00:00
|
|
|
let text_script = TextScript::load_from(tsc_file, constants)?;
|
2020-08-27 23:34:28 +00:00
|
|
|
|
|
|
|
Ok(text_script)
|
|
|
|
}
|
2020-09-03 12:19:46 +00:00
|
|
|
|
2020-09-30 03:11:25 +00:00
|
|
|
pub fn load_npcs(&self, root: &str, ctx: &mut Context) -> GameResult<Vec<NPCData>> {
|
2020-09-03 12:19:46 +00:00
|
|
|
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-09-30 03:11:25 +00:00
|
|
|
|
2020-11-01 19:08:52 +00:00
|
|
|
pub fn tile_at(&self, x: usize, y: usize) -> u8 {
|
2021-04-19 19:19:55 +00:00
|
|
|
if let Some(&tile) = self.map.tiles.get(y.wrapping_mul(self.map.width as usize).wrapping_add(x)) {
|
2020-11-01 19:08:52 +00:00
|
|
|
tile
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Changes map tile. Returns true if smoke should be emitted
|
2020-09-30 03:11:25 +00:00
|
|
|
pub fn change_tile(&mut self, x: usize, y: usize, tile_type: u8) -> bool {
|
2021-04-19 19:19:55 +00:00
|
|
|
if let Some(ptr) = self.map.tiles.get_mut(y.wrapping_mul(self.map.width as usize).wrapping_add(x)) {
|
2020-09-30 03:11:25 +00:00
|
|
|
if *ptr != tile_type {
|
|
|
|
*ptr = tile_type;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
|
|
|
}
|
2020-08-18 16:46:07 +00:00
|
|
|
}
|