-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcw.js
377 lines (359 loc) · 11.7 KB
/
cw.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
function CrosswordData() {
var active_letter;
var active_word;
var LEFT;
var RIGHT;
var UP;
var DOWN;
}
CrosswordData.splitWordAndGetLetter = function() {
tmp = CrosswordData.active_letter.split('-');
return tmp[2];
}
function store() {
//store a cookie if there isn't already one
//check the crossword
//submit an ajax request to flag this cookie as having completed this crossword
}
function concentrate() {
//Remove the board, show a single clue and the layout (and any letters)
$("div#crossword").hide();
}
var inputBind = function(event)
{
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":CALL<br/>");
letter = CrosswordData.splitWordAndGetLetter();
if (event.which == 0 || event.which == 229) {
//Uh-oh Android Chrome
// https://code.google.com/p/chromium/issues/detail?id=118639
//Get the contents of the input box and send that - send 8 if it's empty
content = this.value;
event.which = content.toUpperCase().charCodeAt(0);
}
if (event.which == 16 || event == 13)
return;
//Get ordered list of words in clue
allWordsInClue = getAllWordsInClue(CrosswordData.active_word);
if (event.which == CrosswordData.UP || event.which == CrosswordData.DOWN || event.which == CrosswordData.LEFT || event.which == CrosswordData.RIGHT) {
new_letter = getSpace(CrosswordData.active_letter, event.which);
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":NEW/OLD="+new_letter+"/"+CrosswordData.active_letter+"<br/>");
if (new_letter != CrosswordData.active_letter) {
CrosswordData.active_letter = moveTo(new_letter, words_in_clue[CrosswordData.active_word]);
split_letter = CrosswordData.active_letter.split('-');
letter = split_letter[2];
}
} else if (event.which == 8) {
$("input#"+CrosswordData.active_letter).val('');
if (intersections[CrosswordData.active_letter]) {
$("input#"+intersections[CrosswordData.active_letter]).val('');
}
if (letter > 1) {
letter--;
CrosswordData.active_letter = moveTo(split_word[0]+"-"+split_word[1]+"-"+(parseInt(letter)), CrosswordData.active_word)
} else if (letter == 1 && allWordsInClue.length > 1) {
//console.log("Old word");
for (i in allWordsInClue) {
if (allWordsInClue[i] == CrosswordData.active_word) {
//console.log("Got word : " + i);
break;
}
}
if (i == 0) {
return false;
}
previous_word = allWordsInClue[i-1]
moveTo(previous_word+"-"+lengths[previous_word], CrosswordData.active_word);
return false;
}
} else {
$("input#"+CrosswordData.active_letter).val(get_letter(event.which));
if (intersections[CrosswordData.active_letter]) {
$("input#"+intersections[CrosswordData.active_letter]).val(get_letter(event.which));
}
//move CrosswordData.RIGHT/CrosswordData.DOWN for keypress, CrosswordData.UP/CrosswordData.LEFT for backspace
//$("div#information").html($("div#information").html()+new Date().getTime()+":LETT="+letter+"<br/>");
//console.log(new Date().getTime()+":LETT="+letter);
//alert(new Date().getTime()+":WHICH="+event.which);
//processOne(how)
allWordsInClue = getAllWordsInClue(CrosswordData.active_word);
for (ii in allWordsInClue) {
currentWord = allWordsInClue[ii];
word_is_right = true;
for (index = 0; index < lengths[currentWord]; index++) {
letter_tmp = solutions[currentWord][index];
key = currentWord+"-"+(index+1);
if ($("input#"+key).val() != letter_tmp) {
word_is_right = false;
if (intersections[key]) {
$("input#"+intersections[key]).val('');
}
}
}
for (index = 0; index < lengths[currentWord]; index++) {
key = currentWord+"-"+(index+1);
if (word_is_right)
{
$("input#"+key).addClass("correct");
if (intersections[key]) {
$("input#"+intersections[key]).addClass("correct");
}
}
else
{
$("input#"+key).removeClass("correct");
if (intersections[key]) {
$("input#"+intersections[key]).removeClass("correct");
}
}
}
}
if (letter < lengths[CrosswordData.active_word]) {
letter++;
CrosswordData.active_letter = moveTo(split_word[0]+"-"+split_word[1]+"-"+(parseInt(letter)), words_in_clue[CrosswordData.active_word]);
} else if (letter == lengths[CrosswordData.active_word] && allWordsInClue.length > 1) {
for (i in allWordsInClue) {
if (allWordsInClue[i] == CrosswordData.active_word) {
break;
}
}
if (i >= allWordsInClue.length - 1) {
return false;
}
next_word = allWordsInClue[parseInt(i)+1]
moveTo(next_word+"-1", CrosswordData.active_word);
return false;
}
}
return false;
}
var words = {};
function processOne(how) {
allWordsInClue = getAllWordsInClue(CrosswordData.active_word);
for (i in allWordsInClue) {
currentWord = allWordsInClue[i];
word_is_right = true;
for (index = 0; index < lengths[currentWord]; index++) {
letter = solutions[currentWord][index];
key = currentWord+"-"+(index+1);
if (how == 'cheat') {
$("input#"+key).val(letter);
if (intersections[key]) {
$("input#"+intersections[key]).val(letter);
}
} else if (how == 'check') {
if ($("input#"+key).val() != letter) {
$("input#"+key).val('');
if (intersections[key]) {
$("input#"+intersections[key]).val('');
}
}
} else if (how == 'check_word') {
if ($("input#"+key).val() != letter) {
word_is_right = false;
if (intersections[key]) {
$("input#"+intersections[key]).val('');
}
}
}
}
if (how == 'check_word')
{
for (index = 0; index < lengths[currentWord]; index++) {
if (word_is_right)
{
$("input#"+key).addClass("correct");
if (intersections[key]) {
$("input#"+intersections[key]).addClass("correct");
}
}
else
{
$("input#"+key).removeClass("correct");
if (intersections[key]) {
$("input#"+intersections[key]).removeClass("correct");
}
}
}
}
}
}
function getAllWordsInClue(anyWord) {
for (tmp in words_in_clue) {
if (typeof(words_in_clue[tmp]) != 'undefined') {
if (tmp != anyWord && words_in_clue[tmp].length > 1) {
for (tmptmp in words_in_clue[tmp]) {
if (typeof(words_in_clue[tmp][tmptmp]) != 'undefined') {
if (words_in_clue[tmp][tmptmp] == anyWord) {
return words_in_clue[tmp];
}
}
}
}
}
}
//Single word
return words_in_clue[anyWord];
}
function processAll(how) {
start = new Date().getTime()
//$("#active-clue").html(start + " - ");
if (typeof(CrosswordData.active_word) != 'undefined') {
old_active_word = CrosswordData.active_word;
$.each(solutions, function(solution, letter) {
solution_split = solution.split('-');
CrosswordData.active_word = solution_split[0]+"-"+solution_split[1];
processOne(how);
});
CrosswordData.active_word = old_active_word;
}
end = new Date().getTime();
//$("#active-clue").append(end + " = " + (end - start));
}
function getSpace(from, direction) {
var old_from = from;
split_from = from.split('-');
//if there's an intersection and the direction is perpendicular to the current clue
if (
(
(split_from[1] == 'across' && (direction == CrosswordData.UP || direction == CrosswordData.DOWN)) ||
(split_from[1] == 'down' && (direction == CrosswordData.LEFT || direction == CrosswordData.RIGHT))
) && intersections[split_from[0]+"-"+split_from[1]+"-"+split_from[2]]
) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":INT"+from);
//Don't move in the next clue, just select the next clue
//return getSpace(intersections[split_from[0]+"-"+split_from[1]+"-"+split_from[2]], direction);
return intersections[split_from[0]+"-"+split_from[1]+"-"+split_from[2]];
} else {
if (
(
(
(split_from[1] == 'across' && direction == CrosswordData.LEFT) ||
(split_from[1] == 'down' && direction == CrosswordData.UP)
) && parseInt(split_from[2]) == 1
) || (
(
(split_from[1] == 'across' && direction == CrosswordData.RIGHT) ||
(split_from[1] == 'down' && direction == CrosswordData.DOWN)
) && parseInt(split_from[2]) == lengths[split_from[0]+"-"+split_from[1]]
)
) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":NOMOVE"+from);
//TODO is there an extra word in this clue?
return from;
}
if ((split_from[1] == 'across' && direction == CrosswordData.LEFT) || (split_from[1] == 'down' && direction == CrosswordData.UP)) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":BACK"+from);
return split_from[0]+"-"+split_from[1]+"-"+(parseInt(split_from[2])-1);
} else if ((split_from[1] == 'across' && direction == CrosswordData.RIGHT) || (split_from[1] == 'down' && direction == CrosswordData.DOWN)) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":FORWARD"+from);
return split_from[0]+"-"+split_from[1]+"-"+(parseInt(split_from[2])+1);
}
}
return from;
}
function checkSpace(place) {
place_split = place.split('-');
if (place_split[2] < 1) {
return false;
}
clue = place_split[0]+"-"+place_split[1];
if (place_split[2] > lengths[clue]) {
return false;
}
return true;
}
function moveTo(new_letter, old_word) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":KEY"+new_letter+"<br/>");
$("input#"+new_letter).focus();
split_letter = new_letter.split('-');
word = split_letter[0]+"-"+split_letter[1];
CrosswordData.active_letter = new_letter;
if (word != old_word) {
//$("div#information").html(//$("div#information").html()+new Date().getTime()+":HLT"+word+"/"+split_letter[2]+"<br/>");
clearAllExcept([word]);
highlightWord(word, split_letter[2]);
}
//$("div#information").html($("div#information").html()+new Date().getTime()+":DST"+new_letter+"<br/>");
return new_letter;
}
function clearAllExcept(exceptions) {
$("div#crossword div > input.active").removeClass("highlight").css("z-index", '');
$("div.clue").removeClass("darken");
}
function highlightWord(word, letter) {
CrosswordData.active_word=word;
////$("div#information").html(//$("div#information").html()+new Date().getTime()+":TOP"+word+"-"+letter+"<br/>");
CrosswordData.active_letter = word+"-"+letter;
split_word = word.split('-');
clearAllExcept(words_in_clue[word]);
clue = "";
//search through all of words_in_clue to see if this word is in any others
//TODO Make this a jQ method call so it can be incorporated into the backspace multi-word function above.
allWordsInClue = getAllWordsInClue(word);
for (i in allWordsInClue) {
currentWord = allWordsInClue[i];
$("div#"+currentWord+".word input").addClass("highlight").css("z-index","99");
$("div#"+currentWord+"-clue").addClass("darken");
clue += $("div#"+currentWord+"-clue").html()+"\n</br>";
}
$("div#active-clue").html(clue);
//Concentration mode
//$("div#active-word").html($("div#" + word).html());
//$("div#active-word :input").removeAttr('id').removeAttr('onfocus').keyup(inputBind);
}
function get_letter(which) {
switch(which) {
case 65:
return 'A';
case 66:
return 'B';
case 67:
return 'C';
case 68:
return 'D';
case 69:
return 'E';
case 70:
return 'F';
case 71:
return 'G';
case 72:
return 'H';
case 73:
return 'I';
case 74:
return 'J';
case 75:
return 'K';
case 76:
return 'L';
case 77:
return 'M';
case 78:
return 'N';
case 79:
return 'O';
case 80:
return 'P';
case 81:
return 'Q';
case 82:
return 'R';
case 83:
return 'S';
case 84:
return 'T';
case 85:
return 'U';
case 86:
return 'V';
case 87:
return 'W';
case 88:
return 'X';
case 89:
return 'Y';
case 90:
return 'Z';
}
}