-
Notifications
You must be signed in to change notification settings - Fork 5
/
teatimer.py
54 lines (49 loc) · 1.2 KB
/
teatimer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import pygame
import wave
import os
import time
pygame.mixer.pre_init(44100,-16,2,256)
pygame.mixer.init()
tea_sounds = {}
tea_wavlist = os.listdir("ingress")
for snd in tea_wavlist:
if snd.endswith(".ogg"):
snd_name = snd
if snd_name.startswith("speech_number_"):
snd_name = int(snd_name[14:17])
else:
snd_name = snd_name[7:-4]
tea_sounds[snd_name] = pygame.mixer.Sound("ingress/" + snd)
def playwait(sound):
tea_sounds[sound].play()
while pygame.mixer.get_busy():
time.sleep(0.1)
def saytime(remaintime):
minutes = int(remaintime/60)
seconds = remaintime % 60
if remaintime == 60:
seconds = 60
minutes = 0
if minutes:
playwait(minutes)
playwait('minutes')
if seconds:
playwait(seconds)
playwait('seconds')
if minutes or seconds:
playwait('remaining')
else:
playwait('complete')
starttime = int(time.time())
duration = 60
remaintime = duration
while remaintime > 0:
elapsed = (int(time.time())-starttime)
remaintime = duration - elapsed
print remaintime
time.sleep(1)
if ((remaintime % 60 == 0) or
((remaintime < 180) and (remaintime % 30 == 0)) or
((remaintime < 60) and (remaintime % 10 == 0)) or
((remaintime < 30) and (remaintime % 5 == 0))):
saytime(remaintime)