0ea58f52a260aba732d68e84a8f8be7b2652bf0a
[tabakrolletjie.git] / tabakrolletjie / constants.py
1 """ Game constants.
2 """
3
4 import os
5
6 TITLE = "Space Turnips"
7
8 # Debug
9 DEBUG = os.environ.get("TABAK_DEBUG", "").lower() in ("1", "y", "yes")
10 DRAW_FPS = os.environ.get("TABAK_DRAW_FPS", "").lower() in ("1", "y", "yes")
11 # Intervals to average fps over
12 FPS_FRAMES = 50
13
14 # 704 is 768 minus space for window decorations :)
15 SCREEN_SIZE = (1024, 704)
16
17 # Frame per second
18 FPS = 30
19
20 # Night length in ticks
21 NIGHT_LENGTH = 1500
22 # Night length in hours
23 NIGHT_LENGTH_HOURS = 12
24
25 # Pymunk categories
26 OBSTACLE_CATEGORY = 1 << 0
27 LIGHT_CATEGORY = 1 << 1
28 MOULD_CATEGORY = 1 << 2
29 FITTINGS_CATEGORY = 1 << 3
30 TURNIP_CATEGORY = 1 << 4
31
32 # Font definitions
33 FONTS = {
34     'sans': 'DejaVuSans.ttf',
35     'bold': 'DejaVuSans-Bold.ttf',
36 }
37
38 # Sound stuff
39 FREQ = 44100
40 BITSIZE = -16
41 CHANNELS = 2
42 BUFFER = 1024
43 DEFAULT_VOLUME = 1.0
44
45 NO_SOUND = os.environ.get("TABAK_NO_SOUND", "").lower() in ("1", "y", "yes")
46
47 # Color constants
48 COLOURS = {
49     "red": (255, 0, 0),
50     "green": (0, 255, 0),
51     "blue": (0, 0, 255),
52     "cyan": (0, 255, 255),
53     "yellow": (255, 255, 0),
54     "magenta": (255, 0, 255),
55     "white": (255, 255, 255),
56 }