-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
57 lines (55 loc) · 1.79 KB
/
main.cpp
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
#include <iostream>
#include <fstream>
#include <math.h>
#include <vector>
#include "hybrid_breadth_first.h"
using namespace std;
int X = 1;
int _ = 0;
int num_theta_cells = 90;
double speed = 45;
double length = 0.5;
vector< vector<int> > MAZE = {
{ _,X,X,_,_,_,_,_,_,_,X,X,_,_,_,_, },
{ _,X,X,_,_,_,_,_,_,X,X,_,_,_,_,_, },
{ _,X,X,_,_,_,_,_,X,X,_,_,_,_,_,_, },
{ _,X,X,_,_,_,_,X,X,_,_,_,X,X,X,_, },
{ _,X,X,_,_,_,X,X,_,_,_,X,X,X,_,_, },
{ _,X,X,_,_,X,X,_,_,_,X,X,X,_,_,_, },
{ _,X,X,_,X,X,_,_,_,X,X,X,_,_,_,_, },
{ _,X,X,X,X,_,_,_,X,X,X,_,_,_,_,_, },
{ _,X,X,X,_,_,_,X,X,X,_,_,_,_,_,_, },
{ _,X,X,_,_,_,X,X,X,_,_,X,X,X,X,X, },
{ _,X,_,_,_,X,X,X,_,_,X,X,X,X,X,X, },
{ _,_,_,_,X,X,X,_,_,X,X,X,X,X,X,X, },
{ _,_,_,X,X,X,_,_,X,X,X,X,X,X,X,X, },
{ _,_,X,X,X,_,_,X,X,X,X,X,X,X,X,X, },
{ _,X,X,X,_,_,_,_,_,_,_,_,_,_,_,_, },
{ X,X,X,_,_,_,_,_,_,_,_,_,_,_,_,_, },
};
vector< vector<int> > GRID = MAZE;
vector<double> START = { 0.0,0.0,0.0 };
vector<int> GOAL = { (int)GRID.size() - 1, (int)GRID[0].size() - 1 };
int main() {
cout << "Finding path through grid" << endl;
//Creating maze and finding no of expansions
for (int i = 0; i < GRID.size(); i++) {
cout << GRID[i][0];
for (int j = 1; j < GRID[0].size(); j++) {
cout << "," << GRID[i][j];
}
cout << endl;
}
HBF hbf = HBF();
HBF::maze_path get_path = hbf.search(GRID, START, GOAL);
vector<HBF::maze_s> show_path = hbf.reconstruct_path(get_path.came_from, START, get_path.final);
cout << "Visualizing path from start to end" << endl;
for (int i = show_path.size() - 1; i >= 0; i--) {
HBF::maze_s step = show_path[i];
cout << "##### step " << step.g << " #####" << endl;
cout << "x" << step.x << endl;
cout << "y" << step.y << endl;
cout << "theta" << step.theta << endl;
}
return 0;
}