aboutsummaryrefslogtreecommitdiff
path: root/experiments/conv/consts.py
diff options
context:
space:
mode:
Diffstat (limited to 'experiments/conv/consts.py')
-rw-r--r--experiments/conv/consts.py38
1 files changed, 22 insertions, 16 deletions
diff --git a/experiments/conv/consts.py b/experiments/conv/consts.py
index 898bd3d..e50c51a 100644
--- a/experiments/conv/consts.py
+++ b/experiments/conv/consts.py
@@ -1,18 +1,24 @@
+DS_TILE_SIZE = 8
+TILE_BYTES = 32 # tiles are stored in 32 bytes chunks
+
+TILES_HORIZONTAL = 32
+
PICTOCHAT_PALETTE = (
- (0xff, 0xff, 0xff),
- (0x00, 0x00, 0x00),
- (0xd3, 0xcb, 0xc3),
- (0xeb, 0x00, 0xeb),
- (0xfb, 0x00, 0x8a),
- (0xfb, 0x00, 0x28),
- (0xfb, 0x49, 0x00),
- (0xfb, 0xa2, 0x00),
- (0xe3, 0xf3, 0x00),
- (0x82, 0xfb, 0x00),
- (0x10, 0xfb, 0x20),
- (0x00, 0xfb, 0xba),
- (0x00, 0xc3, 0xfb),
- (0x00, 0x79, 0xfb),
- (0x00, 0x30, 0xfb),
- (0x28, 0x00, 0xfb),
+ (0xff, 0xff, 0xff),
+ (0x00, 0x00, 0x00),
+ (0xd3, 0xcb, 0xc3),
+ (0xeb, 0x00, 0xeb),
+ (0xfb, 0x00, 0x8a),
+ (0xfb, 0x00, 0x28),
+ (0xfb, 0x49, 0x00),
+ (0xfb, 0xa2, 0x00),
+ (0xe3, 0xf3, 0x00),
+ (0x82, 0xfb, 0x00),
+ (0x10, 0xfb, 0x20),
+ (0x00, 0xfb, 0xba),
+ (0x00, 0xc3, 0xfb),
+ (0x00, 0x79, 0xfb),
+ (0x00, 0x30, 0xfb),
+ (0x28, 0x00, 0xfb),
)
+