mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
38 lines
928 B
Python
Executable File
38 lines
928 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys, array, string
|
|
|
|
|
|
def tohex2(v):
|
|
return '0x%02x'%v
|
|
|
|
with open(sys.argv[1],'rb') as f:
|
|
data = array.array('B', f.read())
|
|
assert data[0] == 0xa
|
|
assert data[3] == 8
|
|
|
|
# palette
|
|
print "byte palette[16] = {",
|
|
for i in range(0,16):
|
|
r = data[16+i*3]
|
|
g = data[17+i*3]
|
|
b = data[18+i*3]
|
|
entry = (r>>5) | ((g>>2)&0x38) | (b&0xc0)
|
|
print '%s,' % (tohex2(entry)),
|
|
print "}"
|
|
|
|
# image data
|
|
width = (data[9] << 8) + data[8] + 1
|
|
height = (data[11] << 8) + data[10] + 1
|
|
rowlen = (data[0x43] << 8) + data[0x42]
|
|
print "%d,%d," % ((width+1)/2,height)
|
|
for y in range(0,height):
|
|
ofs = 0x80 + y*rowlen
|
|
output = []
|
|
for x in range(0,width,2):
|
|
b = (data[ofs] << 4) + (data[ofs+1])
|
|
output.append(b)
|
|
ofs += 2
|
|
print string.join(map(tohex2,output),',') + ','
|
|
|