comparison gamelib/constants.py @ 123:7cd716328a44

Take over the neighbourgood!
author Jeremy Thurgood <firxen@gmail.com>
date Thu, 10 May 2012 02:37:02 +0200
parents 50f8476aa929
children 14917385a0fd
comparison
equal deleted inserted replaced
122:acf3af761bbc 123:7cd716328a44
11 CHANNELS = 2 11 CHANNELS = 2
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, NEW_MILESTONE) = range(8)
17 17
18 # Planning to take over the: 18 # Planning to take over the:
19 MILESTONES = ("basement", "neighbourhood", "city", "world") 19 MILESTONES = ("basement", "neighbourhood", "city", "world")
20 M_VALS = dict((name, i) for i, name in enumerate(MILESTONES)) 20 M_VALS = dict((name, i) for i, name in enumerate(MILESTONES))