mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-04-05 11:24:22 +00:00
Merge pull request #145 from jozsefsallai/bugfix/filesystem-errors
fix filesystem errors and UB warnings on rust >= 1.62.0
This commit is contained in:
commit
9d7c63571d
|
@ -1811,7 +1811,7 @@ impl EngineConstants {
|
||||||
pub fn apply_constant_json_files(&mut self) {}
|
pub fn apply_constant_json_files(&mut self) {}
|
||||||
|
|
||||||
pub fn load_texture_size_hints(&mut self, ctx: &mut Context) -> GameResult {
|
pub fn load_texture_size_hints(&mut self, ctx: &mut Context) -> GameResult {
|
||||||
if let Ok(file) = filesystem::open_find(ctx, &self.base_paths, "/texture_sizes.json") {
|
if let Ok(file) = filesystem::open_find(ctx, &self.base_paths, "texture_sizes.json") {
|
||||||
match serde_json::from_reader::<_, TextureSizeTable>(file) {
|
match serde_json::from_reader::<_, TextureSizeTable>(file) {
|
||||||
Ok(tex_overrides) => {
|
Ok(tex_overrides) => {
|
||||||
for (key, (x, y)) in tex_overrides.sizes {
|
for (key, (x, y)) in tex_overrides.sizes {
|
||||||
|
@ -1828,7 +1828,7 @@ impl EngineConstants {
|
||||||
/// even though they match vanilla 1:1, we should load them for completeness
|
/// even though they match vanilla 1:1, we should load them for completeness
|
||||||
/// or if any crazy person uses it for a CS+ mod...
|
/// or if any crazy person uses it for a CS+ mod...
|
||||||
pub fn load_csplus_tables(&mut self, ctx: &mut Context) -> GameResult {
|
pub fn load_csplus_tables(&mut self, ctx: &mut Context) -> GameResult {
|
||||||
if let Ok(mut file) = filesystem::open_find(ctx, &self.base_paths, "/bullet.tbl") {
|
if let Ok(mut file) = filesystem::open_find(ctx, &self.base_paths, "bullet.tbl") {
|
||||||
let mut data = Vec::new();
|
let mut data = Vec::new();
|
||||||
file.read_to_end(&mut data)?;
|
file.read_to_end(&mut data)?;
|
||||||
let bullets = data.len() / 0x2A;
|
let bullets = data.len() / 0x2A;
|
||||||
|
@ -1859,7 +1859,7 @@ impl EngineConstants {
|
||||||
log::info!("Loaded bullet.tbl.");
|
log::info!("Loaded bullet.tbl.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Ok(mut file) = filesystem::open_find(ctx, &self.base_paths, "/arms_level.tbl") {
|
if let Ok(mut file) = filesystem::open_find(ctx, &self.base_paths, "arms_level.tbl") {
|
||||||
let mut data = Vec::new();
|
let mut data = Vec::new();
|
||||||
file.read_to_end(&mut data)?;
|
file.read_to_end(&mut data)?;
|
||||||
let mut f = Cursor::new(data);
|
let mut f = Cursor::new(data);
|
||||||
|
@ -1887,7 +1887,7 @@ impl EngineConstants {
|
||||||
// Bugfix for Malco cutscene - this face should be used but the original tsc has the wrong ID
|
// Bugfix for Malco cutscene - this face should be used but the original tsc has the wrong ID
|
||||||
self.animated_face_table.push(AnimatedFace { face_id: 5, anim_id: 4, anim_frames: vec![(4, 0)] });
|
self.animated_face_table.push(AnimatedFace { face_id: 5, anim_id: 4, anim_frames: vec![(4, 0)] });
|
||||||
|
|
||||||
if let Ok(file) = filesystem::open_find(ctx, &self.base_paths, "/faceanm.dat") {
|
if let Ok(file) = filesystem::open_find(ctx, &self.base_paths, "faceanm.dat") {
|
||||||
let buf = BufReader::new(file);
|
let buf = BufReader::new(file);
|
||||||
let mut face_id = 1;
|
let mut face_id = 1;
|
||||||
let mut anim_id = 0;
|
let mut anim_id = 0;
|
||||||
|
|
|
@ -206,12 +206,12 @@ impl Map {
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Ok(mut attrib_data) = filesystem::open_find(ctx, roots, ["/Stage/", &tileset_fg, ".pxa"].join("")) {
|
if let Ok(mut attrib_data) = filesystem::open_find(ctx, roots, ["Stage/", &tileset_fg, ".pxa"].join("")) {
|
||||||
if attrib_data.read_exact(&mut attrib).is_err() {
|
if attrib_data.read_exact(&mut attrib).is_err() {
|
||||||
log::warn!("Map attribute data is shorter than 256 bytes!");
|
log::warn!("Map attribute data is shorter than 256 bytes!");
|
||||||
}
|
}
|
||||||
} else if let Ok(mut attrib_data) =
|
} else if let Ok(mut attrib_data) =
|
||||||
filesystem::open_find(ctx, roots, ["/Stage/", &tileset_fg, ".pxattr"].join(""))
|
filesystem::open_find(ctx, roots, ["Stage/", &tileset_fg, ".pxattr"].join(""))
|
||||||
{
|
{
|
||||||
attrib_data.read_exact(&mut magic)?;
|
attrib_data.read_exact(&mut magic)?;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use std::mem::MaybeUninit;
|
use std::mem::{transmute, MaybeUninit};
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
|
|
||||||
use crate::common::{interpolate_fix9_scale, Direction};
|
use crate::common::{interpolate_fix9_scale, Direction};
|
||||||
|
@ -33,17 +33,21 @@ pub struct BossNPC {
|
||||||
|
|
||||||
impl BossNPC {
|
impl BossNPC {
|
||||||
pub fn new() -> BossNPC {
|
pub fn new() -> BossNPC {
|
||||||
let mut parts = unsafe {
|
let mut parts: [NPC; 20] = unsafe {
|
||||||
let mut parts_uninit: [NPC; 20] = MaybeUninit::uninit().assume_init();
|
const PART: MaybeUninit<NPC> = MaybeUninit::uninit();
|
||||||
|
let mut parts_uninit: [MaybeUninit<NPC>; 20] = [PART; 20];
|
||||||
|
|
||||||
for part in &mut parts_uninit {
|
for part in &mut parts_uninit {
|
||||||
*part = NPC::empty();
|
part.write(NPC::empty());
|
||||||
part.cond.set_drs_boss(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
parts_uninit
|
transmute(parts_uninit)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
for part in &mut parts {
|
||||||
|
part.cond.set_drs_boss(true);
|
||||||
|
}
|
||||||
|
|
||||||
parts[0].cond.set_alive(true);
|
parts[0].cond.set_alive(true);
|
||||||
|
|
||||||
BossNPC { boss_type: 0, parts, hurt_sound: [0; 20], death_sound: [0; 20] }
|
BossNPC { boss_type: 0, parts, hurt_sound: [0; 20], death_sound: [0; 20] }
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use std::cell::{Cell, UnsafeCell};
|
use std::cell::{Cell, UnsafeCell};
|
||||||
use std::mem::MaybeUninit;
|
use std::mem::{transmute, MaybeUninit};
|
||||||
|
|
||||||
use crate::framework::error::{GameError, GameResult};
|
use crate::framework::error::{GameError, GameResult};
|
||||||
|
|
||||||
|
@ -23,13 +23,14 @@ impl NPCList {
|
||||||
pub fn new() -> NPCList {
|
pub fn new() -> NPCList {
|
||||||
let map = NPCList {
|
let map = NPCList {
|
||||||
npcs: Box::new(UnsafeCell::new(unsafe {
|
npcs: Box::new(UnsafeCell::new(unsafe {
|
||||||
let mut parts_uninit: [NPC; NPC_LIST_MAX_CAP] = MaybeUninit::uninit().assume_init();
|
const PART: MaybeUninit<NPC> = MaybeUninit::uninit();
|
||||||
|
let mut parts_uninit: [MaybeUninit<NPC>; NPC_LIST_MAX_CAP] = [PART; NPC_LIST_MAX_CAP];
|
||||||
|
|
||||||
for part in &mut parts_uninit {
|
for part in &mut parts_uninit {
|
||||||
*part = NPC::empty();
|
part.write(NPC::empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
parts_uninit
|
transmute(parts_uninit)
|
||||||
})),
|
})),
|
||||||
max_npc: Cell::new(0),
|
max_npc: Cell::new(0),
|
||||||
seed: 0,
|
seed: 0,
|
||||||
|
|
|
@ -88,7 +88,7 @@ impl BasicPlayerSkin {
|
||||||
pub fn new(texture_name: String, state: &SharedGameState, ctx: &mut Context) -> BasicPlayerSkin {
|
pub fn new(texture_name: String, state: &SharedGameState, ctx: &mut Context) -> BasicPlayerSkin {
|
||||||
let mut metadata = DEFAULT_SKINMETA.clone();
|
let mut metadata = DEFAULT_SKINMETA.clone();
|
||||||
|
|
||||||
let meta_path = format!("/{}.dskinmeta", texture_name);
|
let meta_path = format!("{}.dskinmeta", texture_name);
|
||||||
|
|
||||||
if let Ok(file) = filesystem::open_find(ctx, &state.constants.base_paths, &meta_path) {
|
if let Ok(file) = filesystem::open_find(ctx, &state.constants.base_paths, &meta_path) {
|
||||||
match serde_json::from_reader::<File, SkinMeta>(file) {
|
match serde_json::from_reader::<File, SkinMeta>(file) {
|
||||||
|
|
|
@ -337,19 +337,19 @@ impl SharedGameState {
|
||||||
|
|
||||||
let font = BMFontRenderer::load(&constants.base_paths, &active_locale.font.path, ctx).or_else(|e| {
|
let font = BMFontRenderer::load(&constants.base_paths, &active_locale.font.path, ctx).or_else(|e| {
|
||||||
log::warn!("Failed to load font, using built-in: {}", e);
|
log::warn!("Failed to load font, using built-in: {}", e);
|
||||||
BMFontRenderer::load(&vec!["/".to_owned()], "/builtin/builtin_font.fnt", ctx)
|
BMFontRenderer::load(&vec!["/".to_owned()], "builtin/builtin_font.fnt", ctx)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let mod_list = ModList::load(ctx, &constants.string_table)?;
|
let mod_list = ModList::load(ctx, &constants.string_table)?;
|
||||||
|
|
||||||
for i in 0..0xffu8 {
|
for i in 0..0xffu8 {
|
||||||
let path = format!("/pxt/fx{:02x}.pxt", i);
|
let path = format!("pxt/fx{:02x}.pxt", i);
|
||||||
if let Ok(file) = filesystem::open_find(ctx, &constants.base_paths, path) {
|
if let Ok(file) = filesystem::open_find(ctx, &constants.base_paths, path) {
|
||||||
sound_manager.set_sample_params_from_file(i, file)?;
|
sound_manager.set_sample_params_from_file(i, file)?;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let path = format!("/PixTone/{:03}.pxt", i);
|
let path = format!("PixTone/{:03}.pxt", i);
|
||||||
if let Ok(file) = filesystem::open_find(ctx, &constants.base_paths, path) {
|
if let Ok(file) = filesystem::open_find(ctx, &constants.base_paths, path) {
|
||||||
sound_manager.set_sample_params_from_file(i, file)?;
|
sound_manager.set_sample_params_from_file(i, file)?;
|
||||||
continue;
|
continue;
|
||||||
|
@ -452,23 +452,23 @@ impl SharedGameState {
|
||||||
let stages = StageData::load_stage_table(ctx, &self.constants.base_paths, self.constants.is_switch)?;
|
let stages = StageData::load_stage_table(ctx, &self.constants.base_paths, self.constants.is_switch)?;
|
||||||
self.stages = stages;
|
self.stages = stages;
|
||||||
|
|
||||||
let npc_tbl = filesystem::open_find(ctx, &self.constants.base_paths, "/npc.tbl")?;
|
let npc_tbl = filesystem::open_find(ctx, &self.constants.base_paths, "npc.tbl")?;
|
||||||
let npc_table = NPCTable::load_from(npc_tbl)?;
|
let npc_table = NPCTable::load_from(npc_tbl)?;
|
||||||
self.npc_table = npc_table;
|
self.npc_table = npc_table;
|
||||||
|
|
||||||
let head_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "/Head.tsc")?;
|
let head_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "Head.tsc")?;
|
||||||
let head_script = TextScript::load_from(head_tsc, &self.constants)?;
|
let head_script = TextScript::load_from(head_tsc, &self.constants)?;
|
||||||
self.textscript_vm.set_global_script(head_script);
|
self.textscript_vm.set_global_script(head_script);
|
||||||
|
|
||||||
let arms_item_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "/ArmsItem.tsc")?;
|
let arms_item_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "ArmsItem.tsc")?;
|
||||||
let arms_item_script = TextScript::load_from(arms_item_tsc, &self.constants)?;
|
let arms_item_script = TextScript::load_from(arms_item_tsc, &self.constants)?;
|
||||||
self.textscript_vm.set_inventory_script(arms_item_script);
|
self.textscript_vm.set_inventory_script(arms_item_script);
|
||||||
|
|
||||||
let stage_select_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "/StageSelect.tsc")?;
|
let stage_select_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "StageSelect.tsc")?;
|
||||||
let stage_select_script = TextScript::load_from(stage_select_tsc, &self.constants)?;
|
let stage_select_script = TextScript::load_from(stage_select_tsc, &self.constants)?;
|
||||||
self.textscript_vm.set_stage_select_script(stage_select_script);
|
self.textscript_vm.set_stage_select_script(stage_select_script);
|
||||||
|
|
||||||
let credit_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "/Credit.tsc")?;
|
let credit_tsc = filesystem::open_find(ctx, &self.constants.base_paths, "Credit.tsc")?;
|
||||||
let credit_script = CreditScript::load_from(credit_tsc, &self.constants)?;
|
let credit_script = CreditScript::load_from(credit_tsc, &self.constants)?;
|
||||||
self.creditscript_vm.set_script(credit_script);
|
self.creditscript_vm.set_script(credit_script);
|
||||||
|
|
||||||
|
@ -490,7 +490,7 @@ impl SharedGameState {
|
||||||
let font = BMFontRenderer::load(&self.constants.base_paths, &active_locale.font.path, ctx)
|
let font = BMFontRenderer::load(&self.constants.base_paths, &active_locale.font.path, ctx)
|
||||||
.or_else(|e| {
|
.or_else(|e| {
|
||||||
log::warn!("Failed to load font, using built-in: {}", e);
|
log::warn!("Failed to load font, using built-in: {}", e);
|
||||||
BMFontRenderer::load(&vec!["/".to_owned()], "/builtin/builtin_font.fnt", ctx)
|
BMFontRenderer::load(&vec!["/".to_owned()], "builtin/builtin_font.fnt", ctx)
|
||||||
})
|
})
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
|
10
src/stage.rs
10
src/stage.rs
|
@ -548,13 +548,13 @@ impl Stage {
|
||||||
pub fn load(roots: &Vec<String>, data: &StageData, ctx: &mut Context) -> GameResult<Self> {
|
pub fn load(roots: &Vec<String>, data: &StageData, ctx: &mut Context) -> GameResult<Self> {
|
||||||
let mut data = data.clone();
|
let mut data = data.clone();
|
||||||
|
|
||||||
if let Ok(pxpack_file) = filesystem::open_find(ctx, roots, ["/Stage/", &data.map, ".pxpack"].join("")) {
|
if let Ok(pxpack_file) = filesystem::open_find(ctx, roots, ["Stage/", &data.map, ".pxpack"].join("")) {
|
||||||
let map = Map::load_pxpack(pxpack_file, roots, &mut data, ctx)?;
|
let map = Map::load_pxpack(pxpack_file, roots, &mut data, ctx)?;
|
||||||
let stage = Self { map, data };
|
let stage = Self { map, data };
|
||||||
|
|
||||||
return Ok(stage);
|
return Ok(stage);
|
||||||
} else if let Ok(map_file) = filesystem::open_find(ctx, roots, ["/Stage/", &data.map, ".pxm"].join("")) {
|
} else if let Ok(map_file) = filesystem::open_find(ctx, roots, ["Stage/", &data.map, ".pxm"].join("")) {
|
||||||
let attrib_file = filesystem::open_find(ctx, roots, ["/Stage/", &data.tileset.name, ".pxa"].join(""))?;
|
let attrib_file = filesystem::open_find(ctx, roots, ["Stage/", &data.tileset.name, ".pxa"].join(""))?;
|
||||||
|
|
||||||
let map = Map::load_pxm(map_file, attrib_file)?;
|
let map = Map::load_pxm(map_file, attrib_file)?;
|
||||||
|
|
||||||
|
@ -572,14 +572,14 @@ impl Stage {
|
||||||
constants: &EngineConstants,
|
constants: &EngineConstants,
|
||||||
ctx: &mut Context,
|
ctx: &mut Context,
|
||||||
) -> GameResult<TextScript> {
|
) -> GameResult<TextScript> {
|
||||||
let tsc_file = filesystem::open_find(ctx, roots, ["/Stage/", &self.data.map, ".tsc"].join(""))?;
|
let tsc_file = filesystem::open_find(ctx, roots, ["Stage/", &self.data.map, ".tsc"].join(""))?;
|
||||||
let text_script = TextScript::load_from(tsc_file, constants)?;
|
let text_script = TextScript::load_from(tsc_file, constants)?;
|
||||||
|
|
||||||
Ok(text_script)
|
Ok(text_script)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn load_npcs(&self, roots: &Vec<String>, ctx: &mut Context) -> GameResult<Vec<NPCData>> {
|
pub fn load_npcs(&self, roots: &Vec<String>, ctx: &mut Context) -> GameResult<Vec<NPCData>> {
|
||||||
let pxe_file = filesystem::open_find(ctx, roots, ["/Stage/", &self.data.map, ".pxe"].join(""))?;
|
let pxe_file = filesystem::open_find(ctx, roots, ["Stage/", &self.data.map, ".pxe"].join(""))?;
|
||||||
let npc_data = NPCData::load_from(pxe_file)?;
|
let npc_data = NPCData::load_from(pxe_file)?;
|
||||||
|
|
||||||
Ok(npc_data)
|
Ok(npc_data)
|
||||||
|
|
Loading…
Reference in a new issue