annotate gamelib/constants.py @ 241:f5d9a063013b

Fail very long equipment lists automatically
author Neil Muller <drnlmuller@gmail.com>
date Sun, 13 May 2012 00:16:44 +0200
parents 75033f790e7d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
48
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 # The usual game constants
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2
147
3d24b18d1785 Screen size back to 800x600.
Jeremy Thurgood <firxen@gmail.com>
parents: 143
diff changeset
3 WIDTH = 800
3d24b18d1785 Screen size back to 800x600.
Jeremy Thurgood <firxen@gmail.com>
parents: 143
diff changeset
4 HEIGHT = 600
48
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
5 SCREEN = (WIDTH, HEIGHT)
a2980cc9a060 Factor out some constants
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
6 FPS = 30
61
a253fae32a6f Add no-sound option (slow shutdown bug workaround)
Neil Muller <drnlmuller@gmail.com>
parents: 48
diff changeset
7
163
80cce62f29fb Add placeholder icons for now
Neil Muller <drnlmuller@gmail.com>
parents: 147
diff changeset
8 WINDOW_ICON = "icons/icon_24.png"
80cce62f29fb Add placeholder icons for now
Neil Muller <drnlmuller@gmail.com>
parents: 147
diff changeset
9
80
a40a76012bd7 Refactor message handling so we can deal with in the gui
Neil Muller <drnlmuller@gmail.com>
parents: 61
diff changeset
10 # Result codes for UI hints
138
14917385a0fd Better handling of mission results and turn-end messages.
Jeremy Thurgood <firxen@gmail.com>
parents: 123
diff changeset
11 (MAJOR_SETBACK, FAILURE, SUCCESS, MAJOR_SUCCESS, GAME_WIN, INFO) = range(6)
96
50f8476aa929 Some milestones.
Jeremy Thurgood <firxen@gmail.com>
parents: 80
diff changeset
12
50f8476aa929 Some milestones.
Jeremy Thurgood <firxen@gmail.com>
parents: 80
diff changeset
13 # Planning to take over the:
50f8476aa929 Some milestones.
Jeremy Thurgood <firxen@gmail.com>
parents: 80
diff changeset
14 MILESTONES = ("basement", "neighbourhood", "city", "world")
50f8476aa929 Some milestones.
Jeremy Thurgood <firxen@gmail.com>
parents: 80
diff changeset
15 M_VALS = dict((name, i) for i, name in enumerate(MILESTONES))