509cb4f0d9
Exact commands run were: python3 -m libcst.tool codemod convert_format_to_fstring.ConvertFormatStringCommand . --no-format python3 setup.py build_ext --inplace
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
import argparse
|
|
import os
|
|
|
|
from bemani.format import ARC
|
|
|
|
|
|
def main() -> None:
|
|
parser = argparse.ArgumentParser(description="A utility to extract ARC files.")
|
|
parser.add_argument(
|
|
"file",
|
|
help="ARC file to extract.",
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"-d",
|
|
"--directory",
|
|
help="Directory to extract to. Defaults to current directory.",
|
|
default="."
|
|
)
|
|
parser.add_argument(
|
|
"-l",
|
|
"--list-only",
|
|
action="store_true",
|
|
help="Print files but do not extract them.",
|
|
)
|
|
args = parser.parse_args()
|
|
|
|
root = args.directory
|
|
if root[-1] != '/':
|
|
root = root + '/'
|
|
root = os.path.realpath(root)
|
|
|
|
fp = open(args.file, 'rb')
|
|
data = fp.read()
|
|
fp.close()
|
|
|
|
arc = ARC(data)
|
|
for fn in arc.filenames:
|
|
if args.list_only:
|
|
print(fn)
|
|
else:
|
|
print(f'Extracting {fn} to disk...')
|
|
realfn = os.path.join(root, fn)
|
|
dirof = os.path.dirname(realfn)
|
|
os.makedirs(dirof, exist_ok=True)
|
|
with open(realfn, 'wb') as fp:
|
|
fp.write(arc.read_file(fn))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|