diff options
author | yenatch <yenatch@github.com> | 2013-02-09 06:28:49 -0500 |
---|---|---|
committer | yenatch <yenatch@github.com> | 2013-02-11 04:12:59 -0500 |
commit | f0d60d72f7da22975e31fc785b034fb4d9185c1c (patch) | |
tree | b8ff6a04d23902fa7d9984f8b908e30580a708a3 /gfx.py | |
parent | a8876bffc3ad064d2f580396639a141303d00a64 (diff) |
Infrastructure to dump pngs for 2bpp graphics
original-commit-id: 80600f929193208e435e6ce833e4207a6cd5a382
Diffstat (limited to 'gfx.py')
-rw-r--r-- | gfx.py | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -1397,6 +1397,34 @@ def png_to_lz(filein): 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 __name__ == "__main__": 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) |