Ejemplo n.º 1
0
 def levelComplete(self):
     self.midifile = midifile.MKMidiFile(gtestmidifile)
     self.game = game.Game(main, self.midifile)
     self.b.cs = self.game
     self.game.alive = False
     self.game.win = True
     app.running = True
     app.main_loop(self.b)
Ejemplo n.º 2
0
 def game(self):
     self.midifile = midifile.MKMidiFile(gtestmidifile)
     self.game = game.Game(None, self.midifile)
     self.game.active_i = 0
     self.game.page_i = 0
     self.b.cs = self.game
     self.b.cs.menu_up = "quit"
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 3
0
 def settingsMenu(self):
     self.b.cs = menu.SettingsMenu(None)
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 4
0
 def pathPicker(self):
     self.b.cs = menu.PathPicker(None)
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 5
0
 def midiMenu(self):
     self.b.cs = menu.MidiMenu(None)
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 6
0
 def mainMenu(self):
     self.b.cs = menu.MainMenu()
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 7
0
 def gameSelect(self):
     self.b.cs = menu.GameSelect(None, gtestmidifile)
     app.running = grunning
     app.main_loop(self.b)
Ejemplo n.º 8
0
 def highscoremenu(self):
     self.b.cs = menu.HighScoreMenu(None)
     app.running = grunning
     app.main_loop(self.b)