view gamelib/constants.py @ 232:75033f790e7d

Remove hooks for sound support - we can add them back easily enough later
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 23:37:24 +0200
parents 80cce62f29fb
children
line wrap: on
line source

# The usual game constants

WIDTH = 800
HEIGHT = 600
SCREEN = (WIDTH, HEIGHT)
FPS = 30

WINDOW_ICON = "icons/icon_24.png"

# Result codes for UI hints
(MAJOR_SETBACK, FAILURE, SUCCESS, MAJOR_SUCCESS, GAME_WIN, INFO) = range(6)

# Planning to take over the:
MILESTONES = ("basement", "neighbourhood", "city", "world")
M_VALS = dict((name, i) for i, name in enumerate(MILESTONES))