comparison gamelib/constants.py @ 96:50f8476aa929

Some milestones.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 09 May 2012 21:43:04 +0200
parents a40a76012bd7
children 7cd716328a44
comparison
equal deleted inserted replaced
95:0f437e0584f7 96:50f8476aa929
12 BUFFER = 1024 12 BUFFER = 1024
13 13
14 # Result codes for UI hints 14 # Result codes for UI hints
15 (MAJOR_SETBACK, FAILURE, SUCCESS, MAJOR_SUCCESS, GAME_WIN, NEW_SCIENCE, 15 (MAJOR_SETBACK, FAILURE, SUCCESS, MAJOR_SUCCESS, GAME_WIN, NEW_SCIENCE,
16 NEW_SCHEMATIC) = range(7) 16 NEW_SCHEMATIC) = range(7)
17
18 # Planning to take over the:
19 MILESTONES = ("basement", "neighbourhood", "city", "world")
20 M_VALS = dict((name, i) for i, name in enumerate(MILESTONES))