log++ qq bugfixes.
[minwii.git] / src / app / minwii.py
1 # -*- coding: utf-8 -*-
2 """
3 l'application winwii
4
5 $Id$
6 $URL$
7 """
8
9 import pygame
10 from pgu.gui import Desktop
11 from pgu.gui import QUIT
12 from widgets.launch import LaunchScreen
13 from widgets.home import Home
14 from widgets.playingscreen import SongPlayingScreen, PlayingScreen
15 from widgets.instrumentselector import InstrumentSelector
16 from synth import Synth
17 from eventutils import EventDispatcher
18 from musicxml import musicXml2Song
19 from config import SONG_FILE_PATH
20 from globals import PLAYING_MODES_DICT
21 from log import console
22
23
24 class MinWii(object):
25
26 def __init__(self, wiimoteSupport=True) :
27 self.wiimoteSupport = wiimoteSupport
28 LaunchScreen()
29 self.app = Desktop()
30 self.synth = Synth()
31 self.screenResolution = (1024,768)
32 console.info('résolution écran : %s', self.screenResolution)
33 self.nwiimotes = 0
34 self.initWiimotes()
35
36 def initWiimotes(self) :
37 if self.wiimoteSupport :
38 from pywiiuse import pygame_wiimouse
39 pygame_wiimouse.init(4, 5, self.screenResolution) # look for 4, wait 5 seconds
40 self.nwiimotes = nwiimotes = pygame_wiimouse.get_count()
41 console.debug('%d wiimotes found', nwiimotes)
42 self.WT = WT = pygame_wiimouse.WT
43 WT.pause()
44 else :
45 self.WT = _WTFacade()
46
47 def run(self) :
48 "manage the screen sequence display"
49
50 pygame.display.set_mode(self.screenResolution)
51 pygame.display.set_caption('MinWii')
52 WT = self.WT
53
54 while True :
55
56 exit, songFile, playMode, selectedWiimoteIndex = self.selectSongAndOptions()
57 if exit : break
58
59 WT.selectWiimote(selectedWiimoteIndex)
60 WT.resume()
61
62 instrumentDescription = self.selectInstrument()
63 if not instrumentDescription :
64 WT.pause()
65 continue
66
67 self.runPlayingScreen(songFile, playMode, instrumentDescription)
68
69 WT.pause()
70
71
72 def selectSongAndOptions(self) :
73 """ lance l'écran de paramétrage et retourne un tuple comportant :
74 - drapeau de sortie de l'application (booléen)
75 - chemin du fichier de la chanson
76 - mode (entier)
77 - wiimote sélectionnée (entier)
78 """
79 home = Home(songPath=SONG_FILE_PATH,
80 nwiimotes=self.nwiimotes)
81 app = self.app
82 home.connect(QUIT, app.quit)
83 app.run(home)
84 app.close(home)
85
86
87 if home.exitApp :
88 msg = "sortie de l'application"
89 else :
90 actual_wiimotes = self.WT.get_count()
91 if actual_wiimotes is None :
92 msg = 'chanson : %s\nmode : %s\nHID : souris'
93 msg = msg % (home.songFile,
94 home.modeSelect.value)
95 elif actual_wiimotes == 0 :
96 msg = 'chanson : %s\nmode : %s\nHID : souris (pas de wiimote trouvée)'
97 msg = msg % (home.songFile,
98 home.modeSelect.value)
99 else :
100 msg = 'chanson : %s\nmode : %s\nHID : wiimote %d'
101 msg = msg % (home.songFile,
102 home.modeSelect.value,
103 home.selectedWiimote.value + 1)
104
105 console.info(msg)
106
107 return (home.exitApp,
108 home.songFile,
109 home.modeSelect.value,
110 home.selectedWiimote.value)
111
112 def selectInstrument(self) :
113 """ lance l'écran de sélection de l'instrument et retourne
114 un dictionnaire comportant la description de l'instrument
115 """
116 selector = InstrumentSelector()
117 selector.run()
118 selector.stop()
119 pygame.event.clear()
120 EventDispatcher.reset()
121 if selector.selectedInstrument :
122 console.info('instrument : %(name)s\npreset : %(preset)d\nbank : %(bank)d\najustement octave : %(octave)d' % \
123 selector.selectedInstrument)
124 return selector.selectedInstrument
125
126 def runPlayingScreen(self, songFile, playMode, instrumentDescription) :
127 """ Lance l'écran de jeu principal avec la chanson 'songFile' dans le mode 'playMode'
128 avec l'instrument midi 'instrumentDescription'.
129 """
130 playMode = PLAYING_MODES_DICT[playMode]
131 song = musicXml2Song(songFile)
132 bank, preset = instrumentDescription['bank'], instrumentDescription['preset']
133 octave = instrumentDescription.get('octave', 0)
134 self.synth.adjust_octave(0, octave)
135 self.synth.program_select(0, bank, preset)
136 playingScreen = SongPlayingScreen(self.synth, song, mode=playMode)
137 playingScreen.run()
138 pygame.event.clear()
139 EventDispatcher.reset()
140
141
142 class _WTFacade :
143 """ Classe utilitaire pour singer l'api
144 de pygame_wiimouse en cas d'abscence de wiimote.
145 """
146 selectWimoteIndex = 0
147 def pause(self):
148 pass
149 def resume(self):
150 pass
151 def selectWiimote(self, i):
152 pass
153 def get_count(self) :
154 return None