+# -*- coding: utf-8 -*-
"""
constantes de configuration
"""
import pygame
+import os.path
pygame.font.init()
+
# playingscreen
FRAMERATE = 50
BORDER = 0 # 5px
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))
+
+