HiSprite/HiSprite.py

335 lines
8.5 KiB
Python
Executable File

#!/usr/bin/python
import sys,os,png
import argparse
class Colors:
black,magenta,green,orange,blue,white,key = range(7)
def main(argv):
parser = argparse.ArgumentParser(description="Sprite compiler for 65C02/6502 to generate assembly code to render all shifts of the given sprite, optionally with exclusive-or drawing (if background will be non-black). Generated code has conditional compilation directives for the CC65 assembler to allow the same file to be compiled for either architecture.")
parser.add_argument("-v", "--verbose", default=0, action="count")
parser.add_argument("-t", "--tables", action="store_true", default=False, help="output only lookup tables for horizontal sprite shifts (division and modulus 7)")
parser.add_argument("-x", "--xdraw", action="store_true", default=False, help="use XOR for sprite drawing")
parser.add_argument("-b", "--black", action="store_true", default=False, help="render a black rectangle sized to erase the sprite")
parser.add_argument("files", metavar="IMAGE", nargs="+", help="a PNG image [or a list of them]. PNG files must not have an alpha channel!")
options, extra_args = parser.parse_known_args()
if options.tables:
printHorizontalLookup()
exit(0)
for pngfile in options.files:
process(pngfile, options.xdraw, options.black)
def process(pngfile, xdraw=False, black=False):
reader = png.Reader(pngfile)
try:
pngdata = reader.asRGB8()
except:
usage()
width = pngdata[0]
height = pngdata[1]
pixelData = list(pngdata[2])
byteWidth = width/2+1+1 # TODO: Calculate a power of two for this
niceName = os.path.splitext(pngfile)[0].upper()
if black:
niceName = "BLACK"
disclaimer()
# Prologue
print "%s: ;%d bytes per row" % (niceName,byteWidth)
print "\tSAVE_AXY"
print "\tldy PARAM0"
print "\tldx MOD7_2,y"
print ".ifpC02"
print "\tjmp (%s_JMP,x)\n" % (niceName)
offset_suffix = ""
# Bit-shift jump table for 65C02
print "%s_JMP:" % (niceName)
for shift in range(0,7):
print "\t.addr %s_SHIFT%d" % (niceName,shift)
print ".else"
# Fast jump table routine; faster and smaller than self-modifying code
print "\tlda %s_JMP+1,x" % (niceName)
print "\tpha"
print "\tlda %s_JMP,x" % (niceName)
print "\tpha"
print "\trts\n"
# Bit-shift jump table for generic 6502
print "%s_JMP:" % (niceName)
for shift in range(0,7):
print "\t.addr %s_SHIFT%d-1" % (niceName,shift)
print ".endif"
# Blitting functions
print "\n"
for shift in range(0,7):
# Track cycle count of the blitter (only accurate for 65C02 at the moment). We start with fixed overhead:
# SAVE_AXY + RESTORE_AXY + rts + sprite jump table
cycleCount = 9 + 12 + 6 + 3 + 4 + 6
print "%s_SHIFT%d:" % (niceName,shift)
print "\tldx PARAM1"
cycleCount += 3
rowStartCode,extraCycles = rowStartCalculatorCode();
print rowStartCode
cycleCount += extraCycles
spriteChunks = layoutSpriteChunk(pixelData,width,height,shift,xdraw,black,cycleCount)
for row in range(height):
for chunkIndex in range(len(spriteChunks)):
print spriteChunks[chunkIndex][row]
print "\n"
def layoutSpriteChunk(pixelData,width,height,shift,xdraw,black,cycleCount):
colorStreams = byteStreamsFromPixels(pixelData,width,height,shift,bitsForColor,highBitForColor)
maskStreams = byteStreamsFromPixels(pixelData,width,height,shift,bitsForMask,highBitForMask)
code = generateBlitter(colorStreams,maskStreams,height,xdraw,black,cycleCount)
return code
def byteStreamsFromPixels(pixelData,width,height,shift,bitDelegate,highBitDelegate):
byteStreams = ["" for x in range(height)]
byteWidth = width/2+1+1
for row in range(height):
bitStream = ""
# Compute raw bitstream for row from PNG pixels
for pixelIndex in range(width):
pixel = pixelColor(pixelData,row,pixelIndex)
bitStream += bitDelegate(pixel)
# Shift bit stream as needed
bitStream = shiftStringRight(bitStream,shift)
bitStream = bitStream[:byteWidth*8]
# Split bitstream into bytes
bitPos = 0
byteSplits = [0 for x in range(byteWidth)]
for byteIndex in range(byteWidth):
remainingBits = len(bitStream) - bitPos
bitChunk = ""
if remainingBits < 0:
bitChunk = "0000000"
else:
if remainingBits < 7:
bitChunk = bitStream[bitPos:]
bitChunk += fillOutByte(7-remainingBits)
else:
bitChunk = bitStream[bitPos:bitPos+7]
bitChunk = bitChunk[::-1]
# Determine palette bit from first pixel on each row
highBit = highBitDelegate(pixelData,row,width)
byteSplits[byteIndex] = highBit + bitChunk
bitPos += 7
byteStreams[row] = byteSplits;
return byteStreams
def generateBlitter(colorStreams,maskStreams,height,xdraw,black,baseCycleCount):
byteWidth = len(colorStreams[0])
spriteChunks = [["" for y in range(height)] for x in range(byteWidth)]
cycleCount = baseCycleCount
optimizationCount = 0
for row in range(height):
byteSplits = colorStreams[row]
# Generate blitting code
for chunkIndex in range(len(byteSplits)):
# Optimization
if byteSplits[chunkIndex] != "00000000" and \
byteSplits[chunkIndex] != "10000000":
# Store byte into video memory
if xdraw: # Option to exclusive-or pixels into background
spriteChunks[chunkIndex][row] = \
"\tlda (SCRATCH0),y\n" + \
"\teor #%%%s\n" % byteSplits[chunkIndex] + \
"\tsta (SCRATCH0),y\n";
cycleCount += 5 + 2 + 6
else:
if black: # Option to write "black-out" pixels instead
spriteChunks[chunkIndex][row] = \
"\tlda #0\n" + \
"\tsta (SCRATCH0),y\n";
cycleCount += 2 + 6
else: # Regular blitting
spriteChunks[chunkIndex][row] = \
"\tlda #%%%s\n" % byteSplits[chunkIndex] + \
"\tsta (SCRATCH0),y\n";
cycleCount += 2 + 6
else:
optimizationCount += 1
# Increment indices
if chunkIndex == len(byteSplits)-1:
spriteChunks[chunkIndex][row] += "\n"
else:
spriteChunks[chunkIndex][row] += "\tiny"
cycleCount += 2
# Finish the row
if row<height-1:
rowStartCode,extraCycles = rowStartCalculatorCode()
spriteChunks[chunkIndex][row] += "\tinx\n" + rowStartCode;
cycleCount += 2 + extraCycles
else:
spriteChunks[chunkIndex][row] += "\tRESTORE_AXY\n"
spriteChunks[chunkIndex][row] += "\trts\t;Cycle count: %d, Optimized %d rows." % (cycleCount,optimizationCount) + "\n"
return spriteChunks
def rowStartCalculatorCode():
return \
"\tlda HGRROWS_H1,x\n" + \
"\tsta SCRATCH1\n" + \
"\tlda HGRROWS_L,x\n" + \
"\tsta SCRATCH0\n" + \
"\tldy PARAM0\n" + \
"\tlda DIV7_2,y\n" + \
"\ttay\n", 4 + 3 + 4 + 3 + 3 + 4 + 2;
def fillOutByte(numBits):
filler = ""
for bit in range(numBits):
filler += "0"
return filler
def shiftStringRight(string,shift):
if shift==0:
return string
shift *=2
result = ""
for i in range(shift):
result += "0"
result += string
return result
def bitsForColor(pixel):
if pixel == Colors.black:
return "00"
else:
if pixel == Colors.white:
return "11"
else:
if pixel == Colors.green or pixel == Colors.orange:
return "01"
# blue or magenta
return "10"
def bitsForMask(pixel):
if pixel == Colors.black:
return "00"
return "11"
def highBitForColor(pixelData,rowIndex,width):
for pixelIndex in range(width):
pixel = pixelColor(pixelData,rowIndex,pixelIndex)
# Note that we prefer high-bit white because blue fringe is less noticeable than magenta.
if pixel == Colors.orange or pixel == Colors.blue or pixel == Colors.white:
return "1"
return "0"
def highBitForMask(pixelData,rowIndex,width):
return "1"
def pixelColor(pixelData,row,col):
r = pixelData[row][col*3]
g = pixelData[row][col*3+1]
b = pixelData[row][col*3+2]
color = Colors.black
if r==255 and g==0 and b==255:
color = Colors.magenta
else:
if r==0 and g==255 and b==0:
color = Colors.green
else:
if r==0 and g==0 and b==255:
color = Colors.blue
else:
if r==255 and g>0 and b==0:
color = Colors.orange
else:
if r==255 and g==255 and b==255:
color = Colors.white
else:
if r==g and r==b and r!=0 and r!=255: # Any gray is chroma key
color = Colors.key
return color
def printHorizontalLookup():
disclaimer()
print "DIV7_2:"
for pixel in range(140):
print "\t.byte $%02x" % ((pixel / 7)*2)
print "\n\nMOD7_2:"
for pixel in range(140):
print "\t.byte $%02x" % ((pixel % 7)*2)
def disclaimer():
print '''
; This file was generated by HiSprite.py, a sprite compiler by Quinn Dunki.
; If you feel the need to modify this file, you are probably doing it wrong.
'''
return
if __name__ == "__main__":
main(sys.argv[1:])