2018-01-04 02:49:03 +00:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# If we can open fname, then return its data; otherwise, raise an exception
|
|
|
|
def file_data(fname):
|
|
|
|
with open(fname, 'r') as f:
|
|
|
|
return f.read()
|
|
|
|
raise Exception("failed to read file %s" % (fname))
|
|
|
|
|
|
|
|
# This is "header" field of the objstore struct.
|
|
|
|
data = 'hope'
|
|
|
|
|
|
|
|
# These must be appended in the exact order indicated by the struct definition
|
|
|
|
# in objstore.h
|
2018-01-28 01:54:19 +00:00
|
|
|
data += file_data('./data/apple2e.rom') # Internal ROM ($C000..$FFFF)
|
2018-01-15 23:10:27 +00:00
|
|
|
data += file_data('./data/peripheral.rom') # $C000..$CFFF
|
2018-01-24 20:26:28 +00:00
|
|
|
|
|
|
|
# The apple2 fonts
|
2018-01-04 02:49:03 +00:00
|
|
|
data += file_data('./fonts/apple2-system.bmp')
|
2018-01-24 20:26:28 +00:00
|
|
|
data += file_data('./fonts/apple2-inverse.bmp')
|
2018-01-04 02:49:03 +00:00
|
|
|
|
|
|
|
# Let's not keep calling len(data) since we know it won't change over our
|
|
|
|
# iterations
|
|
|
|
data_len = len(data)
|
|
|
|
|
|
|
|
# This just defines the variable name for the store data
|
|
|
|
sys.stdout.write("static unsigned char store_data[] =\n")
|
|
|
|
|
|
|
|
# This loop will write out a series of 16 characters given in hexadecimal
|
|
|
|
# escape, preceded by a quote and ending in a quote. C will automatically
|
|
|
|
# append literal strings when given one after another with no other punctuation
|
|
|
|
# (e.g. "abc" "def" is equivalent to "abcdef"). The first sys.stdout.write()
|
|
|
|
# will start us off with the first line's quote mark.
|
|
|
|
sys.stdout.write('"')
|
|
|
|
for i in range(0, data_len):
|
|
|
|
sys.stdout.write("\\x%02x" % (ord(data[i])))
|
|
|
|
if i == data_len - 1:
|
|
|
|
break
|
|
|
|
if i > 0 and (i+1) % 16 == 0:
|
2018-01-08 22:19:41 +00:00
|
|
|
sys.stdout.write('" // %06x\n"' % (i))
|
2018-01-04 02:49:03 +00:00
|
|
|
|
|
|
|
# And we're about done; finish with the last quote, and then terminate with a
|
|
|
|
# semicolon.
|
|
|
|
sys.stdout.write('";')
|
|
|
|
|
|
|
|
# vim:ft=python:
|