view gamelib/constants.py @ 505:4c8aa01b606c

Tweak menu layout. Add keys for toggle options
author Neil Muller <neil@dip.sun.ac.za>
date Thu, 02 Sep 2010 12:25:48 +0200
parents f173771c85a8
children 43b49f1de828
line wrap: on
line source

# Useful constants
# copyright boomslang team (see COPYRIGHT file for details)


SCREEN = (800, 600)
FREQ = 44100   # same as audio CD
BITSIZE = -16  # unsigned 16 bit
CHANNELS = 2   # 1 == mono, 2 == stereo
BUFFER = 1024  # audio buffer size in no. of samples

BUTTON_SIZE = 50
SCENE_SIZE = (SCREEN[0], SCREEN[1] - BUTTON_SIZE)
# Animation frame rate
FRAME_RATE = 25

DEBUG = False

ENTER, LEAVE = 1, 2