X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=tabakrolletjie%2Fconstants.py;h=8edc2e914390357b479b1cba77810648a532a7ef;hb=91a4b8b363cb25c8fe30a4c49bae171c508c7b0e;hp=378003bfcdfb49ff720e5906c286352e85301e76;hpb=c334c4c919954bfe455a164074e06aca0ab10428;p=tabakrolletjie.git diff --git a/tabakrolletjie/constants.py b/tabakrolletjie/constants.py index 378003b..8edc2e9 100644 --- a/tabakrolletjie/constants.py +++ b/tabakrolletjie/constants.py @@ -7,6 +7,9 @@ TITLE = "Space Turnips" # Debug DEBUG = os.environ.get("TABAK_DEBUG", "").lower() in ("1", "y", "yes") +DRAW_FPS = os.environ.get("TABAK_DRAW_FPS", "").lower() in ("1", "y", "yes") +# Intervals to average fps over +FPS_FRAMES = 50 # 704 is 768 minus space for window decorations :) SCREEN_SIZE = (1024, 704) @@ -18,3 +21,9 @@ FPS = 60 OBSTACLE_CATEGORY = 1 << 0 LIGHT_CATEGORY = 1 << 1 MOULD_CATEGORY = 1 << 2 +FITTINGS_CATEGORY = 1 << 3 + +# Font definitions +FONTS = { + 'sans': 'DejaVuSans.ttf', +}