macresources/bin/SimpleDeRez

31 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-10-21 10:43:26 +00:00
#!/usr/bin/env python3
import argparse
2018-10-23 11:15:18 +00:00
import macresources
2018-10-21 10:43:26 +00:00
import sys
parser = argparse.ArgumentParser(description='''
Decompile legacy Mac resources to the Rez language. Unless the
`-ascii' flag is used, the output will match Apple's deprecated
DeRez utility. No attempt is made to access the native Mac resource
fork, but this can be worked around by appending `/..namedfork/rsrc'
to the name of the input file.
''')
parser.add_argument('resourceFile', help='file to be decompiled')
parser.add_argument('-ascii', action='store_true', help='guarantee ASCII output')
parser.add_argument('-useDF', action='store_true', help='ignored: data fork is always used')
2018-12-09 04:53:15 +00:00
parser.add_argument('-fakehdr', action='store_true', help='save 225b file header as fake resource')
2018-11-10 10:05:43 +00:00
parser.add_argument('-compcmt', action='store_true', help='helpfully comment compressed resources')
2018-10-21 10:43:26 +00:00
args = parser.parse_args()
with open(args.resourceFile, 'rb') as f:
resources = macresources.parse_file(f.read(), fake_header_rsrc=args.fakehdr)
2018-10-21 10:43:26 +00:00
try:
2018-12-09 04:53:15 +00:00
rez = macresources.make_rez_code(resources, ascii_clean=args.ascii, cmt_unsupported_attrib=args.compcmt)
2018-11-10 10:05:43 +00:00
sys.stdout.buffer.write(rez)
2018-10-21 10:43:26 +00:00
except BrokenPipeError:
pass # like we get when we pipe into head