-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
416 lines (367 loc) · 11.6 KB
/
script.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
import Queue from "./Algorithms/Queue/Queue.js";
import Stack from "./Algorithms/Stack/Stack.js";
import PriorityQueue from "./Algorithms/Queue/priorityQueue.js";
import dfs from "./Algorithms/PathAlgorithms/DFS.js";
import bfs from "./Algorithms/PathAlgorithms/BFS.js";
import callGreedyBFS from "./Algorithms/PathAlgorithms/greedyBFS.js";
import callDijkstra from "./Algorithms/PathAlgorithms/Dijkstra.js";
import callAStar from "./Algorithms/PathAlgorithms/AStar.js";
import BidirectionalSearch from "./Algorithms/PathAlgorithms/Bidirectional.js";
let mat = [];
let running = false;
let idx = 0;
const grid = document.getElementById("grid");
const selectOptions = document.getElementById("selectTab");
const screen = document.getElementById("screen");
const pointer = document.getElementById("pointer");
const inst = document.getElementById("instuction");
let entryType = "";
let startNode = null;
let destinationNode = null;
let speed = 40;
let timeOuts = [];
const row = 12;
const col = 42;
let entries = row * col;
const instructions = [
"Tutorial - Click Next",
"Click on 'Start' to select a starting point",
"Now click anywhere on the grid to place the start node",
"Click on 'Destination' to select an ending point",
"Now click anywhere on the grid to place the end node",
"You can also click on 'Wall' to place walls",
"Select a Path Finding Algorithm from here",
"Now click 'Run Algorithm' to visualize it",
"You can select visualization speed here",
"and generate a random grid of walls here",
"click 'ResetMatrix' to remove all unwanted nodes"
];
setMatrix();
setMatrixNodes();
callTutorial();
function setMatrix() {
for (let i = 0; i < row; i++) {
mat[i] = [];
for (let j = 0; j < col; j++) {
mat[i][j] = 1;
}
}
}
function setMatrixNodes() {
for (let i = 0; i < entries; i++) {
const node = document.createElement("div");
node.classList.add("entry");
node.addEventListener("click", () => {
node.classList.add("entry");
if (entryType === "start") {
if (node == destinationNode) {
destinationNode = null;
}
if (startNode) {
startNode.classList.remove("start");
}
node.classList.remove("destination", "wall");
node.classList.add(entryType);
startNode = node;
mat[node.getAttribute("row")][node.getAttribute("col")] = 1;
// console.log("col: ", node.getAttribute("col"), "row: ", node.getAttribute("row"));
} else if (entryType === "destination") {
if (node == startNode) {
startNode = null;
}
if (destinationNode) {
destinationNode.classList.remove("destination");
}
node.classList.remove("start", "wall");
node.classList.add(entryType);
destinationNode = node;
mat[node.getAttribute("row")][node.getAttribute("col")] = 1;
// console.log("col: ", node.getAttribute("col"), "row: ", node.getAttribute("row"));
} else if (entryType === "wall") {
if (node == startNode) {
startNode = null;
}
if (node == destinationNode) {
destinationNode = null;
}
node.classList.remove("destination", "start");
node.classList.toggle(entryType);
mat[node.getAttribute("row")][node.getAttribute("col")] =
mat[node.getAttribute("row")][node.getAttribute("col")] === 1 ? -1 : 1;
// console.log("col: ", node.getAttribute("col"), "row: ", node.getAttribute("row"));
}
});
node.setAttribute("col", i % col);
node.setAttribute("row", Math.floor(i / col));
grid.appendChild(node);
}
}
function resetMatrix() {
if (running) {
running = false;
};
clearAnimations();
setMatrix();
const entries = grid.children;
for (let entry of entries) {
entry.classList.remove("wall", "path", "endPoint", "visited");
}
if (startNode) startNode.classList.add("start");
if (destinationNode) destinationNode.classList.add("destination");
}
function callAlgo() {
resetPath();
clearAnimations();
running = true;
let i;
let j;
let m;
let n;
let visited = [];
var text = selectOptions.options[selectOptions.selectedIndex].value;
if (text === "") return;
if (startNode === null || destinationNode === null) return;
i = Number(startNode.getAttribute("row"));
j = Number(startNode.getAttribute("col"));
m = Number(destinationNode.getAttribute("row"));
n = Number(destinationNode.getAttribute("col"));
for (let i = 0; i < row; i++) {
visited[i] = [];
for (let j = 0; j < col; j++) {
visited[i][j] = false;
}
}
let shortestPath = [];
const copy = mat.map(row => [...row]); // we are not doing "copy = mat" because it goes by reference not val;
if (text === "deapthFirstSearch") {
let result = [];
let queue = new Queue();
let len = Number.MAX_SAFE_INTEGER;
dfs(queue, copy, visited, i, j, result, m, n, shortestPath);
if (shortestPath.length > 0) {
runAnimation(result[0], shortestPath[0]);
} else {
runAnimation(queue.getQueue(), null);
}
} else if (text === "breathFirstSearch") {
let queue = new Queue();
let path = new Queue();
if (bfs(path, queue, copy, visited, i, j, m, n, row, col, shortestPath)) {
runAnimation(path.getQueue(), shortestPath);
} else {
runAnimation(path.getQueue(), null);
}
} else if (text === "greedyBreathFirstSearch") {
let queue = new PriorityQueue();
let path = new Queue();
if (callGreedyBFS(queue, path, copy, visited, i, j, m, n, row, col, shortestPath)) {
runAnimation(path.getQueue(), shortestPath);
} else {
runAnimation(path.getQueue(), null);
}
} else if (text === "dijkastraAlgorithm") {
let queue = new Queue();
let path = new PriorityQueue();
let nodes = [];
if (callDijkstra(queue, shortestPath, path, copy, visited, i, j, m, n, row, col, nodes)) {
runAnimation(nodes, shortestPath);
} else {
runAnimation(nodes, null);
}
} else if (text === "aStarAlgorithm") {
let queue = new Queue();
let pQueue = new PriorityQueue();
// shortestPath = aStarSearch(copy, [i, j], [m, n], row, col, queue, visited, pQueue);
// runAnimation(queue.getQueue(), shortestPath);
if (callAStar(pQueue, queue, copy, visited, i, j, m, n, row, col, shortestPath)) {
runAnimation(queue.getQueue(), shortestPath);
} else {
runAnimation(queue.getQueue(), null);
}
} else if (text === "bidirectionalAlgorithm") {
let path = new Queue();
let bidirectional = new BidirectionalSearch(row, col, shortestPath, path, copy);
bidirectional.bidirectionalBFS([i, j], [m, n]);
if (bidirectional.found) {
runAnimation(path.getQueue(), shortestPath);
} else {
runAnimation(path.getQueue(), null);
}
}
}
function generateRandomWalls(row, col, mat) {
resetMatrix();
clearAnimations();
for (let i = 0; i < row; i++) {
for (let j = 0; j < col; j++) {
let int = getRandomInteger(-1, 1);
if (int === -1) {
const entry = document.querySelector(`[row="${i}"][col="${j}"]`);
if (entry != null && (entry == startNode || entry == destinationNode)) continue;
if (entry != null) {
mat[i][j] = -1;
entry.classList.toggle("wall");
} else {
mat[i][j] = 1;
}
} else {
mat[i][j] = 1;
}
}
}
}
function runAnimation(list, result) {
if (list === null || list === -1) {
running = false;
return;
}
console.log('Path size:', list.length);
let len = list.length;
for (let i=0;i<len;i++) {
let r = list[i][0];
let c = list[i][1];
const entry = document.querySelector(`[row="${r}"][col="${c}"]`);
// console.log("ele: ", entry);
if (entry != null && (entry == startNode || entry == destinationNode)) {
entry.classList.remove("destination", "start");
entry.classList.add("endPoint");
}
timeOuts.push(
setTimeout(() => {
setClass(i, entry, len-1);
}, i * speed)
);
}
if (result != null){
timeOuts.push(
setTimeout(() => {
runShortestAnimation(result);
}, (len+12)*speed)
);
}
running = false;
}
function runShortestAnimation(list) {
let len = list.length;
for (let i=0;i<len;i++) {
let r = list[i][0];
let c = list[i][1];
const entry = document.querySelector(`[row="${r}"][col="${c}"]`);
setTimeout(() => {
if (entry != null) {
entry.classList.remove("path");
entry.classList.add("visited");
}
}, i * speed-10);
}
}
function resetPath() {
if (running) return;
const entries = grid.children;
for (let entry of entries) {
entry.classList.remove("path", "endPoint", "visited");
}
if (startNode) startNode.classList.add("start");
if (destinationNode) destinationNode.classList.add("destination");
}
function callTutorial() {
if (idx === 0) {
setTutorialListners();
screen.style.opacity = '0.3';
}
inst.innerText = instructions[idx];
pointer.style.height = '7.5%';
if (idx === 1 || idx === 3 || idx === 5) {
// navbar
pointer.style.top = '1.5%';
pointer.style.width= '10%';
if (idx === 3) {
pointer.style.left = '73%'; // destination
} else if (idx === 1 ) {
pointer.style.left = '64% '; // start
} else {
pointer.style.left = '82%'; // wall
}
} else if (idx === 2 || idx === 4) {
// grid
pointer.style.top = '25%';
pointer.style.width= '93%';
pointer.style.height = '55%';
pointer.style.left = '3%';
} else if (idx === 6 || idx === 7) {
// select menu
pointer.style.top = '82%';
pointer.style.width= '20%';
if (idx === 6) {
pointer.style.left = '10%'; // algo
} else {
pointer.style.left = '72%'; // run
}
} else {
// options menu
pointer.style.top = '12.3%';
pointer.style.width= '15%';
if (idx === 8) {
pointer.style.left = '8%'; // speed
} else if (idx === 9) {
pointer.style.left = '43%'; // walls
} else {
pointer.style.left = '76%'; // reset
}
}
}
function setTutorialListners() {
const tut = document.getElementById('tutorial-container');
const skip = document.getElementById('skip');
const next = document.getElementById('next');
skip.addEventListener("click", () => {
screen.style.opacity = '1';
tut.style.display = 'none';
});
next.addEventListener("click", () => {
if (idx == 0) pointer.style.display = 'block';
idx++;
if (idx == 1) inst.style.fontSize = 'large';
if (idx == instructions.length) {
screen.style.opacity = '1';
tut.style.display = 'none';
}
callTutorial();
});
}
function clearAnimations() {
for (let i = 0; i < timeOuts.length; i++) {
clearTimeout(timeOuts[i]);
}
timeOuts = [];
}
function setClass(i, entry, end) {
if (entry != null && i !=0 && i!=end) {
entry.classList.remove("destination", "start");
entry.classList.add("path");
}
}
function getRandomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}
function callGenerateRandomWalls() {
generateRandomWalls(row, col, mat);
}
function setEntryType(type) {
entryType = type;
}
function setSpeed(value) {
speed = value;
}
window.setEntryType = setEntryType;
window.callAlgo = callAlgo;
window.resetMatrix = resetMatrix;
window.setSpeed = setSpeed;
window.callGenerateRandomWalls = callGenerateRandomWalls;
// navbar: top -> 1.5% || width -> 10%; || height: 7.5%;
// =>> s -> 64% || d -> 73% || w -> 82%
// options: top -> 12.3%; || width -> 15% || height: 7.5%;
// =>> ss -> 8% || rw -> 43% || rm -> 76%
// select: top -> 82% || width -> 20% || height: 7.5%;
// =>> run -> 72% || algo -> 10%
// grid: top -> 25% || width -> 93% || height: 55%;