1 # -*- coding: utf-8 -*-
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
26 def __init__(self
, wiimoteSupport
=True) :
27 self
.wiimoteSupport
= wiimoteSupport
31 self
.screenResolution
= (1024,768)
32 console
.info('résolution écran : %s', self
.screenResolution
)
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
48 "séquençage de l'affichage des écrans"
50 pygame
.display
.set_mode(self
.screenResolution
)
51 pygame
.display
.set_caption('MinWii')
56 exit
, songFile
, playMode
, selectedWiimoteIndex
= self
.selectSongAndOptions()
59 WT
.selectWiimote(selectedWiimoteIndex
)
62 instrumentDescription
= self
.selectInstrument()
63 if not instrumentDescription
:
67 self
.runPlayingScreen(songFile
, playMode
, instrumentDescription
)
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
77 - wiimote sélectionnée (entier)
79 home
= Home(songPath
=SONG_FILE_PATH
,
80 nwiimotes
=self
.nwiimotes
)
82 home
.connect(QUIT
, app
.quit
)
88 msg
= "sortie de l'application"
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
)
100 msg
= 'chanson : %s\nmode : %s\nHID : wiimote %d'
101 msg
= msg
% (home
.songFile
,
102 home
.modeSelect
.value
,
103 home
.selectedWiimote
.value
+ 1)
107 return (home
.exitApp
,
109 home
.modeSelect
.value
,
110 home
.selectedWiimote
.value
)
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
116 selector
= InstrumentSelector()
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
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'.
130 playMode
= PLAYING_MODES_DICT
[playMode
]
131 song
= musicXml2Song(songFile
)
132 bank
, preset
= instrumentDescription
['bank'], instrumentDescription
['preset']
133 octave
= instrumentDescription
['octave']
134 self
.synth
.adjust_octave(0, octave
)
135 self
.synth
.program_select(0, bank
, preset
)
136 playingScreen
= SongPlayingScreen(self
.synth
, song
, mode
=playMode
)
139 EventDispatcher
.reset()
143 """ Classe utilitaire pour singer l'api
144 de pygame_wiimouse en cas d'abscence de wiimote.
146 selectWimoteIndex
= 0
151 def selectWiimote(self
, i
):
153 def get_count(self
) :