-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
231 lines (182 loc) · 5.18 KB
/
main.ts
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
// vars
const cols = 20;
const rows = 20;
const displayGrid = document.querySelector('.display-grid');
const startBtn = document.querySelector('.start');
const grid: Tile[][] = new Array(cols);
const openSet: Tile[] = [];
const closedSet: Tile[] =[];
let start: Tile;
let end: Tile;
let divList: HTMLElement[] = [];
let finish: boolean = false;
// event listeners
document.addEventListener('DOMContentLoaded', createAStarAlg);
class Tile {
id: number;
col: number;
row: number;
f: number;
g: number;
h: number;
neighbors: Tile[];
isWall: boolean;
previous?: Tile;
constructor(id: number, col: number, row: number, isWall: boolean) {
this.id = id;
this.col = col;
this.row = row;
this.f = 0;
this.g = 0;
this.h = 0;
this.neighbors = [];
this.isWall = isWall;
}
addNeighbors() {
if (this.col > 0) {
this.neighbors.push(grid[this.col - 1][this.row]);
}
if (this.col < cols - 1) {
this.neighbors.push(grid[this.col + 1][this.row]);
}
if (this.row > 0) {
this.neighbors.push(grid[this.col][this.row - 1]);
}
if (this.row < rows - 1) {
this.neighbors.push(grid[this.col][this.row + 1]);
}
if (this.col > 0 && this.row > 0) { //NW
if (!(grid[this.col - 1][this.row].isWall || grid[this.col][this.row - 1].isWall)) {
this.neighbors.push(grid[this.col - 1][this.row - 1]);
}
}
if (this.col < cols - 1 && this.row < rows - 1) { //SE
if (!(grid[this.col + 1][this.row].isWall || grid[this.col][this.row + 1].isWall)) {
this.neighbors.push(grid[this.col + 1][this.row + 1]);
}
}
if (this.col < cols - 1 && this.row > 0 ) { //NE
if (!(grid[this.col + 1][this.row].isWall || grid[this.col][this.row - 1].isWall)) {
this.neighbors.push(grid[this.col + 1][this.row - 1]);
}
}
if (this.col > 0 && this.row < cols - 1) { //SW
if (!(grid[this.col - 1][this.row].isWall || grid[this.col][this.row + 1].isWall)) {
this.neighbors.push(grid[this.col - 1][this.row + 1]);
}
}
}
}
async function createAStarAlg(): Promise<void> {
for (let i = 0; i < cols; i++) {
grid[i] = new Array(rows);
}
setTiles();
drawGrid();
start = grid[0][0]
end = grid[cols - 1][rows - 1];
openSet.push(start);
// search path
if (openSet.length > 0) {
while (!finish) {
let winner = 0;
for (let i = 0; i < openSet.length; i++) {
if (openSet[i].f < openSet[winner].f) {
winner = i;
}
}
let current = openSet[winner];
if (current === end) {
finish = true;
divList[current.id].classList.add("finish")
getPath(current);
return;
}
removeFromArray(openSet, current);
closedSet.push(current)
// get neighbors
const neighbors = current.neighbors;
for (let i = 0; i < neighbors.length; i++) {
const neighbor = neighbors[i];
let newPath = false;
if (!closedSet.includes(neighbor) && !neighbor.isWall) {
updateGrid(neighbor.id);
let tempG = current.g + 1;
if (openSet.includes(neighbor)) {
if (tempG < neighbor.g) {
neighbor.g = tempG;
newPath = true;
}
} else {
neighbor.g = tempG;
newPath = true;
openSet.push(neighbor);
}
if (newPath) {
neighbor.h = heuristic(neighbor, end);
neighbor.f = neighbor.g + neighbor.h;
neighbor.previous = current;
}
}
}
await sleep(100);
}
} else {
console.log("No solution")
}
};
function setTiles(): void {
let counter = 0;
for (let i = 0; i < cols; i++) {
for (let j = 0; j < rows; j++) {
let randomBool = Math.random() < 0.2;
grid[i][j] = new Tile(counter, i, j, randomBool);
counter++
}
}
for (let i = 0; i < cols; i++) {
for (let j = 0; j < rows; j++) {
grid[i][j].addNeighbors();
}
}
}
function drawGrid(): void {
for (let i = 0; i < cols; i++) {
for (let j = 0; j < rows; j++) {
let isWall = grid[i][j].isWall;
const div = document.createElement('div');
div.classList.add('tile');
div.classList.add(grid[i][j].id.toString())
if (isWall) {
div.classList.add("wall");
}
displayGrid?.append(div);
divList.push(div);
}
}
}
function updateGrid(id: number): void {
divList[id].classList.add('green');
}
function removeFromArray(array: Tile[], item: Tile) {
for (let i = array.length - 1; i >= 0; i--) {
if (array[i] === item) {
array.splice(i, 1);
}
}
}
function heuristic(pointA: Tile, pointB: Tile): number {
return (pointB.col + pointB.row) - (pointA.col + pointA.row)
}
function sleep(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function getPath(tile: Tile): Promise<void> {
await sleep(30);
divList[tile.id].classList.remove('green');
divList[tile.id].classList.add("path");
const newTile = tile.previous;
if (newTile) {
getPath(newTile);
}
}