X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/c469bfe0b89e42f313651c097ac7bedd5cd0cae6..899a6365838f7a7c1427676277ef72c934c1d1bb:/src/app/synth.py diff --git a/src/app/synth.py b/src/app/synth.py index fa65638..eb19235 100755 --- a/src/app/synth.py +++ b/src/app/synth.py @@ -7,23 +7,40 @@ $URL$ """ from os.path import realpath, sep, exists from fluidsynth import Synth as FSynth +from log import console, envLogger +import pygame +import events class Synth(FSynth) : + """ + Interface fluidsynth avec les adaptations suivantes : + - la soundfont FluidR3_GM.sf2 est chargée par défaut + - le constructeur démarre le synthé + - octaviation + """ - def __init__(self, gain=0.2, samplerate=44100) : + def __init__(self, gain=0.2, samplerate=44100, sfPath='') : FSynth.__init__(self, gain=gain, samplerate=samplerate) - sfPath = realpath(__file__).split(sep) - sfPath = sfPath[:-1] - sfPath.append('soundfonts') + if not sfPath : + sfPath = realpath(__file__).split(sep) + sfPath = sfPath[:-1] + sfPath.append('soundfonts') + + sfPath.append('FluidR3_GM.sf2') + sfPath = sep.join(sfPath) - sfPath.append('FluidR3_GM.sf2') - sfPath = sep.join(sfPath) assert exists(sfPath) self.start() self.fsid = self.sfload(sfPath) self._octaveAjusts = {} + console.info('démarrage du synthétiseur') + envLogger.info('soundfont : %s', sfPath) + + def __del__(self) : + console.info('arrêt du synthétiseur') + self.delete() def adjust_octave(self, chan, octave) : ''' @@ -43,11 +60,11 @@ class Synth(FSynth) : def noteon(self, chan, key, vel): key = key + self._octaveAjusts.get(chan, 0) * 12 FSynth.noteon(self, chan, key, vel) + evt = pygame.event.Event(events.NOTEON, chan=chan, key=key, vel=vel) + pygame.event.post(evt) def noteoff(self, chan, key) : key = key + self._octaveAjusts.get(chan, 0) * 12 FSynth.noteoff(self, chan, key) - - -if __name__ == '__main__' : - initsynth() \ No newline at end of file + evt = pygame.event.Event(events.NOTEOFF, chan=chan, key=key) + pygame.event.post(evt)