-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastar.js
200 lines (177 loc) · 6.01 KB
/
astar.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
var ASTAR = {
astarE:function(startNode , finishNode , grid){
openList = [] ;
closedList = [] ;
var G = new Map() ;
var H = new Map() ;
var parent = new Map() ;
parent.set(startNode , -1) ;
openList.push(startNode) ;
visitedNodes = [] ;
startNode.distance = 0 ;
H.set(startNode , ASTAR.heuristicE(startNode,finishNode)) ;
G.set(startNode , ( startNode.distance + H.get(startNode) ) );
while(openList.length != 0){
var currentSquare = ASTAR.findlow(openList , G) ;
//Removing it from openList
var index = -1 ;
for(var i = 0 ; i < openList.length ; i++){
if(currentSquare.x == openList[i].x && currentSquare.y == openList[i].y){
index = i;
break;
}
}
if(index != -1){
openList.splice(index , 1);
}
closedList.push(currentSquare) ;
visitedNodes.push(currentSquare);
if(currentSquare == finishNode){
ASTAR.setPath(parent , visitedNodes ,startNode , finishNode);
return ;
}
var neighbor = currentSquare.neighbors ;
for(var i = 0 ; i < neighbor.length ; i++){
if(ASTAR.findNode(neighbor[i] , closedList))
continue;
if(!ASTAR.findNode(neighbor[i] , openList)){
openList.push(neighbor[i]);
parent.set(neighbor[i] , currentSquare);
neighbor[i].distance = currentSquare.distance + 1 ;
H.set(neighbor[i] , ASTAR.heuristicE(neighbor[i],finishNode));
G.set(neighbor[i] , (neighbor[i].distance + H.get(neighbor[i])));
}
else{
var fValue = neighbor[i].distance;
var currFvalue = currentSquare.distance + 1 ;
if(fValue > currFvalue){
parent.set(neighbor[i] , currentSquare);
G.set(neighbor[i] , currFvalue) ;
neighbor[i].distance = currentSquare.distance + 1 ;
}
}
}
}
animate("No Path found") ;
enable() ;
} ,
astarM:function(startNode , finishNode , grid){
openList = [] ;
closedList = [] ;
var G = new Map() ;
var H = new Map() ;
var parent = new Map() ;
parent.set(startNode , -1) ;
openList.push(startNode) ;
visitedNodes = [] ;
startNode.distance = 0 ;
H.set(startNode , ASTAR.heuristic(startNode,finishNode)) ;
G.set(startNode , ( startNode.distance + H.get(startNode) ) );
while(openList.length != 0){
var currentSquare = ASTAR.findlow(openList , G) ;
//Removing it from openList
var index = -1 ;
for(var i = 0 ; i < openList.length ; i++){
if(currentSquare.x == openList[i].x && currentSquare.y == openList[i].y){
index = i;
break;
}
}
if(index != -1){
openList.splice(index , 1);
}
closedList.push(currentSquare) ;
visitedNodes.push(currentSquare);
if(currentSquare == finishNode){
ASTAR.setPath(parent , visitedNodes ,startNode , finishNode);
return ;
}
var neighbor = currentSquare.neighbors ;
for(var i = 0 ; i < neighbor.length ; i++){
if(ASTAR.findNode(neighbor[i] , closedList))
continue;
if(!ASTAR.findNode(neighbor[i] , openList)){
openList.push(neighbor[i]);
parent.set(neighbor[i] , currentSquare);
neighbor[i].distance = currentSquare.distance + 1 ;
H.set(neighbor[i] , ASTAR.heuristic(neighbor[i],finishNode));
G.set(neighbor[i] , (neighbor[i].distance + H.get(neighbor[i])));
}
else{
var fValue = neighbor[i].distance;
var currFvalue = currentSquare.distance + 1 ;
if(fValue > currFvalue){
parent.set(neighbor[i] , currentSquare);
G.set(neighbor[i] , currFvalue) ;
neighbor[i].distance = currentSquare.distance + 1 ;
}
}
}
}
animate("No Path found") ;
enable() ;
} ,
//Manhattan
heuristic : function(node1 , node2){
var X = Math.abs(node1.x - node2.x) ;
var Y = Math.abs(node1.y - node2.y) ;
ANS = (X + Y) ;
return ANS ;
} ,
heuristicE : function(node1 , node2){
var X = Math.abs(node1.x - node2.x) ;
var Y = Math.abs(node1.y - node2.y) ;
ANS = Math.sqrt(X*X + Y*Y) ;
return ANS ;
} ,
findlow : function(openList , G){
var min = Infinity ;
var r ;
for(var i = 0 ; i < openList.length ; i++){
if(G.get(openList[i]) < min){
min = G.get(openList[i]);
r = openList[i] ;
}
}
return r ;
} ,
findNode : function(node , array){
for(var i = 0 ; i < array.length; i++){
if(array[i].x == node.x && array[i].y == node.y){
return true ;
}
}
return false ;
} ,
setPath: async function(parent , visitedNodes ,startNode , finishNode){
await ASTAR.updateVisited(visitedNodes);
crawl = parent.get(finishNode) ;
while(crawl != -1){
await sleep(1) ;
if(crawl != startNode && crawl != finishNode && crawl != null)
crawl.state = 'p';
crawl = parent.get(crawl) ;
}
enable() ;
return "Path found" ;
} ,
updateVisited:async function (visitedNodes){
for (var i = 0 ; i < visitedNodes.length ; i++){
if(visitedNodes[i].state != 's' && visitedNodes[i].state != 'f' && visitedNodes[i].state != 'p' ){
await sleep(1) ;
visitedNodes[i].state = 'd' ;
}
}
return new Promise(function(resolve , reject){
setTimeout(() => {
const check = true ;
if(check){
resolve();
}
else{
reject();
}
}, 1000);
});
}
}