1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//! A parser for Gameboy ROMS.
//!
//! This crate provides a streaming Gameboy instruction parser as well as some
//! high-level types like `RomHeader` and `RomType`.
//!
//! Basic validation is provided through the `validate` method on `RomHeader`.
//!
//! Header logic based on info from the [GB CPU Manual].
//!
//! Opcode parsing logic was created with this [opcode table] as a reference.
//!
//! Information from other places is and other places is called out in comments in the relevant files
//!
//! [GB CPU Manual]: http://marc.rawer.de/Gameboy/Docs/GBCPUman.pdf
//! [opcode table]: https://www.pastraiser.com/cpu/gameboy/gameboy_opcodes.html
//!
//! Basic usage:
//! ```
//! # fn example() -> Result<(), String> {
//! # let rom_buffer = vec![0; 0x100];
//! let rom = gameboy_rom::GameBoyRom::new(rom_buffer.as_slice());
//! let rom_header = rom.parse_header()?;
//! # Ok(())
//! # }
//! ```

pub mod header;
pub mod opcodes;
mod parser;
pub mod util;

pub use crate::header::*;
pub use crate::opcodes::*;

/// Top level type for dealing with GameBoy ROMs.
#[derive(Debug)]
pub struct GameBoyRom<'rom> {
    rom_data: &'rom [u8],
}

impl<'rom> GameBoyRom<'rom> {
    /// Create a new instance of the `GameBoyRom`.
    pub fn new(rom_bytes: &'rom [u8]) -> Self {
        Self {
            rom_data: rom_bytes,
        }
    }

    /// Parse the ROM header and return a high level type containing its data.
    pub fn parse_header(&self) -> Result<RomHeader, String> {
        parser::parse_rom_header(self.rom_data)
            .map_err(|e| format!("Failed to parse ROM: {:?}", e))
            .map(|(_, rh)| rh)
    }

    /// Get an iterator over the instructions starting at the given address.
    pub fn get_instructions_at(&self, address: usize) -> OpcodeStreamer {
        OpcodeStreamer::new(self.rom_data, address)
    }
}

/// Streaming parser over GameBoy [`Opcode`]s.
pub struct OpcodeStreamer<'rom> {
    rom_data: &'rom [u8],
    current_index: usize,
}

impl<'rom> OpcodeStreamer<'rom> {
    pub(crate) fn new(rom_bytes: &'rom [u8], start: usize) -> Self {
        Self {
            rom_data: rom_bytes,
            current_index: start,
        }
    }
}

impl<'rom> Iterator for OpcodeStreamer<'rom> {
    type Item = Opcode;

    fn next(&mut self) -> Option<Self::Item> {
        match parser::parse_instruction(&self.rom_data[self.current_index..]) {
            Ok((i, op)) => {
                // Compare the pointers to find out how many bytes we read
                let offset =
                    i.as_ptr() as usize - (&self.rom_data[self.current_index..]).as_ptr() as usize;
                self.current_index += offset;

                Some(op)
            }
            Err(_) => None,
        }
    }
}