2018-10-21 10:43:26 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-01-19 06:57:08 +00:00
|
|
|
# Copyright (c) 2018-2020 Elliot Nunn
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
|
2018-10-21 10:43:26 +00:00
|
|
|
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='''
|
2018-12-11 07:48:32 +00:00
|
|
|
Decompile legacy Mac resources to the Rez language. The output will
|
|
|
|
always be compatible with Apple Rez, and unless an option
|
|
|
|
marked below with [!] is used, the output will match Apple DeRez.
|
|
|
|
No attempt is made to access the native Mac resource
|
2018-10-21 10:43:26 +00:00
|
|
|
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')
|
2018-12-09 05:19:49 +00:00
|
|
|
parser.add_argument('-ascii', action='store_true', help='[!] guarantee ASCII output')
|
2018-10-21 10:43:26 +00:00
|
|
|
parser.add_argument('-useDF', action='store_true', help='ignored: data fork is always used')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
with open(args.resourceFile, 'rb') as f:
|
2020-01-19 06:50:41 +00:00
|
|
|
resources = macresources.parse_file(f.read())
|
2018-10-21 10:43:26 +00:00
|
|
|
|
|
|
|
try:
|
2019-09-01 08:04:27 +00:00
|
|
|
rez = macresources.make_rez_code(resources, ascii_clean=args.ascii)
|
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
|