-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchess.js
250 lines (215 loc) · 8.44 KB
/
chess.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
const numberbox = document.getElementById("numberbox");
const slider = document.getElementById("slider");
const progressBar = document.getElementById("progress-bar")
const playButton = document.getElementById('play-button');
const pauseButton = document.getElementById("pause-button");
const queen = '<i class="fas fa-chess-queen" style="color:#000"></i>';
let isMainContainerVisible = false;
function toggleVisibility() {
const landingPage = document.querySelector('.landing-div');
const mainContainer = document.querySelector('.n-queen');
if (isMainContainerVisible) {
landingPage.style.display = 'none';
mainContainer.style.display = 'flex';
} else {
landingPage.style.display = 'block';
mainContainer.style.display = 'none';
}
}
window.onload = toggleVisibility;
document.getElementById('start-button').onclick = function () {
isMainContainerVisible = true;
toggleVisibility();
};
let n, speed, tempSpeed, q, Board = 0;
let array = [0, 2, 1, 1, 3, 11, 5, 41, 93];
// Used to store the state of the boards;
let pos = {};
speed = (100 - slider.value) * 10;
tempSpeed = speed;
slider.oninput = function () {
progressBar.style.width = this.value + "%";
const sliderValue = parseInt(this.value, 10);
if (sliderValue <= 25) {
progressBar.style.backgroundColor = "green";
slider.className = 'slider green';
} else if (sliderValue > 25 && sliderValue <= 75) {
progressBar.style.backgroundColor = "#ffd200";
slider.className = 'slider yellow';
} else {
progressBar.style.backgroundColor = "red";
slider.className = 'slider red';
}
speed = sliderValue;
speed = (100 - speed) * 10;
};
class Queen {
constructor() {
this.position = Object.assign({}, pos);
this.uuid = [];
}
nQueen = async () => {
Board = 0;
this.position[`${Board}`] = {};
numberbox.disabled = true;
await q.solveQueen(Board, 0, n);
await q.clearColor(Board);
numberbox.disabled = false;
}
isValid = async (board, r, col, n) => {
//Setting the current box color to orange
const table = document.getElementById(`table-${this.uuid[board]}`);
const currentRow = table.firstChild.childNodes[r];
const currentColumn = currentRow.getElementsByTagName("td")[col];
currentColumn.innerHTML = queen;
await q.delay();
// Checking the queen in the same column
for (let i = r - 1; i >= 0; --i) {
const row = table.firstChild.childNodes[i];
const column = row.getElementsByTagName("td")[col];
const value = column.innerHTML;
if (value == queen) {
column.style.backgroundColor = "#ff0000";
currentColumn.innerHTML = "-"
return false;
}
column.style.backgroundColor = "#ddff00";
await q.delay();
}
//Checking the upper left diagonal
for (let i = r - 1, j = col - 1; i >= 0 && j >= 0; --i, --j) {
const row = table.firstChild.childNodes[i];
const column = row.getElementsByTagName("td")[j];
const value = column.innerHTML;
if (value == queen) {
column.style.backgroundColor = "#fb5607";
currentColumn.innerHTML = "-"
return false;
}
column.style.backgroundColor = "#ffca3a";
await q.delay();
}
// Checking the upper right diagonal
for (let i = r - 1, j = col + 1; i >= 0 && j < n; --i, ++j) {
const row = table.firstChild.childNodes[i];
const column = row.getElementsByTagName("td")[j];
const value = column.innerHTML;
if (value == queen) {
column.style.backgroundColor = "#FB5607";
currentColumn.innerHTML = "-"
return false;
}
column.style.backgroundColor = "#ffca3a";
await q.delay();
}
return true;
}
clearColor = async (board) => {
for (let j = 0; j < n; ++j) {
const table = document.getElementById(`table-${this.uuid[board]}`);
const row = table.firstChild.childNodes[j];
for (let k = 0; k < n; ++k)
(j + k) & 1
? (row.getElementsByTagName("td")[k].style.backgroundColor = "#03852e")
: (row.getElementsByTagName("td")[k].style.backgroundColor = "#ffffff");
}
}
delay = async () => {
await new Promise((done) => setTimeout(() => done(), speed));
}
solveQueen = async (board, r, n) => {
if (r == n) {
++Board;
let table = document.getElementById(`table-${this.uuid[Board]}`);
for (let k = 0; k < n; ++k) {
let row = table.firstChild.childNodes[k];
row.getElementsByTagName("td")[this.position[board][k]].innerHTML = queen;
}
this.position[Board] = this.position[board];
return;
}
for (let i = 0; i < n; ++i) {
await q.delay();
// console.log("outside:" + board);
await q.clearColor(board);
if (await q.isValid(board, r, i, n)) {
await q.delay();
// console.log("inside:" + board)
await q.clearColor(board);
let table = document.getElementById(`table-${this.uuid[board]}`);
let row = table.firstChild.childNodes[r];
row.getElementsByTagName("td")[i].innerHTML = queen;
this.position[board][r] = i;
if (await q.solveQueen(board, r + 1, n))
await q.clearColor(board);
await q.delay();
board = Board;
// console.log(this.Board)
table = document.getElementById(`table-${this.uuid[board]}`);
// console.log(JSON.parse(JSON.stringify(table)));
row = table.firstChild.childNodes[r];
row.getElementsByTagName("td")[i].innerHTML = "-";
delete this.position[`${board}`][`${r}`];
}
}
}
}
playButton.onclick = async function visualise() {
const chessBoard = document.getElementById("n-queen-board");
const arrangement = document.getElementById("queen-arrangement");
n = numberbox.value;
q = new Queen();
if (n > 8) {
numberbox.value = "";
alert("Queen value is too large");
return;
} else if (n < 1) {
numberbox.value = "";
alert("Queen value is too small");
return;
}
// Removing all the of previous execution context
while (chessBoard.hasChildNodes()) {
chessBoard.removeChild(chessBoard.firstChild);
}
if (arrangement.hasChildNodes()) {
arrangement.removeChild(arrangement.lastChild)
}
const para = document.createElement("p");
para.setAttribute("class", "queen-info");
para.innerHTML = `For ${n}x${n} board, ${array[n] - 1} arrangements are possible.`;
arrangement.appendChild(para);
//Adding boards to the Div
if (chessBoard.childElementCount === 0) {
for (let i = 0; i < array[n]; ++i) {
q.uuid.push(Math.random());
let div = document.createElement('div');
let table = document.createElement('table');
let header = document.createElement('h4');
// div.setAttribute("id", `div-${100 + uuid[i]}`)
header.innerHTML = `Board ${i + 1} `
table.setAttribute("id", `table-${q.uuid[i]}`);
header.setAttribute("id", `paragraph-${i}`);
chessBoard.appendChild(div);
div.appendChild(header);
div.appendChild(table);
}
}
for (let k = 0; k < array[n]; ++k) {
let table = document.getElementById(`table-${q.uuid[k]}`);
for (let i = 0; i < n; ++i) {
const row = table.insertRow(i); // inserting ith row
row.setAttribute("id", `Row${i} `);
for (let j = 0; j < n; ++j) {
const col = row.insertCell(j); // inserting jth column
(i + j) & 1
? (col.style.backgroundColor = "#FF9F1C")
: (col.style.backgroundColor = "#FCCD90");
col.innerHTML = "-";
col.style.border = "0.3px solid #373f51";
}
}
await q.clearColor(k);
}
await q.nQueen();
};