-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path15-puzzle.js
235 lines (185 loc) · 4.38 KB
/
15-puzzle.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
/**
* 15-puzzle.js
*
* Copyright (c) 2015 Arnis Ritins
* Released under the MIT license
*/
(function(){
var state = 1;
var puzzle = document.getElementById('puzzle');
// Creates solved puzzle
solve();
// Listens for click on puzzle cells
puzzle.addEventListener('click', function(e){
if(state == 1){
// Enables sliding animation
puzzle.className = 'animate';
shiftCell(e.target);
}
});
// Listens for click on control buttons
document.getElementById('solve').addEventListener('click', solve);
document.getElementById('scramble').addEventListener('click', scramble);
/**
* Creates solved puzzle
*
*/
function solve(){
if(state == 0){
return;
}
puzzle.innerHTML = '';
var n = 1;
for(var i = 0; i <= 3; i++){
for(var j = 0; j <= 3; j++){
var cell = document.createElement('span');
cell.id = 'cell-'+i+'-'+j;
cell.style.left = (j*80+1*j+1)+'px';
cell.style.top = (i*80+1*i+1)+'px';
if(n <= 15){
cell.classList.add('number');
cell.classList.add((i%2==0 && j%2>0 || i%2>0 && j%2==0) ? 'dark' : 'light');
cell.innerHTML = (n++).toString();
} else {
cell.className = 'empty';
}
puzzle.appendChild(cell);
}
}
}
/**
* Shifts number cell to the empty cell
*
*/
function shiftCell(cell){
// Checks if selected cell has number
if(cell.clasName != 'empty'){
// Tries to get empty adjacent cell
var emptyCell = getEmptyAdjacentCell(cell);
if(emptyCell){
// Temporary data
var tmp = {style: cell.style.cssText, id: cell.id};
// Exchanges id and style values
cell.style.cssText = emptyCell.style.cssText;
cell.id = emptyCell.id;
emptyCell.style.cssText = tmp.style;
emptyCell.id = tmp.id;
if(state == 1){
// Checks the order of numbers
setTimeout(checkOrder, 150);
}
}
}
}
/**
* Gets specific cell by row and column
*
*/
function getCell(row, col){
return document.getElementById('cell-'+row+'-'+col);
}
/**
* Gets empty cell
*
*/
function getEmptyCell(){
return puzzle.querySelector('.empty');
}
/**
* Gets empty adjacent cell if it exists
*
*/
function getEmptyAdjacentCell(cell){
// Gets all adjacent cells
var adjacent = getAdjacentCells(cell);
// Searches for empty cell
for(var i = 0; i < adjacent.length; i++){
if(adjacent[i].className == 'empty'){
return adjacent[i];
}
}
// Empty adjacent cell was not found
return false;
}
/**
* Gets all adjacent cells
*
*/
function getAdjacentCells(cell){
var id = cell.id.split('-');
// Gets cell position indexes
var row = parseInt(id[1]);
var col = parseInt(id[2]);
var adjacent = [];
// Gets all possible adjacent cells
if(row < 3){adjacent.push(getCell(row+1, col));}
if(row > 0){adjacent.push(getCell(row-1, col));}
if(col < 3){adjacent.push(getCell(row, col+1));}
if(col > 0){adjacent.push(getCell(row, col-1));}
return adjacent;
}
/**
* Chechs if the order of numbers is correct
*
*/
function checkOrder(){
// Checks if the empty cell is in correct position
if(getCell(3, 3).className != 'empty'){
return;
}
var n = 1;
// Goes through all cells and checks numbers
for(var i = 0; i <= 3; i++){
for(var j = 0; j <= 3; j++){
if(n <= 15 && getCell(i, j).innerHTML != n.toString()){
// Order is not correct
return;
}
n++;
}
}
// Puzzle is solved, offers to scramble it
if(confirm('Congrats, You did it! \nScramble the puzzle?')){
scramble();
}
}
/**
* Scrambles puzzle
*
*/
function scramble(){
if(state == 0){
return;
}
puzzle.removeAttribute('class');
state = 0;
var previousCell;
var i = 1;
var interval = setInterval(function(){
if(i <= 100){
var adjacent = getAdjacentCells(getEmptyCell());
if(previousCell){
for(var j = adjacent.length-1; j >= 0; j--){
if(adjacent[j].innerHTML == previousCell.innerHTML){
adjacent.splice(j, 1);
}
}
}
// Gets random adjacent cell and memorizes it for the next iteration
previousCell = adjacent[rand(0, adjacent.length-1)];
shiftCell(previousCell);
i++;
} else {
clearInterval(interval);
state = 1;
}
}, 5);
}
/**
* Generates random number
*
*/
function rand(from, to){
return Math.floor(Math.random() * (to - from + 1)) + from;
}
}());