use crate::io::{Audio, LoadSave, Serial}; use crate::state::GBState; use std::fs::File; use std::io::{Read, Write}; #[derive(Debug)] pub struct FSLoadSave { rom_file: String, save_file: String, state_file: Option, } impl FSLoadSave { pub fn new(rom_file: impl Into, save_file: impl Into) -> Self { Self { rom_file: rom_file.into(), save_file: save_file.into(), state_file: None, } } pub fn state_file(mut self, state_file: impl Into) -> Self { self.state_file = Some(state_file.into()); self } } impl LoadSave for FSLoadSave { type Error = std::io::Error; fn load_rom(&self, rom: &mut [u8]) -> Result<(), std::io::Error> { let mut f = File::open(&self.rom_file)?; f.read(rom)?; return Ok(()); } fn load_bootrom(&self, boot_rom: &mut [u8]) -> Result<(), std::io::Error> { println!("MBC: {:02x}", boot_rom[0x147]); println!("CGB: {:02x}", boot_rom[0x143]); if boot_rom[0x143] == 0x80 || boot_rom[0x143] == 0xc0 { unimplemented!("CGB Boot rom is not implemented"); // let bytes = include_bytes!("../assets/cgb_boot.bin"); // self.boot_rom[..0x900].copy_from_slice(bytes); // self.cgb_mode = true; // self.display.cgb_mode = true; } else { let bytes = include_bytes!("../../assets/dmg_boot.bin"); boot_rom[..0x100].copy_from_slice(bytes); } Ok(()) } fn load_external_ram(&self, external_ram: &mut [u8]) -> Result<(), std::io::Error> { let mut f = File::open(&self.save_file)?; f.read(external_ram)?; println!("Save file loaded from \"{}\"!", self.save_file); Ok(()) } fn save_external_ram(&self, external_ram: &[u8]) -> Result<(), std::io::Error> { let mut f = File::create(&self.save_file)?; f.write_all(&external_ram)?; println!("Save written to \"{}\"!", self.save_file); Ok(()) } fn save_state(&self, state: &GBState) { if let Some(state_file) = &self.state_file { { let mut vram_dump_file = File::create(format!("{}.vram", state_file)).unwrap(); for addr in 0x8000..0xa000 { vram_dump_file .write_all(format!("{:02X} ", state.mem.r(addr).unwrap()).as_bytes()); } } { let mut wram_dump_file = File::create(format!("{}.wram", state_file)).unwrap(); for addr in 0xc000..0xe000 { wram_dump_file .write_all(format!("{:02X} ", state.mem.r(addr).unwrap()).as_bytes()); } } { let mut io_dump_file = File::create(format!("{}.io", state_file)).unwrap(); for addr in 0xff00..0xff80 { io_dump_file .write_all(format!("{:02X} ", state.mem.r(addr).unwrap()).as_bytes()); } } { let mut hram_dump_file = File::create(format!("{}.hram", state_file)).unwrap(); for addr in 0xff80..=0xffff { hram_dump_file .write_all(format!("{:02X} ", state.mem.r(addr).unwrap()).as_bytes()); } } } else { panic!("{:?}", self) } } }