-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest_planner.cpp
More file actions
155 lines (139 loc) · 5.52 KB
/
test_planner.cpp
File metadata and controls
155 lines (139 loc) · 5.52 KB
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
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2019, Vinitha Ranganeni
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
////////////////////////////////////////////////////////////////////////////////
#include "graph.h"
#include "dijkstra.h"
#include <fstream>
#include <string>
#include <iostream>
#include <sstream>
#include <jsoncpp/json/json.h>
void read_environment(
const std::string& environment_filename,
int *width,
int *height,
std::vector<int> *occupancy_grid)
{
std::ifstream file;
file.open(environment_filename.c_str());
if (!file.is_open()) return;
std::string line;
int num_lines = 0;
while (std::getline(file, line))
{
std::istringstream iss(line);
std::string word;
int num_words = 0;
while(iss >> word) {
int occupancy_value = atoi(word.c_str());
occupancy_grid->push_back(occupancy_value);
num_words++;
}
*width = num_words;
num_lines++;
}
*height = num_lines;
}
void read_solution(
const std::string& solution_filename,
std::vector<std::pair<int,int>> *path)
{
std::ifstream file;
file.open(solution_filename.c_str());
if (!file.is_open()) return;
std::string line;
while (std::getline(file, line))
{
std::istringstream iss(line);
std::string word;
std::vector<int> pair;
while(iss >> word) {
int value = atoi(word.c_str());
pair.push_back(value);
}
path->push_back(std::make_pair(pair[0], pair[1]));
}
}
void print_path(const std::vector<std::pair<int, int>>& path)
{
for (const auto point : path) {
std::cout << point.first << " " << point.second << std::endl;
}
}
void write_solution(
const std::string& solution_filename,
const std::vector<std::pair<int, int>>& path)
{
std::ofstream file;
file.open(solution_filename.c_str());
for (const auto point : path) {
file << point.first << " " << point.second << std::endl;
}
file.close();
}
int main() {
std::ifstream ifs("tests.json");
Json::Reader reader;
Json::Value test;
reader.parse(ifs, test);
int num_tests_passed = 0;
for (const auto& test_name : test.getMemberNames()) {
const std::string environment_filename = test[test_name]["environment"].asString();
const std::string solution_filename = test[test_name]["solution"].asString();
const int start_x = test[test_name]["start_x"].asInt();
const int start_y = test[test_name]["start_y"].asInt();
const int goal_x = test[test_name]["goal_x"].asInt();
const int goal_y = test[test_name]["goal_y"].asInt();
const int true_num_expansions = test[test_name]["num_expansions"].asInt();
int width, height;
std::vector<int> occupancy_grid;
read_environment(environment_filename, &width, &height, &occupancy_grid);
grid_planner::graphs::Graph graph = \
grid_planner::graphs::Graph(occupancy_grid, width, height);
const int start_id = graph.set_start_state(start_x, start_y);
const int goal_id = graph.set_goal_state(goal_x, goal_y);
grid_planner::planners::Dijkstras planner =
grid_planner::planners::Dijkstras(graph);
std::vector<std::pair<int, int>> path;
int num_expansions = 0;
planner.run_planner(start_id, goal_id, &num_expansions, &path);
std::vector<std::pair<int, int>> true_path;
read_solution(solution_filename, &true_path);
if (path == true_path && true_num_expansions == num_expansions) {
std::cout << test_name << " PASSED!" << std::endl;
}
if (path != true_path) {
std::cout << test_name << " FAILED! -> Incorrect path" << std::endl;
}
if (true_num_expansions != num_expansions) {
std::cout << test_name << " FAILED! -> Incorrect number of expansions" << std::endl;
}
write_solution("student_" + solution_filename, path);
}
return 1;
}