56047ad0de3fc126e872a6c5b59c854677754bba
[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.home import Home
13 from widgets.playingscreen import SongPlayingScreen, PlayingScreen
14 from widgets.instrumentselector import InstrumentSelector
15 from synth import Synth
16 from eventutils import EventDispatcher
17 from musicxml import musicXml2Song
18 from config import SONG_FILE_PATH
19
20 class MinWii(object):
21
22 def __init__(self) :
23 #app = Desktop()
24 #synth = Synth()
25
26 while True :
27 #home = Home(songPath=SONG_FILE_PATH)
28 #home.connect(QUIT, app.quit)
29 #app.run(home)
30 #app.close(home)
31
32 selector = InstrumentSelector()
33 selector.run()
34 selector.stop()
35 pygame.event.clear()
36 EventDispatcher.reset()
37 break
38
39 song = musicXml2Song(home.songFile, printNotes=True)
40 synth.program_select(0, 0, 0)
41 playingScreen = SongPlayingScreen(synth, song)
42 playingScreen.run()
43 pygame.event.clear()
44 EventDispatcher.reset()