From ad0578fda0aec42c28e3db26bbf68d06aa19f63e Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 12 Feb 2013 03:17:05 -0500 Subject: [PATCH 1/2] Fix png export orientation A quirk of the Decompressed class dissociated the orientation from the output attribute. The makefile no longer suppresses output since it's still relevant. --- Makefile | 12 ++++++------ extras/gfx.py | 2 ++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index bb1b14d90..ab95414e3 100644 --- a/Makefile +++ b/Makefile @@ -38,18 +38,18 @@ pokecrystal.gbc: pokecrystal.o cmp baserom.gbc $@ -@lzs: ${VERTGFX} ${HORIZGFX} +lzs: ${VERTGFX} ${HORIZGFX} -@pngs: +pngs: cd extras; python gfx.py mass-decompress; python gfx.py dump-pngs -@front.png: tiles.png +front.png: tiles.png cd extras; python gfx.py png-to-lz --front $@ $(OBJECT_DIRECTORY)/tiles.2bpp -@tiles.png: +tiles.png: cd extras; python gfx.py png-to-2bpp $@ -@.png: ${VERTGFX} +.png: ${VERTGFX} cd extras; python gfx.py png-to-lz --vert $@ -@.png: ${HORIZGFX} +.png: ${HORIZGFX} cd extras; python gfx.py png-to-lz $@ diff --git a/extras/gfx.py b/extras/gfx.py index c641ab7f1..d2e2abfb6 100644 --- a/extras/gfx.py +++ b/extras/gfx.py @@ -610,6 +610,8 @@ class Decompressed: self.tiles = transpose(self.tiles) self.pic = connect(self.tiles) + self.output = self.pic + self.animtiles + def decompress(self): """replica of crystal's decompression""" From 7f7f4612404b6c898d4cb50fb4468580dbd46910 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 12 Feb 2013 03:40:41 -0500 Subject: [PATCH 2/2] Export any detected palettes to png by default Checks for any palette using the same name as the 2bpp file. --- extras/gfx.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/extras/gfx.py b/extras/gfx.py index d2e2abfb6..3aa98b3ca 100644 --- a/extras/gfx.py +++ b/extras/gfx.py @@ -1430,13 +1430,16 @@ def mass_to_png(debug=False): to_png(os.path.join(root, name)) def mass_to_colored_png(debug=False): - # greyscale + # greyscale, unless a palette is detected for root, dirs, files in os.walk('../gfx/'): if 'pics' not in root and 'trainers' not in root: for name in files: if debug: print os.path.splitext(name), os.path.join(root, name) if os.path.splitext(name)[1] == '.2bpp': - to_png(os.path.join(root, name)) + if name[:5]+'.pal' in files: + to_png(os.path.join(root, name), None, os.path.join(root, name[:-5]+'.pal')) + else: + to_png(os.path.join(root, name)) # only monster and trainer pics for now for root, dirs, files in os.walk('../gfx/pics/'): @@ -1451,7 +1454,7 @@ def mass_to_colored_png(debug=False): for name in files: if debug: 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')) + to_png(os.path.join(root, name), None, os.path.join(root, name[:-5]+'.pal')) def mass_decompress(debug=False):