ref: 80600f929193208e435e6ce833e4207a6cd5a382
parent: e7762890aac4da72e75c7e7365c1cd924dadbc85
author: yenatch <[email protected]>
date: Sat Feb 9 01:28:49 EST 2013
Infrastructure to dump pngs for 2bpp graphics
--- a/extras/gfx.py
+++ b/extras/gfx.py
@@ -1397,6 +1397,34 @@
to_file(name+'.lz', Compressed(image).output)
+
+
+def mass_to_png():
+ # greyscale
+ for root, dirs, files in os.walk('../gfx/'):
+ for name in files:
+ print os.path.splitext(name), os.path.join(root, name)
+ if os.path.splitext(name)[1] == '.2bpp':
+ to_png(os.path.join(root, name))
+
+def mass_to_colored_png():
+ # only monster and trainer pics for now
+ for root, dirs, files in os.walk('../gfx/pics/'):
+ for name in files:
+ print os.path.splitext(name), os.path.join(root, name)
+ if os.path.splitext(name)[1] == '.2bpp':
+ if 'normal.pal' in files:
+ to_png(os.path.join(root, name), None, os.path.join(root, 'normal.pal'))
+ else:
+ to_png(os.path.join(root, name))
+ for root, dirs, files in os.walk('../gfx/trainers/'):
+ for name in files:
+ print os.path.splitext(name), os.path.join(root, name)
+ if os.path.splitext(name)[1] == '.2bpp':
+ to_png(os.path.join(root, name), None, os.path.join(root, name[:-5] + '.pal'))
+
+
+
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('cmd', nargs='?', metavar='cmd', type=str)
@@ -1486,7 +1514,7 @@
if '.2bpp' in args.arg1:
if args.arg3 == 'greyscale':
- to_png(args.arg1, args.arg2)
+ to_png(args.arg1, args.arg2)http://i.imgur.com/BMHkNuC.png
else:
to_png(args.arg1, args.arg2, args.arg3)