1 # -*- coding: utf-8 -*-
3 constantes de configuration
12 _here
= os
.path
.abspath(__file__
).split(os
.path
.sep
)[:-1]
13 def _computePath(path
) :
14 path
= path
.split('/')
16 path
= os
.path
.abspath(os
.path
.sep
.join(path
))
28 ON_TOP_LUMINANCE
= 0.6
29 ON_BOTTOM_LUMINANCE
= 0.9
31 ON_COLUMN_OVERSIZING
= 2
33 font_file
= _computePath('fonts/Arial Unicode.ttf')
34 NOTES_FONT
= pygame
.font
.Font(font_file
, 50)
35 LYRICS_FONT
= pygame
.font
.Font(None, 80)
37 MIDI_VELOCITY_RANGE
= (64, 127)
38 MIDI_PAN_RANGE
= (32, 96)
40 SONG_FILE_PATH
= _computePath('../../chansons')
43 {'name' : 'accordeon',
78 {'name' : 'violoncelle',
85 for i
in INSTRUMENTS
:
86 i
['octave'] = i
.get('octave', 0)