X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/ea641d921996c040ee1af76c71ea98d75fa853af..afeb92b07428059fd3a1022aefa64a1aeba68152:/src/app/config.py diff --git a/src/app/config.py b/src/app/config.py index cbd44fb..34a5f7f 100755 --- a/src/app/config.py +++ b/src/app/config.py @@ -7,8 +7,10 @@ $URL$ """ import pygame +import os.path pygame.font.init() + # playingscreen FRAMERATE = 50 BORDER = 0 # 5px @@ -23,3 +25,13 @@ 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)) + +