forked from shivangdubey/HacktoberFest2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStopwatch.py
149 lines (73 loc) · 2.19 KB
/
Stopwatch.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import pygame
import sys
import time
# Initializing of Pygame
pygame.init()
width = 200
height = 100
display = pygame.display.set_mode((width, height))
pygame.display.set_caption(" ")
clock = pygame.time.Clock()
dark_gray = (23, 32, 42)
white = (230, 230, 230)
seconds = 0
pause = False
# Font and Size
font = pygame.font.SysFont("Times New Roman", 24)
# Close the Window
def close():
pygame.quit()
sys.exit()
# Blit time and text to Pygame Window
def showTime():
hours = seconds/3600
minutes = (seconds/60)%60
sec = seconds%60
text = font.render("HH MM SS", True, white)
time = font.render(str(hours).zfill(2) + " " + str(minutes).zfill(2) + " " + str(sec).zfill(2), True, white)
display.blit(text, (10, 10))
display.blit(time, (13, 40))
# Pause the Stopwatch
def Pause():
while pause:
for event in pygame.event.get():
if event.type == pygame.QUIT:
close()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_SPACE or pygame.key == pygame.K_p:
stopWatch()
if event.key == pygame.K_r:
reset()
if event.key == pygame.K_q:
close()
pauseText = font.render("Paused!", True, white)
display.blit(pauseText, (10, height - 35))
pygame.display.update()
clock.tick(60)
# Reset StopWatch
def reset():
global seconds
seconds = 0
# StopWatch
def stopWatch():
tick = True
global seconds, pause
pause = False
while tick:
for event in pygame.event.get():
if event.type == pygame.QUIT:
close()
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_SPACE or event.key == pygame.K_p:
pause = True
Pause()
if event.key == pygame.K_r:
reset()
if event.key == pygame.K_q:
close()
display.fill(dark_gray)
showTime()
seconds += 1
pygame.display.update()
clock.tick(1)
stopWatch()