X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/11a91fe04d1d980af4c65414e73b5c3048c72cad..9845b232ab53ef98733306299e1a52afbabb4e70:/src/minwii/app.py diff --git a/src/minwii/app.py b/src/minwii/app.py index ad2e382..f36094c 100755 --- a/src/minwii/app.py +++ b/src/minwii/app.py @@ -7,6 +7,7 @@ $URL$ """ import pygame +from pgu.gui import Theme from pgu.gui import Desktop from pgu.gui import QUIT from minwii.widgets.launch import LaunchScreen @@ -17,8 +18,11 @@ from minwii.synth import Synth from minwii.eventutils import EventDispatcher from minwii.musicxml import musicXml2Song from minwii.config import SONG_FILE_PATH +from minwii.config import SCREEN_RESOLUTION from minwii.globals import PLAYING_MODES_DICT from minwii.log import console, LOG_FORMAT_VERSION, envLogger +import os.path + class MinWii(object): @@ -28,9 +32,12 @@ class MinWii(object): self.wiimoteSupport = wiimoteSupport self.fullscreen = fullscreen LaunchScreen() - self.app = Desktop() + themedir = __file__.split(os.path.sep)[:-1] + ['widgets', 'data', 'minwii_theme'] + themedir = os.path.sep.join(themedir) + theme = Theme(themedir) + self.app = Desktop(theme=theme) self.synth = Synth() - self.screenResolution = (1024,768) + self.screenResolution = SCREEN_RESOLUTION envLogger.info('résolution écran : %s', self.screenResolution) self.nwiimotes = 0 self.initWiimotes() @@ -56,13 +63,16 @@ class MinWii(object): pygame.display.set_mode(self.screenResolution, displayFlags) pygame.display.set_caption('MINWii') WT = self.WT + + songFile, playMode, wiimoteIndex = '', 'NORMAL', 0 while True : - exit, songFile, playMode, selectedWiimoteIndex = self.selectSongAndOptions() + exit, songFile, playMode, wiimoteIndex = \ + self.selectSongAndOptions(songFile, playMode, wiimoteIndex) if exit : break - WT.selectWiimote(selectedWiimoteIndex) + WT.selectWiimote(wiimoteIndex) WT.resume() instrumentDescription = self.selectInstrument() @@ -75,7 +85,7 @@ class MinWii(object): WT.pause() - def selectSongAndOptions(self) : + def selectSongAndOptions(self, songFile, playMode, wiimoteIndex) : """ lance l'écran de paramétrage et retourne un tuple comportant : - drapeau de sortie de l'application (booléen) - chemin du fichier de la chanson @@ -83,6 +93,9 @@ class MinWii(object): - wiimote sélectionnée (entier) """ home = Home(songPath=SONG_FILE_PATH, + songFile=songFile, + playMode=playMode, + wiimoteIndex=wiimoteIndex, nwiimotes=self.nwiimotes) app = self.app home.connect(QUIT, app.quit) @@ -110,8 +123,8 @@ class MinWii(object): return (home.exitApp, home.songFile, - home.modeSelect.value, - home.selectedWiimote.value) + home.selectedPlayMode, + home.selectedWiimoteIndex) def selectInstrument(self) : """ lance l'écran de sélection de l'instrument et retourne @@ -135,12 +148,15 @@ class MinWii(object): avec l'instrument midi 'instrumentDescription'. """ playMode = PLAYING_MODES_DICT[playMode] - song = musicXml2Song(songFile) bank, preset = instrumentDescription['bank'], instrumentDescription['preset'] octave = instrumentDescription['octave'] self.synth.adjust_octave(0, octave) self.synth.program_select(0, bank, preset) - playingScreen = SongPlayingScreen(self.synth, song, mode=playMode) + if playMode == PLAYING_MODES_DICT['IMPRO'] : + playingScreen = PlayingScreen(self.synth) + else : + song = musicXml2Song(songFile) + playingScreen = SongPlayingScreen(self.synth, song, mode=playMode) playingScreen.run() pygame.event.clear() EventDispatcher.reset()