view skaapsteker/constants.py @ 169:b7a8f4a677e1

Replace key repeating with custom tracking of fast keys.
author Simon Cross <hodgestar@gmail.com>
date Wed, 06 Apr 2011 00:41:19 +0200
parents 0ad313ec564d
children 7628467eecd9
line wrap: on
line source

# Useful constants
# copyright skaapsteker 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

DEBUG = True

EPSILON = 1e-10

# Layer defination
class Layers(object):
    BACKGROUND = 0  # Absolute background
    BEHIND = 1  # Layer behind the player
    PLAYER = 2  # Layer of the player and enemies
    IN_FRONT = 3 # Layer in front of the player
    FOREGROUND = 4  # Absolute foreground