X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fconstants.py;h=486eacbf86033171e4d91d355890c783f1eb5515;hb=9f380d76b4ed0c8aaef84fc783e91003ad485c93;hp=1205b0bc5bf7a1da2e94d878d51a1beea604936e;hpb=a97bdc61b9c4049e2aa20278c814b8bb8b8273cc;p=naja.git diff --git a/naja/constants.py b/naja/constants.py index 1205b0b..486eacb 100644 --- a/naja/constants.py +++ b/naja/constants.py @@ -78,6 +78,7 @@ BOARD_SIZE = (5 * TILE_SIZE[0], 5 * TILE_SIZE[1]) BIT_SIZE = (5 * TILE_SIZE[0], (SCREEN[1] - 5 * TILE_SIZE[1]) // 2) INFO_SIZE = (SCREEN[0] - 5 * TILE_SIZE[0], SCREEN[1]) INFO_LEFT_PADDING = 18 +INFO_RIGHT_PADDING = 18 PLAYER_SIZE = (64, 96) ACTION_TEXT_OFFSET = 20 @@ -143,12 +144,20 @@ ACTION_GLYPHS = AttrDict({ 'WINTOKEN': 'glyphs/win.png', 'MSB': 'glyphs/msb.png', 'NOTHING': 'glyphs/do_nothing.png', + 'SHIFT_LEFT': 'glyphs/shift_left.png', + 'SHIFT_RIGHT': 'glyphs/shift_right.png', }) -TUNES = [ - 'ants.ogg', - 'python.ogg', - 'death_on_a_b.ogg', - 'scape.ogg', - 'another_beek.ogg', - ] +TUNES = ( + 'ants.ogg', + 'python.ogg', + 'death_on_a_b.ogg', + 'scape.ogg', + 'another_beek.ogg', +) + +# Puzzles, because resources can't give us file lists +PUZZLES = ( + 'chess', + 'marathon', +)