2022-03-21 21:53:02 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-05-11 13:18:24 -04:00
|
|
|
import os, sys, shutil
|
2022-03-21 21:53:02 -04:00
|
|
|
import shutil
|
2022-05-11 13:18:24 -04:00
|
|
|
from rom_info import Z64Rom
|
|
|
|
import rom_chooser
|
2022-07-18 19:33:36 -04:00
|
|
|
import struct
|
2022-07-21 19:12:43 -04:00
|
|
|
import subprocess
|
2022-08-16 03:34:30 -04:00
|
|
|
import argparse
|
2022-04-19 13:16:06 -04:00
|
|
|
|
2022-08-16 03:34:30 -04:00
|
|
|
def BuildOTR(xmlPath, rom, zapd_exe=None):
|
2022-03-21 21:53:02 -04:00
|
|
|
shutil.copytree("assets", "Extract/assets")
|
|
|
|
|
2022-08-16 03:34:30 -04:00
|
|
|
if not zapd_exe:
|
|
|
|
zapd_exe = "x64\\Release\\ZAPD.exe" if sys.platform == "win32" else "../ZAPDTR/ZAPD.out"
|
|
|
|
|
2022-07-21 19:12:43 -04:00
|
|
|
exec_cmd = [zapd_exe, "ed", "-i", xmlPath, "-b", rom, "-fl", "CFG/filelists",
|
|
|
|
"-o", "placeholder", "-osf", "placeholder", "-gsf", "1",
|
|
|
|
"-rconf", "CFG/Config.xml", "-se", "OTR"]
|
2022-03-21 21:53:02 -04:00
|
|
|
|
2022-07-21 19:12:43 -04:00
|
|
|
print(exec_cmd)
|
|
|
|
exitValue = subprocess.call(exec_cmd)
|
2022-03-21 21:53:02 -04:00
|
|
|
if exitValue != 0:
|
|
|
|
print("\n")
|
|
|
|
print("Error when building the OTR file...", file=os.sys.stderr)
|
|
|
|
print("Aborting...", file=os.sys.stderr)
|
|
|
|
print("\n")
|
|
|
|
|
2022-04-19 13:16:06 -04:00
|
|
|
def main():
|
2022-08-16 03:34:30 -04:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("-z", "--zapd", help="Path to ZAPD executable", dest="zapd_exe", type=str)
|
|
|
|
parser.add_argument("rom", help="Path to the rom", type=str, nargs="?")
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
rom_path = args.rom if args.rom else rom_chooser.chooseROM()
|
2022-05-11 13:18:24 -04:00
|
|
|
rom = Z64Rom(rom_path)
|
2022-03-31 19:42:44 -04:00
|
|
|
|
2022-04-03 15:48:44 -04:00
|
|
|
if (os.path.exists("Extract")):
|
2022-03-21 21:53:02 -04:00
|
|
|
shutil.rmtree("Extract")
|
2022-05-11 13:18:24 -04:00
|
|
|
|
2022-08-16 03:34:30 -04:00
|
|
|
BuildOTR("../soh/assets/xml/" + rom.version.xml_ver + "/", rom_path, zapd_exe=args.zapd_exe)
|
2022-03-21 21:53:02 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2022-04-19 13:16:06 -04:00
|
|
|
main()
|