mirror of
https://github.com/pmret/papermario.git
synced 2024-11-14 23:13:10 +01:00
8837fbdf65
* WIP work on sprites (sprite_stuff.py) * cleanup of various stuff * separate compiler installation into separate script * wipz * more * renames, bugfixes * more * very grood * cleanin * goods and services * oopth * oopth2 * Parse palette data from xml * more work * more wipperz * more * it working * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "e72a868f9f" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "e72a868f9f" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * fix symbol_addrs for new splat * upd8s * Use generated header, other versions, fixes * fixes & formatting * wip fusing npc + player extraction & cleanup * remove npc_files * buildin * fix some bugs * Cleanup, yay0s separately * cleen * cleanup * Respect stack during build * jp spritz * dun * fix c files --------- Co-authored-by: pixel-stuck <mathmcclintic@gmail.com>
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# ninja -j1 | python3 tools/fix_bad_evt_changes.py
|
|
|
|
import fileinput
|
|
import requests
|
|
|
|
problems = []
|
|
|
|
for line in fileinput.input():
|
|
if "undeclared here (not in a function)" in line:
|
|
filename = line.split(":")[0].strip()
|
|
line_number = int(line.split(":")[1].strip())
|
|
bad_symbol_name = line.split("`")[1].split("'")[0]
|
|
|
|
problems.append((filename, line_number, bad_symbol_name))
|
|
|
|
for filename, line_number, bad_symbol_name in problems:
|
|
url = f"https://raw.githubusercontent.com/pmret/papermario/main/{filename}"
|
|
old_lines = requests.get(url).text.splitlines()
|
|
|
|
old_line = old_lines[line_number - 1].strip()
|
|
|
|
with open(filename, "r") as f:
|
|
lines = f.readlines()
|
|
|
|
line = lines[line_number - 1]
|
|
|
|
if "EVT_CALL" not in line and "EVT_EXEC" not in line:
|
|
continue
|
|
|
|
if old_line.startswith("N(") or old_line.startswith("await N("):
|
|
good_symbol_name = old_line[old_line.find("N("):].split(")", 1)[0] + ")"
|
|
else:
|
|
good_symbol_name = old_line.split("(", 1)[0]
|
|
|
|
print(filename, bad_symbol_name, "->", good_symbol_name)
|
|
|
|
lines[line_number - 1] = line.replace(bad_symbol_name, good_symbol_name)
|
|
|
|
with open(filename, "w") as f:
|
|
f.writelines(lines)
|
|
|