mirror of
https://github.com/option8/RetroConnector.git
synced 2025-02-18 13:31:06 +00:00
79 lines
2.6 KiB
Python
79 lines
2.6 KiB
Python
# KansasFest 2015
|
|
# HackFest Entry: Disk Images Images
|
|
# By Charles Mangin
|
|
# @RetroConnector
|
|
|
|
# requires ImageMagick: http://www.imagemagick.org/
|
|
# and python PNG module: https://pypi.python.org/pypi/pypng
|
|
|
|
|
|
import os,sys # filesystem functions
|
|
import png # PNG image library
|
|
|
|
try:
|
|
INPUTFILE = sys.argv[1] # what DSK file to parse
|
|
DSK = open(INPUTFILE, "rb") # open the DSK file for reading
|
|
except:
|
|
print("\n\nUsage: python [filename]\n\n [filename] should be a DSK file of 143kb.\n\n")
|
|
sys.exit(0) # exit on exception - no file chosen
|
|
finally:
|
|
|
|
PNG = open("DiskImageTEMP.png", "wb") # open a PNG for writing
|
|
|
|
# The point: Make a PNG image from the data on a floppy disk image.
|
|
# 35 tracks, each with 16 sectors of 256 bytes each, for a total of 143,360 bytes
|
|
# so 35 lines of 4096 px.
|
|
|
|
# new, empty arrays
|
|
BYTES = []
|
|
PIXELS = []
|
|
|
|
try:
|
|
byte = DSK.read(1) # read a byte
|
|
while byte !="": # while the file still has bytes in it
|
|
byte = DSK.read(1)
|
|
if len(byte) > 0: # the last byte, for whatever reason, is length 0. Bah.
|
|
BYTES.append(ord(byte)) # append the number representing the byte (0-255) to the BYTES array
|
|
|
|
except:
|
|
print("\n\nOops. Is " + INPUTFILE + " a DSK file of 143kb?\n\n")
|
|
sys.exit(0) # exit on exception - file is empty, etc
|
|
finally:
|
|
|
|
sys.stdout.write("\r Starting.\n\n")
|
|
|
|
|
|
for TRACK in range(0,35,1): # for each of the 35 tracks
|
|
LINE=[] # start a new line of pixels
|
|
for SECTOR in range(0,4096,1): # write the bytes for the sectors in that track to the line array
|
|
offset = (SECTOR * TRACK) + SECTOR
|
|
LINE.append(BYTES[(SECTOR * TRACK) + SECTOR])
|
|
|
|
sys.stdout.write("\r Track: " + str(TRACK))
|
|
sys.stdout.flush()
|
|
PIXELS.append(LINE) # add the array of pixels to the array of arrays
|
|
|
|
sys.stdout.write("\n\n\r Done.\n\n")
|
|
sys.stdout.flush()
|
|
|
|
# write to the PNG file
|
|
w = png.Writer(4096,35, greyscale=True, bitdepth=8)
|
|
w.write(PNG, PIXELS) # each number in the array becomes a pixel in the image. each array becomes a line.
|
|
|
|
sys.stdout.write("\n\n\r Writing to disk. Chunka-chunk-cka. Whirr.\n\n")
|
|
sys.stdout.flush()
|
|
|
|
|
|
DSK.close() # done with these files. close them.
|
|
PNG.close()
|
|
|
|
|
|
OUTPUTFILE = os.path.join(INPUTFILE + ".png")
|
|
# set a destination file same as DSK, but with PNG extension
|
|
|
|
os.system('convert DiskImageTEMP.png -matte -virtual-pixel transparent -resize 1024x1024! -rotate 90 -distort Polar \'512 110 512,512 -180,180\' ' + OUTPUTFILE)
|
|
# convert the 4096x35px image to a square, rotate, then rotate around an axis.
|
|
|
|
os.system('open ' + OUTPUTFILE) # opens the resulting image in the default image viewer (Preview.app)
|
|
|