-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeed_test.py
More file actions
71 lines (61 loc) · 1.92 KB
/
speed_test.py
File metadata and controls
71 lines (61 loc) · 1.92 KB
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
import curses
from curses import wrapper
import time
import random
def start_screen(stdscr):
stdscr.clear()
stdscr.addstr("welcome to the typing sepped test! ")
stdscr.addstr(1,0,"press any key to begine ): ")
stdscr.refresh()
stdscr.getkey()
def display_text(stdscr,target,current,wpm=0):
stdscr.addstr(target)
stdscr.addstr(1,0,f"wpm:{wpm}")
for i,char in enumerate(current):
current_char=target[i]
color=curses.color_pair(1)
if char!=current_char:
color=curses.color_pair(2)
stdscr.addstr(0,i,char,color)
def load_text():
with open("text.txt","r") as f:
line=f.readlines()
return random.choice(line).strip()
def wpm_test(stdscr):
target_text=load_text()
current_text=[]
wpm=0
start_time=time.time()
stdscr.nodelay(True)
while True:
time_elapse=max(time.time()-start_time,1)
wpm=round((len(current_text)/(time_elapse/60))/5)
stdscr.clear()
display_text(stdscr,target_text,current_text,wpm)
stdscr.refresh()
if "".join(current_text)==target_text:
stdscr.nodelay(False)
break
try:
key= stdscr.getkey()
except:
continue
if ord(key)==27:
break
if key in("KEY_BACKSPACE",'\b',"\x7f"):
if len(current_text)>0:
current_text.pop()
elif len(current_text) < len(target_text):
current_text.append(key)
def main(stdscr):
curses.init_pair(1,curses.COLOR_GREEN,curses.COLOR_BLACK)
curses.init_pair(2,curses.COLOR_RED,curses.COLOR_BLACK)
curses.init_pair(3,curses.COLOR_WHITE,curses.COLOR_BLACK)
start_screen(stdscr)
while True:
wpm_test(stdscr)
stdscr.addstr(2,0,"hay you completed the test ! press any key to continue ):...")
key=stdscr.getkey()
if ord(key)==27:
break
wrapper(main)