papermario/tools/rename.py

95 lines
2.8 KiB
Python
Raw Normal View History

2020-11-29 17:52:16 +01:00
#!/usr/bin/python3
import os
import re
from tqdm import tqdm
2020-11-29 17:52:16 +01:00
script_dir = os.path.dirname(os.path.realpath(__file__))
root_dir = os.path.join(script_dir, "..")
src_dir = os.path.join(root_dir, "src")
include_dir = os.path.join(root_dir, "include")
asm_dir = os.path.join(root_dir, "ver", "us", "asm")
2020-11-29 17:52:16 +01:00
renames = {}
deletes = []
def handle_file(f_path, try_rename_file=False):
with open(f_path) as f:
f_text_orig = f.read()
if try_rename_file:
extless = f_path.split("/")[-1][:-2]
if extless in renames:
deletes.append(f_path)
f_path = f_path.replace(extless, renames[extless])
f_text = f_text_orig
for rename in renames:
if "(" in rename or "," in rename:
f_text = f_text.replace(rename, renames[rename])
else:
f_text = re.sub(r"(?:\b)" + re.escape(rename) + r"(?:\b)", renames[rename], f_text)
with open(f_path, "w", newline="\n") as f:
f.write(f_text)
# Read Star Rod's output file (one rename per line, old and new, delimited by a space)
with open(os.path.join(script_dir, "to_rename.txt")) as f:
2020-11-29 17:52:16 +01:00
renames_text = f.readlines()
# Create dict of old -> new names
for line in renames_text:
split = line.split()
renames[split[0]] = split[1]
# Walk through asm files and rename stuff
print("Walking through asm files")
asm_files = []
2020-11-29 17:52:16 +01:00
for root, dirs, files in os.walk(asm_dir):
for f_name in files:
asm_files.append(os.path.join(root, f_name))
for f_path in tqdm(asm_files):
if f_path.endswith(".s"):
handle_file(f_path, True)
# Walk through src files and rename stuff
print("Walking through src files")
c_files = []
for root, dirs, files in os.walk(src_dir):
for f_name in files:
c_files.append(os.path.join(root, f_name))
for f_path in tqdm(c_files):
if f_name.endswith(".c") or f_name.endswith(".h"):
handle_file(f_path, True)
# Walk through include files and rename stuff
print("Walking through include files")
for root, dirs, files in os.walk(include_dir):
for f_name in files:
f_path = os.path.join(root, f_name)
handle_file(f_path)
# Delete old versions of newly saved files
print("Deleting old files")
for d in deletes:
os.remove(d)
# Walk through asm dirs and rename stuff
print("Walking through asm dirs")
for root, dirs, files in os.walk(asm_dir):
for dir_name in dirs:
for rename in renames:
if rename == dir_name:
os.rename(os.path.join(root, dir_name), os.path.join(root, renames[rename]))
# Rename stuff in symbol_addrs.txt
handle_file(os.path.join(root_dir, "ver", "current", "symbol_addrs.txt"))
# splat.yaml
handle_file(os.path.join(root_dir, "ver", "current", "splat.yaml"))
# effects.yaml
handle_file(os.path.join(root_dir, "ver", "current", "effects.yaml"))