mirror of
https://github.com/pmret/papermario.git
synced 2024-11-12 14:03:56 +01:00
179998098c
* some btl_state work * msg_draw_speech_bubble * cleaners * btl_state_stuff * btl_state_update_next_enemy wip * btl_state stuff * disable_x fx + cleanup * wip * fxstuff * path funcs & cleanup * clean * model_api funcs * two action commands * action_cmd progress * UnkFunc001 * air raid func * cleanup, data migration, goodies * remove data file * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "a847090eac" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "a847090eac" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * fix build * more cleanup * clean * PR comments
232 lines
6.2 KiB
Python
Executable File
232 lines
6.2 KiB
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
import argparse
|
|
import itertools
|
|
import struct
|
|
|
|
from pathlib import Path
|
|
|
|
import hashlib
|
|
import zlib
|
|
|
|
from capstone import Cs, CS_ARCH_MIPS, CS_MODE_MIPS64, CS_MODE_BIG_ENDIAN
|
|
|
|
parser = argparse.ArgumentParser(description="Gives information on N64 roms")
|
|
parser.add_argument("rom", help="path to an N64 rom")
|
|
parser.add_argument(
|
|
"--header-encoding",
|
|
help="Text encoding the game header is using; see docs.python.org/3/library/codecs.html#standard-encodings for valid encodings",
|
|
)
|
|
|
|
country_codes = {
|
|
0x00: "Unknown",
|
|
0x37: "Beta",
|
|
0x41: "Asian (NTSC)",
|
|
0x42: "Brazillian",
|
|
0x43: "Chiniese",
|
|
0x44: "German",
|
|
0x45: "North America",
|
|
0x46: "French",
|
|
0x47: "Gateway 64 (NTSC)",
|
|
0x48: "Dutch",
|
|
0x49: "Italian",
|
|
0x4A: "Japanese",
|
|
0x4B: "Korean",
|
|
0x4C: "Gateway 64 (PAL)",
|
|
0x4E: "Canadian",
|
|
0x50: "European (basic spec.)",
|
|
0x53: "Spanish",
|
|
0x55: "Australian",
|
|
0x57: "Scandanavian",
|
|
0x58: "European",
|
|
0x59: "European",
|
|
}
|
|
|
|
crc_to_cic = {
|
|
0x6170A4A1: {"ntsc-name": "6101", "pal-name": "7102", "offset": 0x000000},
|
|
0x90BB6CB5: {"ntsc-name": "6102", "pal-name": "7101", "offset": 0x000000},
|
|
0x0B050EE0: {"ntsc-name": "6103", "pal-name": "7103", "offset": 0x100000},
|
|
0x98BC2C86: {"ntsc-name": "6105", "pal-name": "7105", "offset": 0x000000},
|
|
0xACC8580A: {"ntsc-name": "6106", "pal-name": "7106", "offset": 0x200000},
|
|
0x00000000: {"ntsc-name": "unknown", "pal-name": "unknown", "offset": 0x0000000},
|
|
}
|
|
|
|
|
|
def swap_bytes(data):
|
|
return bytes(
|
|
itertools.chain.from_iterable(
|
|
struct.pack(">H", x) for x, in struct.iter_unpack("<H", data)
|
|
)
|
|
)
|
|
|
|
|
|
def read_rom(rom_path):
|
|
with open(rom_path, "rb") as f:
|
|
rom_bytes = f.read()
|
|
|
|
if rom_path.suffix.lower() == ".n64":
|
|
print("Warning: Input file has .n64 suffix, byte-swapping!")
|
|
rom_bytes = swap_bytes(rom_bytes)
|
|
as_z64 = rom_path.with_suffix(".z64")
|
|
if not as_z64.exists():
|
|
print(f"Writing down {as_z64}")
|
|
with open(as_z64, "wb") as o:
|
|
o.write(rom_bytes)
|
|
return rom_bytes
|
|
|
|
|
|
def get_cic(rom_bytes):
|
|
crc = zlib.crc32(rom_bytes[0x40:0x1000])
|
|
if crc in crc_to_cic:
|
|
return crc_to_cic[crc]
|
|
else:
|
|
return crc_to_cic[0]
|
|
|
|
|
|
def get_entry_point(program_counter, cic):
|
|
return program_counter - cic["offset"]
|
|
|
|
|
|
def guess_header_encoding(rom_bytes):
|
|
header = rom_bytes[0x20:0x34]
|
|
encodings = ["ASCII", "shift_jis", "euc-jp"]
|
|
for encoding in encodings:
|
|
try:
|
|
header.decode(encoding)
|
|
return encoding
|
|
except UnicodeDecodeError:
|
|
# we guessed wrong...
|
|
pass
|
|
|
|
print("Unknown header encoding, please raise an Issue with us")
|
|
exit(1)
|
|
|
|
|
|
def get_info(rom_path, rom_bytes=None, header_encoding=None):
|
|
if not rom_bytes:
|
|
rom_bytes = read_rom(rom_path)
|
|
|
|
if header_encoding is None:
|
|
header_encoding = guess_header_encoding(rom_bytes)
|
|
|
|
return get_info_bytes(rom_bytes, header_encoding)
|
|
|
|
|
|
def get_info_bytes(rom_bytes, header_encoding):
|
|
program_counter = int(rom_bytes[0x8:0xC].hex(), 16)
|
|
libultra_version = chr(rom_bytes[0xF])
|
|
crc1 = rom_bytes[0x10:0x14].hex().upper()
|
|
crc2 = rom_bytes[0x14:0x18].hex().upper()
|
|
|
|
try:
|
|
name = rom_bytes[0x20:0x34].decode(header_encoding).strip()
|
|
except:
|
|
print(
|
|
"splat could not decode the game name; try using a different encoding by passing the --header-encoding argument (see docs.python.org/3/library/codecs.html#standard-encodings for valid encodings)"
|
|
)
|
|
exit(1)
|
|
|
|
country_code = rom_bytes[0x3E]
|
|
|
|
cic = get_cic(rom_bytes)
|
|
entry_point = get_entry_point(program_counter, cic)
|
|
|
|
# TODO: add support for
|
|
# compression_formats = []
|
|
# for format in ["Yay0", "vpk0"]:
|
|
# if rom_bytes.find(bytes(format, "ASCII")) != -1:
|
|
# compression_formats.append(format)
|
|
|
|
compiler = get_compiler_info(rom_bytes, entry_point, print_result=False)
|
|
|
|
sha1 = hashlib.sha1(rom_bytes).hexdigest()
|
|
|
|
return N64Rom(
|
|
name,
|
|
header_encoding,
|
|
country_code,
|
|
libultra_version,
|
|
crc1,
|
|
crc2,
|
|
cic,
|
|
entry_point,
|
|
len(rom_bytes),
|
|
compiler,
|
|
sha1,
|
|
)
|
|
|
|
|
|
class N64Rom:
|
|
def __init__(
|
|
self,
|
|
name,
|
|
header_encoding,
|
|
country_code,
|
|
libultra_version,
|
|
crc1,
|
|
crc2,
|
|
cic,
|
|
entry_point,
|
|
size,
|
|
compiler,
|
|
sha1,
|
|
):
|
|
self.name = name
|
|
self.header_encoding = header_encoding
|
|
self.country_code = country_code
|
|
self.libultra_version = libultra_version
|
|
self.crc1 = crc1
|
|
self.crc2 = crc2
|
|
self.cic = cic
|
|
self.entry_point = entry_point
|
|
self.size = size
|
|
self.compiler = compiler
|
|
self.sha1 = sha1
|
|
|
|
def get_country_name(self):
|
|
return country_codes[self.country_code]
|
|
|
|
|
|
def get_compiler_info(rom_bytes, entry_point, print_result=True):
|
|
md = Cs(CS_ARCH_MIPS, CS_MODE_MIPS64 + CS_MODE_BIG_ENDIAN)
|
|
md.detail = True
|
|
|
|
jumps = 0
|
|
branches = 0
|
|
|
|
for insn in md.disasm(rom_bytes[0x1000:], entry_point):
|
|
if insn.mnemonic == "j":
|
|
jumps += 1
|
|
elif insn.mnemonic == "b":
|
|
branches += 1
|
|
|
|
compiler = "IDO" if branches > jumps else "GCC"
|
|
if print_result:
|
|
print(
|
|
f"{branches} branches and {jumps} jumps detected in the first code segment. Compiler is most likely {compiler}"
|
|
)
|
|
return compiler
|
|
|
|
|
|
# TODO: support .n64 extension
|
|
def main():
|
|
args = parser.parse_args()
|
|
rom_bytes = read_rom(Path(args.rom))
|
|
rom = get_info(Path(args.rom), rom_bytes, args.header_encoding)
|
|
|
|
print("Image name: " + rom.name)
|
|
print("Country code: " + chr(rom.country_code) + " - " + rom.get_country_name())
|
|
print("Libultra version: " + rom.libultra_version)
|
|
print("CRC1: " + rom.crc1)
|
|
print("CRC2: " + rom.crc2)
|
|
print("CIC: " + rom.cic["ntsc-name"] + " / " + rom.cic["pal-name"])
|
|
print("RAM entry point: " + hex(rom.entry_point))
|
|
print("Header encoding: " + rom.header_encoding)
|
|
print("")
|
|
|
|
get_compiler_info(rom_bytes, rom.entry_point)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|