mirror of
https://github.com/ApfelTeeSaft/lightspeed64.git
synced 2026-08-26 19:33:24 +00:00
* [SM64] Refresh 16 Fix MARIO macro parsing, added function map * Fix parse function map.py
31 lines
989 B
Python
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()
|