forked from justinhj/astar-algorithm-cpp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAstar.h
executable file
·147 lines (107 loc) · 3.31 KB
/
Astar.h
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
#ifndef ASTAR_H_
#define ASTAR_H_
#include "stlastar.h" // See header for copyright and usage information
#include <iostream>
#include <stdio.h>
#include <MapSearchNode.h>
/******************* NOTES ON THE INPUT MAP **************************
Each element contains an integer from 0 to 5 which indicates the cost
of travel across the terrain. Zero means the least possible difficulty
in travelling (think ice rink if you can skate) whilst 5 represents the
most difficult. 9 indicates that we cannot pass.
**************************************************************************/
std::vector<int> MapSearchNode::map;
int MapSearchNode::MAP_WIDTH;
int MapSearchNode::MAP_HEIGHT;
class Astar
{
int gridSizeX;
int gridSizeY;
AStarSearch<MapSearchNode> astarsearch;
std::vector<int> access_map;
int start, target;
public:
Astar():
gridSizeX(0),
gridSizeY(0),
start(0),
target(0)
{ }
Astar(std::vector<int> a_map, int sizeX, int sizeY):
access_map(a_map),
gridSizeX(sizeX),
gridSizeY(sizeY),
start(0),
target(0)
{
MapSearchNode::map = a_map;
MapSearchNode::MAP_WIDTH = sizeX;
MapSearchNode::MAP_HEIGHT = sizeY;
}
virtual ~Astar(){}
std::vector<int> path;
void run(int v_start, int v_target);
void printMap();
void printSolution();
};
void Astar::run(int v_start, int v_target){
start = v_start;
target = v_target;
path.clear();
MapSearchNode nodeStart;
nodeStart.x = start/gridSizeY;
nodeStart.y = start%gridSizeY;
MapSearchNode nodeEnd;
nodeEnd.x = target/gridSizeY;
nodeEnd.y = target%gridSizeY;
// Set Start and goal states
astarsearch.SetStartAndGoalStates( nodeStart, nodeEnd );
unsigned int SearchState;
do{
SearchState = astarsearch.SearchStep();
}
while( SearchState == AStarSearch<MapSearchNode>::SEARCH_STATE_SEARCHING );
if( SearchState == AStarSearch<MapSearchNode>::SEARCH_STATE_SUCCEEDED )
{
MapSearchNode *node = astarsearch.GetSolutionStart();
/// Saving solution in path vector
do{
path.push_back(node->x * gridSizeY+node->y);
access_map.at(node->x * gridSizeY+node->y) = -1;
node = astarsearch.GetSolutionNext();
}while( node != NULL );
// Once you're done with the solution you can free the nodes up
astarsearch.FreeSolutionNodes();
}
else if( SearchState == AStarSearch<MapSearchNode>::SEARCH_STATE_FAILED )
{
cout << "Search terminated. No traversable path found.\n";
}
//astarsearch.EnsureMemoryFreed();
}
void Astar::printSolution(){
cout << "Path from " << start << " to " << target << " (path length=" << path.size() << "):" << endl;
for(int i=0; i<path.size(); i++){
cout << path.at(i) << " ";
}
cout << endl;
for(int i=0; i<access_map.size(); i++){
if(i%gridSizeY == 0) printf("\n");
if(i == start) printf("S ");
else if(i == target) printf("T ");
else if(access_map.at(i) >=0 && access_map.at(i) <= 5) printf(". ");
else if(access_map.at(i) == 9) printf("■ ");
else if(access_map.at(i) == -1) printf("X ");
}
cout << endl;
}
void Astar::printMap(){
cout << "Map:";
for(int i=0; i<access_map.size(); i++){
if(i%gridSizeY == 0) printf("\n");
if(access_map.at(i) >=0 && access_map.at(i) <= 5) printf(". ");
else if(access_map.at(i) == 9) printf("■ ");
}
cout << endl;
}
#endif