-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtile.py
68 lines (56 loc) · 1.54 KB
/
tile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import sys
import struct
with open(sys.argv[1], 'rb') as f:
buf = f.read()
stride = 320
def get_tile(buf, tx, ty):
tile = []
for y in range(8):
row = []
for x in range(8):
yy = ty * 8 + y
xx = tx * 8 + x
ix = yy * stride + xx
px = buf[ix]
row.append(px)
tile.append(tuple(row))
return tuple(tile)
def tile_input(buf):
tiles = []
pattern = []
for ty in range(240 // 8):
for tx in range(320 // 8):
tile = get_tile(buf, tx, ty)
#if tile in tiles:
# pass
#else:
# tiles.append(tile)
#tile_ix = tiles.index(tile)
tiles.append(tile)
tile_ix = len(tiles) - 1
pattern.append(tile_ix)
return tiles, pattern
def emit_tile(tile):
for row in tile:
for ix in range(len(row) // 2):
a = row[ix * 2 + 0]
b = row[ix * 2 + 1]
c = ((a & 0xf) << 4) | ((b & 0xf) << 0)
yield c
def emit_tiles(tiles):
for tile in tiles:
yield from emit_tile(tile)
def emit_tile_data(tiles):
b = bytes(emit_tiles(tiles))
with open(sys.argv[2], 'wb') as f:
f.write(b)
def emit_pattern_data(pattern):
with open(sys.argv[3], 'wb') as f:
for ix in pattern:
assert ix < 1200, ix
b = struct.pack('>H', ix)
f.write(b)
assert len(sys.argv) == 4, len(sys.argv)
tiles, pattern = tile_input(buf)
emit_tile_data(tiles)
emit_pattern_data(pattern)