X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fconstants.py;h=d93b45cf8a4b652b5d0d27f40eb59ad04752ea17;hb=0cef06f581d48315a59a19ac06ca1d2be14cbb4c;hp=f723fc24af850e2f6e20b519cf3abf8973d6920a;hpb=2e101a5b1f6b271358fc2dbb56fc1fe6d0d53f37;p=naja.git diff --git a/naja/constants.py b/naja/constants.py index f723fc2..d93b45c 100644 --- a/naja/constants.py +++ b/naja/constants.py @@ -5,9 +5,9 @@ from naja.attrdict import AttrDict SCREEN = (800, 600) FPS = 40 -FONT = '4x6.pcf' +FONT = '8x13.pcf' FONT_SIZE = 16 -EIGHT_BIT_SCALE = 4 +EIGHT_BIT_SCALE = 2 DEFAULTS = dict( debug=False, @@ -56,9 +56,8 @@ INFO_SIZE = (SCREEN[0] - 5 * TILE_SIZE[0], SCREEN[1]) PLAYER_SIZE = (64, 96) # Player States -MOVE = 1 -ACT = 2 -EXAMINE = 3 +ACT = 1 +EXAMINE = 2 KEYS = AttrDict({ 'UP': (pgl.K_UP, pgl.K_w, pgl.K_COMMA),