Exemplo n.º 1
0
 def handle_stopped_round(self):
     notifier.notify('Round has not been started')
     print('Press <Enter> to start the round')
Exemplo n.º 2
0
 def round_finished(self):
     notifier.notify('Time Up', timeout=15 * 1000)
     self.sound_player.play_timeup()
     self.round_started = False
     print('Round finished!\n')
Exemplo n.º 3
0
 def round_finished(self):
     notifier.notify('Time Up', timeout=15 * 1000)
     self.sound_player.play_timeup()
     self.round_started = False
     print('Round finished!\n')
Exemplo n.º 4
0
 def round_info(self):
     if self.timer.ellapsed_time == self.timer.duration - 60:
         notifier.notify('60 seconds to round finish...')
         print('Round is going to finish in 60 seconds')
         self.info_notified = True
Exemplo n.º 5
0
 def round_info(self):
     if self.timer.ellapsed_time == self.timer.duration - 60:
         notifier.notify('60 seconds to round finish...')
         print('Round is going to finish in 60 seconds')
         self.info_notified = True