2021-01-15 02:26:06 +01:00
|
|
|
#! /usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
2021-06-16 11:52:15 +02:00
|
|
|
from util.n64 import rominfo, find_code_length
|
2021-01-15 02:26:06 +01:00
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
parser = argparse.ArgumentParser(description="Create a splat config from a ROM. "
|
|
|
|
"Only n64 .z64 ROMs are supported")
|
|
|
|
parser.add_argument("rom", help="Path to a .z64 ROM")
|
2021-01-15 02:26:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main(rom_path):
|
|
|
|
rom = rominfo.get_info(rom_path)
|
|
|
|
basename = rom.name.replace(" ", "").lower()
|
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
header = f"""
|
|
|
|
name: {rom.name.title()} ({rom.get_country_name()})
|
|
|
|
sha1: {rom.sha1}
|
2021-01-15 02:26:06 +01:00
|
|
|
options:
|
2021-06-16 11:52:15 +02:00
|
|
|
basename: {basename}
|
|
|
|
target_path: {rom_path}
|
2021-04-23 13:55:30 +02:00
|
|
|
base_path: .
|
2021-06-16 11:52:15 +02:00
|
|
|
compiler: {rom.compiler}
|
|
|
|
find_file_boundaries: True
|
|
|
|
# platform: n64
|
|
|
|
# undefined_funcs_auto_path: undefined_funcs_auto.txt
|
|
|
|
# undefined_syms_auto_path: undefined_syms_auto.txt
|
|
|
|
# symbol_addrs_path: symbol_addrs.txt
|
|
|
|
# undefined_syms_path: undefined_syms.txt
|
|
|
|
# asm_path: asm
|
|
|
|
# src_path: src
|
|
|
|
# build_path: build
|
|
|
|
# extensions_path: tools/splat_ext
|
2021-06-30 04:27:12 +02:00
|
|
|
# auto_all_sections: True
|
2021-06-16 11:52:15 +02:00
|
|
|
""".lstrip()
|
2021-01-15 02:26:06 +01:00
|
|
|
|
|
|
|
with open(rom_path, "rb") as f:
|
2021-06-16 11:52:15 +02:00
|
|
|
fbytes = f.read()
|
2021-02-06 05:05:39 +01:00
|
|
|
|
2021-01-24 16:19:56 +01:00
|
|
|
first_section_end = find_code_length.run(fbytes, 0x1000, rom.entry_point)
|
2021-01-15 02:26:06 +01:00
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
segments = f"""
|
|
|
|
segments:
|
2021-01-15 02:26:06 +01:00
|
|
|
- name: header
|
|
|
|
type: header
|
|
|
|
start: 0x0
|
|
|
|
- name: boot
|
|
|
|
type: bin
|
|
|
|
start: 0x40
|
|
|
|
- name: main
|
|
|
|
type: code
|
|
|
|
start: 0x1000
|
2021-06-16 11:52:15 +02:00
|
|
|
vram: 0x{rom.entry_point:X}
|
2021-04-13 09:47:52 +02:00
|
|
|
subsegments:
|
2021-01-15 02:26:06 +01:00
|
|
|
- [0x1000, asm]
|
|
|
|
- type: bin
|
2021-06-16 11:52:15 +02:00
|
|
|
start: 0x{first_section_end:X}
|
|
|
|
- [0x{rom.size:X}]
|
|
|
|
""".lstrip()
|
2021-01-15 02:26:06 +01:00
|
|
|
|
2021-06-16 11:52:15 +02:00
|
|
|
with open(basename + ".yaml", "w", newline="\n") as f:
|
|
|
|
f.write(header + segments)
|
2021-01-15 02:26:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
args = parser.parse_args()
|
|
|
|
main(args.rom)
|