Added Mr. Mime & Farfetch'd. Fixed transparency issues.
@ -57,7 +57,7 @@ def closest_color(c, palette):
|
||||
min_d = float('inf')
|
||||
best = 0
|
||||
r1, g1, b1 = c
|
||||
for i, (r2, g2, b2) in enumerate(palette):
|
||||
for i, (r2, g2, b2) in enumerate(palette[1:], 1):
|
||||
# Color diff from https://stackoverflow.com/questions/1847092/given-an-rgb-value-what-would-be-the-best-way-to-find-the-closest-match-in-the-d
|
||||
d = ((r2-r1)*0.30)**2 + ((g2-g1)*0.59)**2 + ((b2-b1)*0.11)**2
|
||||
if d < min_d:
|
||||
@ -75,7 +75,7 @@ def apply_palette(palette_file, input_file, output_file): # Apply one file's pa
|
||||
with open(output_file, 'wb') as f:
|
||||
new_rows = []
|
||||
for row in rows:
|
||||
new_rows.append([closest_color(src_palette[c], target_palette) for c in row])
|
||||
new_rows.append([closest_color(src_palette[c], target_palette) if c else 0 for c in row])
|
||||
w = png.Writer(width=w, height=h, bitdepth=4, palette=target_palette)
|
||||
w.write(f, new_rows)
|
||||
|
||||
@ -84,14 +84,14 @@ def paletteify(path, output_path=None):
|
||||
joinp = os.path.join
|
||||
_, tail = os.path.split(path)
|
||||
species, _ = os.path.splitext(tail)
|
||||
front = png.Reader(joinp(PKMN_GRAPHICS, species.split('_')[0], species.split('_')[1], 'anim_front.png'))
|
||||
front = png.Reader(joinp(PKMN_GRAPHICS, species, 'anim_front.png'))
|
||||
front.read()
|
||||
target_palette = tuple(c[:3] for c in front.palette())
|
||||
r, g, b = target_palette[0]
|
||||
color = f'rgb({r},{g},{b})'
|
||||
# Strip alpha color
|
||||
subprocess.run(['convert', path, '-background', color, '-alpha', 'remove', output_path], check=True)
|
||||
apply_palette(joinp(PKMN_GRAPHICS, species.split('_')[0], species.split('_')[1], 'anim_front.png'), output_path, output_path)
|
||||
apply_palette(joinp(PKMN_GRAPHICS, species, 'anim_front.png'), output_path, output_path)
|
||||
|
||||
# Sprites from https://veekun.com/dex/downloads
|
||||
|
||||
@ -100,4 +100,11 @@ if __name__ == '__main__':
|
||||
if args:
|
||||
paletteify(args[0])
|
||||
else:
|
||||
stack_sprite('201-question.png', 'overworld')
|
||||
for path in sorted(glob('overworld/*.png')):
|
||||
_, tail = os.path.split(path)
|
||||
name, _ = os.path.splitext(tail)
|
||||
output_path = os.path.join('graphics/object_events/pics/pokemon', f'{name}.png')
|
||||
try:
|
||||
paletteify(path, output_path)
|
||||
except Exception as e:
|
||||
print(name, e.__class__.__name__, e, file=sys.stderr)
|
||||
|
||||
|
Before Width: | Height: | Size: 736 B After Width: | Height: | Size: 747 B |
|
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 761 B |
|
Before Width: | Height: | Size: 696 B After Width: | Height: | Size: 703 B |
|
Before Width: | Height: | Size: 722 B After Width: | Height: | Size: 733 B |
|
Before Width: | Height: | Size: 708 B After Width: | Height: | Size: 710 B |
|
Before Width: | Height: | Size: 961 B After Width: | Height: | Size: 962 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1003 B After Width: | Height: | Size: 528 B |
|
Before Width: | Height: | Size: 513 B After Width: | Height: | Size: 518 B |
|
Before Width: | Height: | Size: 692 B After Width: | Height: | Size: 700 B |
|
Before Width: | Height: | Size: 785 B After Width: | Height: | Size: 803 B |
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 630 B |
|
Before Width: | Height: | Size: 834 B After Width: | Height: | Size: 846 B |
|
Before Width: | Height: | Size: 594 B After Width: | Height: | Size: 593 B |
|
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 582 B |
|
Before Width: | Height: | Size: 869 B After Width: | Height: | Size: 890 B |
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 514 B |
|
Before Width: | Height: | Size: 948 B After Width: | Height: | Size: 950 B |
|
Before Width: | Height: | Size: 457 B After Width: | Height: | Size: 466 B |
|
Before Width: | Height: | Size: 667 B After Width: | Height: | Size: 674 B |
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 391 B |
|
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 457 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 625 B |
|
Before Width: | Height: | Size: 778 B After Width: | Height: | Size: 788 B |
|
Before Width: | Height: | Size: 654 B After Width: | Height: | Size: 653 B |
|
Before Width: | Height: | Size: 419 B After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 786 B After Width: | Height: | Size: 789 B |
|
Before Width: | Height: | Size: 635 B After Width: | Height: | Size: 624 B |
|
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 538 B |
|
Before Width: | Height: | Size: 688 B After Width: | Height: | Size: 691 B |
|
Before Width: | Height: | Size: 825 B After Width: | Height: | Size: 829 B |
|
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 730 B |
|
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 587 B |
|
Before Width: | Height: | Size: 386 B After Width: | Height: | Size: 363 B |
|
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 751 B |
BIN
graphics/object_events/pics/pokemon/farfetchd.png
Normal file
|
After Width: | Height: | Size: 570 B |
|
Before Width: | Height: | Size: 517 B After Width: | Height: | Size: 514 B |
|
Before Width: | Height: | Size: 980 B After Width: | Height: | Size: 984 B |
|
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 762 B |
|
Before Width: | Height: | Size: 933 B After Width: | Height: | Size: 933 B |
|
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 525 B |
|
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 805 B |
|
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 615 B |
|
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 398 B |
|
Before Width: | Height: | Size: 992 B After Width: | Height: | Size: 993 B |
|
Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 704 B |
|
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 585 B |
|
Before Width: | Height: | Size: 806 B After Width: | Height: | Size: 813 B |
|
Before Width: | Height: | Size: 654 B After Width: | Height: | Size: 658 B |
|
Before Width: | Height: | Size: 624 B After Width: | Height: | Size: 625 B |
|
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 544 B |
|
Before Width: | Height: | Size: 597 B After Width: | Height: | Size: 601 B |
|
Before Width: | Height: | Size: 626 B After Width: | Height: | Size: 629 B |
|
Before Width: | Height: | Size: 753 B After Width: | Height: | Size: 755 B |
|
Before Width: | Height: | Size: 563 B After Width: | Height: | Size: 566 B |
|
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 579 B After Width: | Height: | Size: 580 B |
|
Before Width: | Height: | Size: 488 B After Width: | Height: | Size: 496 B |
|
Before Width: | Height: | Size: 714 B After Width: | Height: | Size: 723 B |
|
Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 555 B |
|
Before Width: | Height: | Size: 584 B After Width: | Height: | Size: 585 B |
|
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 558 B |
|
Before Width: | Height: | Size: 708 B After Width: | Height: | Size: 711 B |
|
Before Width: | Height: | Size: 451 B After Width: | Height: | Size: 452 B |
|
Before Width: | Height: | Size: 698 B After Width: | Height: | Size: 701 B |
|
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 542 B |
|
Before Width: | Height: | Size: 899 B After Width: | Height: | Size: 879 B |
|
Before Width: | Height: | Size: 914 B After Width: | Height: | Size: 916 B |
|
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 627 B |
|
Before Width: | Height: | Size: 398 B After Width: | Height: | Size: 405 B |
|
Before Width: | Height: | Size: 724 B After Width: | Height: | Size: 730 B |
|
Before Width: | Height: | Size: 566 B After Width: | Height: | Size: 570 B |
|
Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 639 B |
|
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 480 B |
|
Before Width: | Height: | Size: 798 B After Width: | Height: | Size: 807 B |
|
Before Width: | Height: | Size: 463 B After Width: | Height: | Size: 463 B |
|
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 549 B |
|
Before Width: | Height: | Size: 792 B After Width: | Height: | Size: 815 B |
|
Before Width: | Height: | Size: 736 B After Width: | Height: | Size: 737 B |
BIN
graphics/object_events/pics/pokemon/mr_mime.png
Normal file
|
After Width: | Height: | Size: 687 B |
|
Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 672 B |
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 419 B |
|
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 436 B |
|
Before Width: | Height: | Size: 571 B After Width: | Height: | Size: 572 B |
|
Before Width: | Height: | Size: 703 B After Width: | Height: | Size: 701 B |
|
Before Width: | Height: | Size: 1018 B After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 734 B |
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 425 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 833 B |
|
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 395 B |
|
Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 723 B |
|
Before Width: | Height: | Size: 427 B After Width: | Height: | Size: 436 B |
|
Before Width: | Height: | Size: 526 B After Width: | Height: | Size: 537 B |
|
Before Width: | Height: | Size: 681 B After Width: | Height: | Size: 689 B |
|
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 624 B |