Assorted project boilerplate.
[naja.git] / naja / constants.py
1 SCREEN = (800, 600)
2 FPS = 40
3 FONT = 'DejaVuSans.ttf'
4 FONT_SIZE = 16
5
6 DEFAULTS = dict(
7     debug=False,
8     sound=True,
9     music=True,
10 )
11
12 # Sound constants
13 FREQ = 44100   # same as audio CD
14 BITSIZE = -16  # unsigned 16 bit
15 CHANNELS = 2   # 1 == mono, 2 == stereo
16 BUFFER = 1024  # audio buffer size in no. of samples
17 DEFAULT_SOUND_VOLUME = 1.0  # sound volume
18 DEFAULT_MUSIC_VOLUME = 0.3  # music volume