diff options
| author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2023-04-06 12:32:23 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-06 12:32:23 +0200 | 
| commit | d1c00c98ca0f2ca498284e60fa057a610cc5c461 (patch) | |
| tree | a2efebcb9917d7f4f3666a722338f50b9590e843 /scripts/tilemap2png | |
| parent | 1771aaa12736b4dbc24419270cf595de6d345969 (diff) | |
| parent | 93e9426d5642dfab7a13d5a34873b296de1d9642 (diff) | |
Merge pull request #58 from UnavailableDev/dev
Dynamic tilemap
Diffstat (limited to 'scripts/tilemap2png')
| -rwxr-xr-x | scripts/tilemap2png | 47 | 
1 files changed, 47 insertions, 0 deletions
diff --git a/scripts/tilemap2png b/scripts/tilemap2png new file mode 100755 index 0000000..e37bfab --- /dev/null +++ b/scripts/tilemap2png @@ -0,0 +1,47 @@ +#!/bin/python3 +# read packed tilemap file from stdin and output png on stdout + +import sys +import io +import struct +from PIL import Image + +color_map = ( +	(0x00, 0x00, 0x00), +	(0x24, 0x24, 0x24), +	(0x49, 0x49, 0x49), +	(0x6d, 0x6d, 0x6d), +	(0x92, 0x92, 0x92), +	(0xb6, 0xb6, 0xb6), +	(0xda, 0xda, 0xda), +	(0xff, 0xff, 0xff), +) + +buf = [] +for byte in sys.stdin.buffer.read(): +	buf.append(byte) + +size_horizontal = 16 * 16 +size_vertical = ((len(buf) // 104) // 16 + 1) * 16 +img = Image.new('RGB', (size_horizontal, size_vertical)) + +i = 0 +sprite_idx = 0 +for x in range(0, len(buf), 2): +	word = 0x0000 +	word |= buf[x] +	word |= buf[x+1] << 8 + +	for p in range(5): +		img.putpixel(((i % 16) + (16 * (sprite_idx % 16)), (i // 16) + (16 * (sprite_idx // 16))), color_map[(word >> (p * 3)) & 0b111]) +		i += 1 +		if i > 0xff: +			i = 0 +			sprite_idx += 1 +			break + +with io.BytesIO() as out: +	img.save(out, format="PNG") +	sys.stdout.buffer.write(out.getvalue()) +	sys.stdout.buffer.flush() +  |