1
0
mirror of synced 2024-11-14 18:07:36 +01:00
bemaniutils/bemani/utils/arcutils.py
Jennifer Taylor 509cb4f0d9 Convert most of the format() string calls to f-strings using libcst.
Exact commands run were:

  python3 -m libcst.tool codemod convert_format_to_fstring.ConvertFormatStringCommand . --no-format
  python3 setup.py build_ext --inplace
2020-01-07 21:29:07 +00:00

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()