-
Notifications
You must be signed in to change notification settings - Fork 0
/
wpm.py
83 lines (61 loc) · 2 KB
/
wpm.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
import curses
import random
from curses import wrapper
import time
def start_screen(stdscr):
stdscr.clear()
stdscr.addstr('Welcome to 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):
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('textstory.txt', 'r') as f:
lines = f.readlines()
return random.choice(lines).strip()
def wpm_test(stdscr):
target_text = 'Hello world this is some text for the app'
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:
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.....')
stdscr.getkey()
if ord(key) == 27:
break
wrapper(main)