-
Notifications
You must be signed in to change notification settings - Fork 0
/
wpm_test.py
80 lines (61 loc) · 2.34 KB
/
wpm_test.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
import curses
from curses import wrapper
import time
import random
def start_screen(stdscr):
stdscr.clear()
stdscr.addstr("Welcome to the speed typing test!")
stdscr.addstr("\nPress any key to begin!")
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): # enumerate gives the element and index
correct_char = target[i]
color = curses.color_pair(1)
if char != correct_char:
color = curses.color_pair(2)
stdscr.addstr(0, i, char, color)
def load_text():
with open("test_text.txt", "r") as f:
lines = f.readlines()
return random.choice(lines).strip() # removes leading or trailing whitespace characters (The invisible \n at the end of each line of text in test_text.txt)
def wpm_test(stdscr):
target_text = load_text()
current_text = []
wpm = 0
start_time = time.time()
stdscr.nodelay(True)
while True:
time_elapsed = max(time.time() - start_time, 1)
wpm = round((len(current_text) / (time_elapsed / 60)) / 5)
stdscr.clear()
display_text(stdscr, target_text, current_text, wpm)
stdscr.refresh()
if "".join(current_text) == target_text: #The deliminator is in the quotes. If not empty string, it will sub that char inbetween words. Ex: "-" is h-e-l-l-o. "" is hello
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, "You completed the text! Press any key to continue...")
key = stdscr.getkey()
if ord(key) == 27:
break
wrapper(main)