X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/e1080bdabe912ce17137a79988b04ff85c00cc03..9c9154a1581b81cfc0e9c3cb6d2d17cd7db854d6:/src/app/config.py diff --git a/src/app/config.py b/src/app/config.py index 9e27584..34a5f7f 100755 --- a/src/app/config.py +++ b/src/app/config.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ constantes de configuration @@ -5,7 +6,13 @@ $Id$ $URL$ """ +import pygame +import os.path +pygame.font.init() + + # playingscreen +FRAMERATE = 50 BORDER = 0 # 5px FIRST_HUE = 0.6 OFF_LUMINANCE = 0.2 @@ -13,4 +20,18 @@ OFF_SATURATION = 1 ON_TOP_LUMINANCE = 0.6 ON_BOTTOM_LUMINANCE = 0.9 ON_SATURATION = 1 -ON_COLUMN_OVERSIZING = 1.75 +ON_COLUMN_OVERSIZING = 2 +ON_COLUMN_ALPHA = 1 +FONT = pygame.font.Font(None, 80) +FONT_COLOR = (0,0,0) +DEFAULT_MIDI_VELOCITY = 96 + +SONG_FILE_PATH = '../../chansons' + +# cuisine : ne pas modifier +_here = os.path.abspath(__file__).split(os.path.sep)[:-1] +SONG_FILE_PATH = SONG_FILE_PATH.split('/') +SONG_FILE_PATH = _here + SONG_FILE_PATH +SONG_FILE_PATH = os.path.abspath(os.path.sep.join(SONG_FILE_PATH)) + +