summaryrefslogtreecommitdiff
path: root/typr.sh
blob: cb404aaddfe4c9c86ed34cf4cfee1e9207bcbef2 (plain)
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/bin/sh

words="the be of and a to in he have it that for they i with as not on she at by this we you do but from or which one would all will there say who make when can more if no man out other so what time up go about than into could state only new year some take come these know see use get like then first any work now may such give over think most even find day also after way many must look before great back through long where much should well people down own just because good each those feel seem how high too place little world very still nation hand old life tell write become here show house both between need mean call develop under last right move thing general school never same another begin while number part turn real leave might want point form off child few small since against ask late home interest large person end open public follow during present without again hold govern around possible head consider word program problem however lead system set order eye plan run keep face fact group play stand increase early course change help line"
alphanum="A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|0|1|2|3|4|5|6|7|8|9|,|.|?|\"|'|!|-"

entered_text=""
text=""

tty_init () {
    tput clear
    export SAVED_TTY_SETTINGS=$(stty -g)
    stty raw -echo
    trap typr_cleanup 1 2 3 6

    printf "[6 q"
}

tty_cleanup () {
    tput clear
    tput cnorm
    stty $SAVED_TTY_SETTINGS

}

tty_readc () {
    stty -echo -icanon min 1 time 0
    s="$(dd bs=1 count=1 of=/dev/stdout 2>/dev/null)"
    stty -icanon min 0 time 0
    [ "$s" = "" ]  && {
        s="$s$(dd bs=1 count=2 of=/dev/stdout 2>/dev/null)"
    }
    printf "$s"
}

typr_draw_text () {
    color=""
    line=${areay}
    startcol=${areax}

    cpos="${line};${startcol}"
    draw="[${cpos}H${color}"

    i=0
    t="$text"
    e="$entered_text"
    lt=""
    while [ "$t" ] ; do
        lt=$ct
        ct=${t%${t#?}}
        ce=${e%${e#?}}
        t="${t#?}"
        e="${e#?}"


        [ "$ct" != "$ce" ] \
            && newcolor="" \
            || newcolor=""

        [ ! "$ce" ] && newcolor="" \

        [ "$i" -gt "$startcol" ] && [ "$lt" = " " ] && {
            line=$((line+1))
            draw="${draw}[${line};${startcol}H"
            i=0
        }

        [ "$color" != "$newcolor" ] && {
            color="$newcolor"
            draw="${draw}$newcolor"
            [ "$color" = "" ] && cpos="${line};$((i+$startcol))"
        }


        [ "$color" = "" ] &&{
            [ "$ce" = " " ] && draw="${draw}_" || draw="${draw}$ce"
        } || {
         draw="$draw$ct"
        }

        i=$((i+1))
    done
    printf "%s[${cpos}H" "$draw"
    tput cnorm
}

typr_get_time () {
    now="$(date +%s%N)"
    time_ns=$((now-start))

    time_ms=$(((time_ns/1000000)%1000))
    time_seconds=$(((time_ns/1000000000)%60))
    time_minutes=$((time_ns/60000000000))

    printf "%02d:%02d.%03d" "$time_minutes" "$time_seconds" "$time_ms"
}

typr_draw_time () {
    [ ! -z "$start" ] && printf "[$((areay-1));${areax}H%s" "$(typr_get_time)"
}

typr_show_results () {
    tput clear
    tput civis

    now="$(date +%s%N)"
    time_ns=$((now-start))

    words="$(set -- $text ; printf "%s" "$#")"
    wpm="$((words*60000000000/time_ns))"
    acc="$(typr_calculate_acc)"

    printf "[%s;${areax}H%s" \
        "${areay}" "wpm" \
        "$((areay+1))" "$wpm" \
        "$((areay+2))" "acc" \
        "$((areay+3))" "$acc" \
        "$((areay+4))" "time" \
        "$((areay+5))" "$(typr_get_time)" \
        "$((areay+6))" "words" \
        "$((areay+7))" "$words"
}

typr_generate_text () {
    wordcount=100
    text="$(printf "%s " $(printf "%s\n" $words | shuf -r -n $wordcount))"
    text="${text% }"
}


typr_draw_loop () {
    while true; do
        typr_draw_time
    done
}

typr_start_timer () {
    start="$(date +%s%N)"
    typr_draw_loop &
    draw_pid="$!"
    export start draw_pid
}

typr_calculate_acc () {
    [ "$total_kp" != "0" ] && printf "%s%%" "$(((100*correct_kp)/total_kp))" || printf "0%"
}

typr_update_acc () {
    c=$1
    total_kp=$((total_kp+1))

    i=0
    t="$text"
    while [ "$i" -lt "$((${#entered_text}-1))" ]; do
        i=$((i+1))
        t="${t#?}" # remove first letter
    done
    correct_c=${t%${t#?}}

    [ "$c" == "$correct_c" ] && correct_kp=$((correct_kp+1))
    export correct_kp total_kp
}

typr_main () {
    total_kp=0
    correct_kp=0
    export correct_kp total_kp

    while true; do
        typr_draw_text
        c="$(tty_readc)"
        case "$c" in
            ''|'') break;;
            '')
                entered_text="${entered_text%?}"
                ;;
                " "|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|0|1|2|3|4|5|6|7|8|9|,|.|\?|\"|\'|!|-)
                [ -z "$start" ] && typr_start_timer

                entered_text="$entered_text$c"
                typr_update_acc "$c"
                ;;
        esac

        [ "${#entered_text}" = "${#text}" ] && break
    done
    kill "$draw_pid"

    typr_show_results

    while true; do
        case "$(tty_readc)" in
            ''|'') break;;
        esac
    done
}

typr_init () {
    cols="$(tput cols)"
    lines="$(tput lines)"

    areax=$((cols / 3))
    areay=$((lines / 3))
    tty_init
    typr_generate_text
    typr_main
    tty_cleanup
}

typr_init