mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 03:25:07 -05:00
c1eb71fa33
Additionally fixed oversight with audio files and bug in OTRGui.
40 lines
1.3 KiB
Python
Executable File
40 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse, json, os, signal, time, sys, shutil
|
|
from multiprocessing import Pool, cpu_count, Event, Manager, ProcessError
|
|
import shutil
|
|
|
|
def BuildOTR(xmlPath):
|
|
shutil.copytree("assets", "Extract/assets")
|
|
|
|
execStr = "x64\\Release\\ZAPD.exe" if sys.platform == "win32" else "../ZAPD/ZAPD.out"
|
|
execStr += " ed -i %s -b baserom.z64 -fl CFG\\filelists -o placeholder -osf placeholder -gsf 1 -rconf CFG/Config.xml -se OTR" % (xmlPath)
|
|
|
|
print(execStr)
|
|
exitValue = os.system(execStr)
|
|
if exitValue != 0:
|
|
print("\n")
|
|
print("Error when building the OTR file...", file=os.sys.stderr)
|
|
print("Aborting...", file=os.sys.stderr)
|
|
print("\n")
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(description="baserom asset extractor")
|
|
parser.add_argument("-v", "--version", help="Sets game version.")
|
|
args = parser.parse_args()
|
|
|
|
# TODO: Read from makerom file to automatically determine game version
|
|
xmlVer = "GC_NMQ_D"
|
|
|
|
if (args.version == "gc_pal_nmpq"):
|
|
xmlVer = "GC_NMQ_PAL_F"
|
|
elif (args.version == "dbg_mq"):
|
|
xmlVer = "GC_MQ_D"
|
|
|
|
if (os.path.exists("Extract")):
|
|
shutil.rmtree("Extract")
|
|
|
|
BuildOTR("..\\soh\\assets\\xml\\" + xmlVer + "\\")
|
|
|
|
if __name__ == "__main__":
|
|
main() |