mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Export any detected palettes to png by default
Checks for any palette using the same name as the 2bpp file.
This commit is contained in:
parent
ad0578fda0
commit
7f7f461240
@ -1430,13 +1430,16 @@ def mass_to_png(debug=False):
|
|||||||
to_png(os.path.join(root, name))
|
to_png(os.path.join(root, name))
|
||||||
|
|
||||||
def mass_to_colored_png(debug=False):
|
def mass_to_colored_png(debug=False):
|
||||||
# greyscale
|
# greyscale, unless a palette is detected
|
||||||
for root, dirs, files in os.walk('../gfx/'):
|
for root, dirs, files in os.walk('../gfx/'):
|
||||||
if 'pics' not in root and 'trainers' not in root:
|
if 'pics' not in root and 'trainers' not in root:
|
||||||
for name in files:
|
for name in files:
|
||||||
if debug: print os.path.splitext(name), os.path.join(root, name)
|
if debug: print os.path.splitext(name), os.path.join(root, name)
|
||||||
if os.path.splitext(name)[1] == '.2bpp':
|
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
|
# only monster and trainer pics for now
|
||||||
for root, dirs, files in os.walk('../gfx/pics/'):
|
for root, dirs, files in os.walk('../gfx/pics/'):
|
||||||
@ -1451,7 +1454,7 @@ def mass_to_colored_png(debug=False):
|
|||||||
for name in files:
|
for name in files:
|
||||||
if debug: print os.path.splitext(name), os.path.join(root, name)
|
if debug: print os.path.splitext(name), os.path.join(root, name)
|
||||||
if os.path.splitext(name)[1] == '.2bpp':
|
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):
|
def mass_decompress(debug=False):
|
||||||
|
Loading…
Reference in New Issue
Block a user