-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpzzcomp_jojo_batch.py
39 lines (33 loc) · 1.41 KB
/
pzzcomp_jojo_batch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
import argparse
from pathlib import Path
from os import system
parser = argparse.ArgumentParser(description='pzzcomp_jojo helper')
parser.add_argument('input_pattern', metavar='INPUT', help='relative pattern; e.g. AFS_DATA\\*_compressed.dat')
parser.add_argument('output_dir', metavar='OUTPUT', help='directory')
parser.add_argument('-e', '--extension', metavar='EXT', help='output; .bin, .dat, .pzz, etc')
parser.add_argument('-y', '--yes', action='store_true', help='overwrite')
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('-c', '--compress', action='store_true')
group.add_argument('-d', '--decompress', action='store_true')
args = parser.parse_args()
p_output = Path(args.output_dir)
p_output.mkdir(exist_ok=True)
for path in Path('.').glob(args.input_pattern):
print(path)
if args.extension:
ext = args.extension
elif args.compress:
ext = ".dat"
else:
ext = ".bin"
other_path = (p_output / path.name).with_suffix(ext)
if other_path.exists() and not args.yes:
answer = input("File '{}' already exists. Overwrite ? [y/N]".format(other_path))
if answer.strip().lower() != 'y':
continue
print(">", other_path)
if args.compress:
system(r'pzzcomp_jojo -c "{}" "{}"'.format(path, other_path))
elif args.decompress:
system(r'pzzcomp_jojo -d "{}" "{}"'.format(path, other_path))