from minwii.eventutils import EventDispatcher
from minwii.musicxml import musicXml2Song
from minwii.config import SONG_FILE_PATH
from minwii.eventutils import EventDispatcher
from minwii.musicxml import musicXml2Song
from minwii.config import SONG_FILE_PATH
from minwii.globals import PLAYING_MODES_DICT
from minwii.log import console, LOG_FORMAT_VERSION, envLogger
from minwii.globals import PLAYING_MODES_DICT
from minwii.log import console, LOG_FORMAT_VERSION, envLogger
envLogger.info('winwii log format version : %s', LOG_FORMAT_VERSION)
self.wiimoteSupport = wiimoteSupport
envLogger.info('winwii log format version : %s', LOG_FORMAT_VERSION)
self.wiimoteSupport = wiimoteSupport
+ 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)
- pygame_wiimouse.init(4, 5, self.screenResolution) # look for 4, wait 5 seconds
+ from minwii.config import IR_POSITION
+ pygame_wiimouse.init(4, 5, self.screenResolution, IR_POSITION) # look for 4, wait 5 seconds
self.nwiimotes = nwiimotes = pygame_wiimouse.get_count()
console.debug('wiimotes found : %d', nwiimotes)
self.WT = WT = pygame_wiimouse.WT
self.nwiimotes = nwiimotes = pygame_wiimouse.get_count()
console.debug('wiimotes found : %d', nwiimotes)
self.WT = WT = pygame_wiimouse.WT
-
- pygame.display.set_mode(self.screenResolution)
- pygame.display.set_caption('MinWii')
+ displayFlags = 0
+ if self.fullscreen :
+ displayFlags = displayFlags | pygame.FULLSCREEN
+ pygame.display.set_mode(self.screenResolution, displayFlags)
+ pygame.display.set_caption('MINWii')
- exit, songFile, playMode, selectedWiimoteIndex = self.selectSongAndOptions()
+ exit, songFile, playMode, wiimoteIndex = \
+ self.selectSongAndOptions(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
""" 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
- wiimote sélectionnée (entier)
"""
home = Home(songPath=SONG_FILE_PATH,
- wiimote sélectionnée (entier)
"""
home = Home(songPath=SONG_FILE_PATH,
nwiimotes=self.nwiimotes)
app = self.app
home.connect(QUIT, app.quit)
nwiimotes=self.nwiimotes)
app = self.app
home.connect(QUIT, app.quit)
bank, preset = instrumentDescription['bank'], instrumentDescription['preset']
octave = instrumentDescription['octave']
self.synth.adjust_octave(0, octave)
self.synth.program_select(0, bank, preset)
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)