-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtyper.js
executable file
·583 lines (546 loc) · 18.5 KB
/
typer.js
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
var startTime,
endTime,
mistakes,
mistakestring = "",
currentPos,
keyResult,
started = false,
ended = false,
currentChar,
fullText,
intervalID = -1,
interval2ID = -1,
appUrl,
showKeyboard,
THE_LAYOUT,
continuousType,
countMistypedSpaces,
countMistakes,
keyupCombined,
keyupFirst,
$,
differenceT,
keyboardElement,
combinedCharWait,
isCombined,
newCas,
tDifference,
secs,
rpTimeLimit2,
rpTimeLimit3;
/**
* If not the end of fullText, move cursor to next character.
* Color the previous character according to result.
*
* @param {number} nextPos Next cursor position.
*/
function moveCursor(nextPos) {
if (nextPos > 0 && nextPos <= fullText.length) {
$('#crka' + (nextPos - 1)).removeClass('txtBlue');
if (keyResult) {
$('#crka' + (nextPos - 1))
.removeClass('txtBlack')
.removeClass('txtRed')
.addClass('txtGreen');
} else {
if (!(countMistakes)) {
// Even with multiple keystrokes on the wrong key, only one mistake is counted.
mistakes++;
mistakestring += currentChar; // Keep a copy of the wrong letter.
}
$('#crka' + (nextPos - 1))
.removeClass('txtBlack')
.removeClass('txtGreen')
.addClass('txtRed');
}
}
if (nextPos < fullText.length) {
$('#crka' + nextPos).addClass('txtBlue');
}
keyResult = true;
scroll_to_next_line($('#crka' + nextPos));
}
/**
* Scroll to object.
*
* @param {DOM object} obj
*/
function scroll_to_next_line(obj) {
var scrollBox = $('#texttoenter');
if ($(obj).length > 0) {
scrollBox.animate({
scrollTop: $(obj).offset().top - scrollBox.offset().top + scrollBox.scrollTop()
},10);
}
}
// Initialize scrolling text when document is ready.
$(document).ready(function() {
$('#keyboard textarea:last').css({
"height": "16px",
"font-size": "10pt",
"opacity": "0.0"
});
$("html, body").keyup(function(e) {
scroll_to_next_line($('#crka' + currentPos));
})
.mouseup(function(e) {
$('#keyboard textarea:last').focus();
});
$('#keyboard textarea:last').focus();
scroll_to_next_line($("#keyboard"));
});
/**
* End of typing.
*
*/
function doTheEnd() {
ended = true;
clearInterval(intervalID);
clearInterval(interval2ID);
endTime = new Date();
// Update status bar with final data.
var updateAll = updTimeSpeed();
differenceT = timeDifference(startTime, endTime);
var hours = differenceT.getHours();
var mins = differenceT.getMinutes();
var secs = differenceT.getSeconds();
var samoSekunde = converToSeconds(hours, mins, secs);
$('input[name="rpFullHits"]').val((fullText.length + mistakes));
$('input[name="rpTimeInput"]').val(samoSekunde);
$('input[name="rpMistakesInput"]').val(mistakes);
var speed = calculateSpeed(samoSekunde);
$('input[name="rpAccInput"]').val(calculateAccuracy(fullText, mistakes).toFixed(2));
$('input[name="rpSpeedInput"]').val(speed);
var gwpm = (speed / 5);
var wpm = (speed / 5) - (mistakes / (samoSekunde / 60));
$('#jsWpm2').html((gwpm.toFixed(1)) + " | " + (wpm.toFixed(1)));
$('input[name="rpWpmInput"]').val(wpm);
$('input[name="rpMistakeDetailsInput"]').val(countChars(mistakestring));
$('#tb1').attr('disabled', 'disabled');
$('#btnContinue').css('visibility', 'visible');
var rpAttId = document.form1.rpAttId.value;
var juri = appUrl + "/mod/mootyper/atchk.php?status=3&attemptid=" + $('input[name="rpAttId"]').val();
$.get(juri, function(data) { });
// At the end, add a scroll bar so student can see all the text and their mistakes.
$('#texttoenter').css({"overflow-y":"scroll"});
scroll_to_next_line($("#reportDiv input:last").focus());
}
/**
* Get the character for the pressed key depending on current keyboard driver.
*
* @param {char} e.
* @returns {keychar}.
*/
function getPressedChar(e) {
var keynum;
var keychar;
var numcheck;
// addEventListener('keydown', (event) => {
// Th.log('keydown We may have typed a Korean character here '+event.keyCode);
// console.log('keydown We need to get the data from compositionupdate '+event.compositionupdate);
// });
// addEventListener('compositionupdate', (event) => {
if (event.data) {
// console.log('compositionupdate We typed a Korean character here '+event.data);
keychar = event.data;
// console.log('keychar We transferred event.data to keychar and it is '+keychar);
if (keychar) {
//console.log('if (keychar) was tested and it is '+keychar);
return keychar;
}
}
// });
if (window.event) { // IE.
keynum = e.keyCode;
} else if (e.which) { // Netscape/Firefox/Opera.
keynum = e.which;
}
if (keynum === 13) {
keychar = '\n';
// This hack is needed for Spanish keyboard, which uses 161 for some character.
} else if ((!keynum || keynum === 160 || keynum === 161) && (keynum !== 161 && THE_LAYOUT !== 'Spanish')) {
keychar = '[not_yet_defined]';
} else {
keychar = String.fromCharCode(keynum);
}
// console.log('We are returning keychar and it is '+keychar);
return keychar;
}
/**
* Set the focus.
*
* @param {char} e.
* @returns {bolean}.
*/
function focusSet(e) {
if(!started) {
$('#tb1').val('');
if (showKeyboard){
var thisEl = new keyboardElement(fullText[0]);
thisEl.turnOn();
}
return true;
} else {
$('#tb1').val(fullText.substring(0, currentPos));
return true;
}
}
/**
* Do checks.
*
*/
function doCheck() {
var rpMootyperId = $('input[name="rpSityperId"]').val();
var rpUser = $('input[name="rpUser"]').val();
var rpAttId = $('input[name="rpAttId"]').val();
var juri = appUrl + "/mod/mootyper/atchk.php?status=2&attemptid=" + rpAttId +
"&mistakes=" + mistakes + "&hits=" + (currentPos + mistakes);
$.get(juri, function( data ) { });
}
/**
* Start exercise and reset data variables.
*
*/
function doStart() {
startTime = new Date();
mistakes = 0;
mistakestring = "";
currentPos = 0;
started = true;
keyResult = true;
currentChar = fullText[currentPos];
intervalID = setInterval('updTimeSpeed()', 1000);
var rpMootyperId = $('input[name="rpSityperId"]').val();
var rpUser = $('input[name="rpUser"]').val();
var juri = appUrl + "/mod/mootyper/atchk.php?status=1&mootyperid=" + rpMootyperId +
"&userid=" + rpUser + "&time=" + (startTime.getTime() / 1000);
$.get(juri, function( data ) {
$('input[name="rpAttId"]').val(data);
});
interval2ID = setInterval('doCheck()', 4000);
rpTimeLimit2 = $('input[name="rpTimeLimit"]').val() * 60;
}
/**
* Process current key press and proceed based on typing mode.
*
* @param {char} e.
* @returns {bolean}.
*/
function keyPressed(e) {
// If reached the end of the lesson, don't let the student continue to type.
if (ended) {
return false;
}
// If this is the first typed letter, initialize the status bar data.
if (!started) {
doStart();
}
// Something was typed so go figure out what character it was. and return for further processing.
var keychar = getPressedChar(e);
// var keychar = addEventListener('keydown', getPressedChar);
// var keychar = addEventListener('compositionstart', getPressedChar);
if (keychar === currentChar || ((currentChar === '\n' || currentChar === '\r\n' ||
currentChar === '\n\r' || currentChar === '\r') && (keychar === ' '))) {
moveCursor(currentPos + 1);
// Student is at the end of the exercise or has ran out of time.
if ((currentPos === fullText.length - 1) || (rpTimeLimit3 < 0)) {
$('#tb1').val($('#tb1').val() + currentChar);
var elemOff = new keyboardElement(currentChar);
elemOff.turnOff();
currentChar = fullText[currentPos + 1];
currentPos++;
doTheEnd();
return true;
}
// Student still has more to type.
if (currentPos < fullText.length - 1) {
var nextChar = fullText[currentPos + 1];
if (showKeyboard) {
var thisE = new keyboardElement(currentChar);
thisE.turnOff();
if (isCombined(nextChar) && (thisE.shift || thisE.alt || thisE.pow ||
thisE.uppercase_umlaut || thisE.accent)) {
combinedCharWait = true;
}
var nextE = new keyboardElement(nextChar);
nextE.turnOn();
}
if (isCombined(nextChar)) {
$("#form1").off("keypress", "#tb1", keyPressed);
$("#form1").on("keyup", "#tb1", keyupFirst);
}
}
currentChar = fullText[currentPos + 1];
currentPos++;
return true;
// Ignore mistyped extra spaces unless set to count them.
} else if (keychar === ' ' && !countMistypedSpaces) {
return false;
} else {
if (countMistakes) {
// With multiple keystrokes on the wrong key, each wrong keystroke is counted.
// Typed the wrong letter so increment mistake count.
mistakes++;
// Keep a copy of the wrong letter.
mistakestring += currentChar;
}
// Mistake count increased after correct key is typed if disabled and line 37 enabled.
keyResult = false;
// If not set for continuous typing, wait for correct letter.
if ((!continuousType && !countMistypedSpaces) || (!continuousType && countMistypedSpaces)) {
return false;
// If continuous typing, show wrong letter and move on.
} else if (currentPos < fullText.length - 1) {
var nextChar = fullText[currentPos + 1];
if (showKeyboard) {
var thisE = new keyboardElement(currentChar);
thisE.turnOff();
if (isCombined(nextChar) && (thisE.shift || thisE.alt || thisE.pow || thisE.uppercase_umlaut || thisE.accent)) {
combinedCharWait = true;
}
var nextE = new keyboardElement(nextChar);
nextE.turnOn();
}
if (isCombined(nextChar)) {
$("#form1").off("keypress", "#tb1", keyPressed);
$("#form1").on("keyup", "#tb1", keyupFirst);
}
}
moveCursor(currentPos + 1);
// Student is at the end of the exercise or ran out of time.
if ((currentPos === fullText.length - 1) || (rpTimeLimit3 < 0)) {
$('#tb1').val($('#tb1').val() + currentChar);
var elemOff = new keyboardElement(currentChar);
elemOff.turnOff();
currentChar = fullText[currentPos + 1];
currentPos++;
doTheEnd();
return true;
}
currentChar = fullText[currentPos + 1];
currentPos++;
return true;
}
}
/**
* Calculate time to seconds.
*
* @param {number} hrs.
* @param {number} mins.
* @param {number} seccs.
* @returns {seconds}.
*/
function converToSeconds(hrs, mins, seccs) {
if (hrs > 0) {
mins = (hrs * 60) + mins;
}
if (mins === 0) {
return seccs;
} else {
return (mins * 60) + seccs;
}
}
/**
* Calculate date difference.
*
* @param {number} t1.
* @param {number} t2.
* @returns {date}.
*/
function timeDifference(t1, t2) {
var yrs = t1.getFullYear();
var mnth = t1.getMonth();
var dys = t1.getDate();
var h1 = t1.getHours();
var m1 = t1.getMinutes();
var s1 = t1.getSeconds();
var h2 = t2.getHours();
var m2 = t2.getMinutes();
var s2 = t2.getSeconds();
var ure = h2 - h1;
var minute = m2 - m1;
var secunde = s2 - s1;
return new Date(yrs, mnth, dys, ure, minute, secunde, 0);
}
/**
* Initialize variables and text to enter.
*
* @param {varchar} ttext.
* @param {number} tinprogress.
* @param {number} tmistakes.
* @param {number} thits.
* @param {number} tstarttime.
* @param {number} tattemptid.
* @param {varchar} turl.
* @param {boolean} tshowkeyboard.
* @param {boolean} tcontinuoustype.
* @param {boolean} tcountmistypedspaces.
*/
function inittexttoenter(ttext, tinprogress, tmistakes, thits, tstarttime, tattemptid, turl,
tshowkeyboard, tcontinuoustype, tcountmistypedspaces, tcountmistakes) {
// Needed for IME (input method editor) when using Korean keyboard layout.
addEventListener('compositionupdate', keyPressed);
$("#form1").on("keypress", "#tb1", keyPressed);
showKeyboard = tshowkeyboard;
continuousType = tcontinuoustype;
countMistypedSpaces = tcountmistypedspaces;
countMistakes = tcountmistakes;
fullText = ttext;
appUrl = turl;
var tempStr = "";
if (tinprogress) {
$('input[name="rpAttId"]').val(tattemptid);
startTime = new Date(tstarttime * 1000);
mistakes = tmistakes;
currentPos = (thits - tmistakes);
currentChar = fullText[currentPos]; // Current character (trenutni = current).
if(showKeyboard) {
var nextE = new keyboardElement(currentChar);
nextE.turnOn();
if (isCombined(currentChar)) {
$("#form1").off("keypress", "#tb1", keyPressed);
$("#form1").on("keyup", "#tb1", keyupCombined);
}
}
started = true;
intervalID = setInterval('updTimeSpeed()', 1000);
interval2ID = setInterval('doCheck()', 3000);
for (var i = 0; i < currentPos; i++) {
var tChar = ttext[i];
if (tChar === '\n') {
tempStr += "<span id='crka" + i + "' class='txtGreen'>↓</span><br>";
} else {
tempStr += "<span id='crka" + i + "' class='txtGreen'>" + tChar + "</span>";
}
}
tempStr += "<span id='crka" + currentPos + "' class='txtBlue'>" + currentChar + "</span>";
for (var j = currentPos + 1; j < ttext.length; j++) {
var tChar = ttext[j];
if (tChar === '\n') {
tempStr += "<span id='crka" + j + "' class='txtBlack'>↓</span><br>";
} else {
tempStr += "<span id='crka" + j + "' class='txtBlack'>" + tChar + "</span>";
}
}
} else {
for (var i = 0; i < ttext.length; i++) {
var tChar = ttext[i];
if (i === 0) {
tempStr += "<span id='crka" + i + "' class='txtBlue'>" + tChar + "</span>";
if (isCombined(tChar)) {
$("#form1").off("keypress", "#tb1", keyPressed);
$("#form1").on("keyup", "#tb1", keyupCombined);
}
} else if (tChar === '\n') {
tempStr += "<span id='crka" + i + "' class='txtBlack'>↓</span><br>";
} else {
tempStr += "<span id='crka" + i + "' class='txtBlack'>" + tChar + "</span>";
}
}
}
$('#texttoenter').html(tempStr);
}
/**
* Calculate speed.
*
* @param {number} sc.
* @returns {number}.
*/
function calculateSpeed(sc) {
if ((!continuousType && !countMistypedSpaces) || (!continuousType && countMistypedSpaces)) {
// Normally use this.
return (((currentPos + mistakes) * 60) / sc);
} else {
// Use this when set to continuous type.
return ((currentPos * 60) / sc);
}
}
/**
* Calculate accuracy.
*
* @param {number} currentPos.
* @param {number} mistakes.
* @returns {number}.
*/
function calculateAccuracy() {
if (currentPos + mistakes === 0) {
return 0;
}
// Only correctly typed count.
return (((currentPos - mistakes) * 100) / currentPos);
}
/**
* Update current time, progress, mistakes presicsion, hits per minute, and words per minute.
*
* @param {number} startTime.
* @param {number} newCas.
* @param {number} secs.
* @param {number} tDifference.
* @param {number} mistakes.
* @param {number} currentPos.
* @param {number} fullText.
* @param {number} currentPos.
* @param {varchar} mistakestring.
*/
function updTimeSpeed() {
newCas = new Date();
tDifference = timeDifference(startTime, newCas);
secs = converToSeconds(tDifference.getHours(), tDifference.getMinutes(), tDifference.getSeconds());
// If timelimit is set, subtract elapsed time from the timelimit and set a flag.
if (rpTimeLimit2 != 0) rpTimeLimit3 = rpTimeLimit2 - secs;
// Each minute when seconds display is less than 10 seconds, add leading 0:0.
if (tDifference.getSeconds() < 10) {
$('#jsTime2').html(tDifference.getMinutes() + ':0' + tDifference.getSeconds());
} else {
// Each time the display is greater than 9 seconds drop the leading zero.
$('#jsTime2').html(tDifference.getMinutes() + ':' + tDifference.getSeconds());
}
$('#jsProgress2').html(currentPos + "/" + fullText.length);
$('#jsMistakes2').html(mistakes);
$('#jsSpeed2').html(calculateSpeed(secs).toFixed(2));
$('#jsAcc2').html(calculateAccuracy(fullText, mistakes).toFixed(2));
var gwpm = (calculateSpeed(secs) / 5);
var nwpm = ((calculateSpeed(secs) / 5) - (mistakes / (secs / 60)));
$('#jsWpm2').html((gwpm.toFixed(1)) + " | " + (nwpm.toFixed(1)));
if (mistakestring) {
$('#jsDetailMistake').html(countChars(mistakestring));
}
}
/**
* Count the number of characters.
* Separating characters = separateChars
* @param {int} dem. Number of mistakes for the current character
* @result {varchar} result.
*/
function countChars(str) {
var arr = separateChars(str);
arr.sort();
var arrC = new Array();
var result = "" ;
//alert(arr);
for ( var j = 0 ; j<arr.length ; j++) {
var dem = 0 ;
for ( var i = 0 ; i< str.length ; i++ ) {
if(str[i] == arr[j]) dem++;
}
result += "'" + arr[j] + "'=" + dem + ", " ;
}
return result;
}
// Separation of characters = separateChars
function separateChars(str) {
//console.log('In the separateChars function and str is '+str);
var array = new Array();
var k = 1 ;
array[0] = str[0];
for(var i = 1 ; i<str.length ; i++){
for(var j = 0 ; j<=array.length ; j++){
if( j == array.length ){
array[k] = str[i] ;
k++;
}
if ( str[i] == array[j] ) break;
}
}
return array;
}