Files
Lila 2b44b24d40 [SM64] Refresh 16 (#376)
* [SM64] Refresh 16

Fix MARIO macro parsing, added function map

* Fix parse function map.py
2024-08-05 19:34:42 +01:00

31 lines
989 B
Python

from re import search
refresh_name = "Refresh 16"
function_map_path = "./sm64.us.map"
output_map_path = "./sm64_function_map_output.py"
def parse_func_map():
mapfile = open(function_map_path, "r")
outfile = open(output_map_path, "w")
outfile.write('\t"' + refresh_name + '" : {\n')
nextLine = mapfile.readline()
while nextLine != "" and nextLine != "Linker script and memory map\n":
nextLine = mapfile.readline()
while nextLine != "" and nextLine not in {
" build/us/src/menu/level_select_menu.o(.text)\n",
" build/us/src/menu/title_screen.o(.text)\n",
}:
if nextLine[:17] == " " * 16 + "0":
outfile.write('\t\t"' + nextLine[26:34] + '" : ')
searchName = nextLine[34:]
searchResult = search(r"\s*(\S*).*", searchName)
outfile.write('"' + searchResult.group(1) + '",\n')
nextLine = mapfile.readline()
outfile.write("\t}\n")
mapfile.close()
outfile.close()