-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpointSet.cpp
More file actions
232 lines (194 loc) · 6.11 KB
/
pointSet.cpp
File metadata and controls
232 lines (194 loc) · 6.11 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
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
230
231
232
//
// Created by Nicolas Tsagarides on 5/9/15.
//
#include <iostream>
#include "pointSet.h"
#include "global.h"
#include "misc.h"
#include <random>
double lowerBound = 0;
double upperBound = 600;
void pointSetMenu()
{
std::cout << "\n";
std::string option = "";
while ( (option.compare("x")!=0) && (option.compare("X")!=0) )
{
bool firstTime = true;
while (option != "0" && option != "1" && option != "2" && option != "x" && option != "X")
{
if (!firstTime)
{
std::cout << "\nInvalid input\n";
}
std::string printDataSet;
if (pointSetAvailable)
{
std::cout << "\nThere is an already existing point-set.\n";
printDataSet = " 0: Print existing point-set\n --\n";
}
else
{
std::cout << "There is no existing point-set. You need to set a new one.\n";
printDataSet = "";
}
std::cout << "Select an option from below:\n\n" <<
printDataSet << " 1: Enter a new point-set\n" <<
" 2: Generate a new point-set with random values\n" <<
" --\n" <<
" X: Go back\n\n" <<
"Option: ";
option = userInput();
if ((option.compare("0") == 0) && (!pointSetAvailable)) // the user can't select the option zero if there is no available point-set
{
option = "";
}
firstTime = false;
}
if (option.compare("0") == 0)
{
printPointSet();
option = "";
}
else if (option.compare("1") == 0)
{
fillWithUserPoints();
pointSetAvailable = true;
option = "";
}
else if (option.compare("2") == 0)
{
fillWithRandomPoints();
pointSetAvailable = true;
option = "";
}
}
}
void fillWithUserPoints()
{
unsigned long long numberOfPoints;
std::string input = "a";
bool firstRun = true;
while (!is_number(input) || (input.compare("0")==0) || (input.compare("1")==0) || (input.compare("2")==0) || (input.compare("3")==0) )
{
if (!firstRun)
{
std::cout << "\nInvalid input";
}
std::cout << "\nEnter the number of points you want to register: ";
input = userInput();
firstRun = false;
}
numberOfPoints = std::stoull(input);
p.clear();
for (unsigned long long i=0; i<numberOfPoints; i++)
{
Point temp;
double num;
std::string input = "a";
bool firstRun = true;
bool isDouble = false;
while (!isDouble)
{
if (!firstRun)
{
std::cout << "\nInvalid input\n";
}
std::cout << "\nPoint #" << (i+1) << ": x = ";
input = userInput();
try
{
num = std::stod(input); // trying to convert a string to a double
if (!is_double(input))
{
throw std::invalid_argument("Invalid syntax.");
}
temp.setX(num);
isDouble = true;
}
catch (std::invalid_argument e) // catching invalid argument situations
{
std::cout << e.what();
isDouble = false;
}
catch (std::out_of_range e) // catching out of range situations
{
std::cout << e.what();
isDouble = false;
}
firstRun = false;
}
input = "a";
firstRun = true;
isDouble = false;
while (!isDouble)
{
if (!firstRun)
{
std::cout << "\nInvalid input\n";
}
std::cout << "Point #" << (i+1) << ": y = ";
input = userInput();
try
{
num = std::stod(input); // trying to convert a string to a double
if (!is_double(input))
{
throw std::invalid_argument("Invalid syntax.");
}
temp.setY(num);
isDouble = true;
}
catch (std::invalid_argument e) // catching invalid argument situations
{
std::cout << e.what();
isDouble = false;
}
catch (std::out_of_range e) // catching out of range situations
{
std::cout << e.what();
isDouble = false;
}
firstRun = false;
}
p.push_back(temp);
}
}
void fillWithRandomPoints()
{
long long int seed = std::chrono::system_clock::now().time_since_epoch().count();
std::uniform_real_distribution<double> unif(lowerBound, upperBound);
std::default_random_engine dre (seed);
unsigned long long numberOfPoints;
std::string input = "a";
bool firstRun = true;
while (!is_number(input) || (input.compare("0")==0) || (input.compare("1")==0) || (input.compare("2")==0) || (input.compare("3")==0) )
{
if (!firstRun)
{
std::cout << "\nInvalid input";
}
std::cout << "\nEnter the number of points you want to be generated: ";
input = userInput();
firstRun = false;
}
numberOfPoints = std::stoull(input);
p.clear();
for (unsigned long long i = 0; i < numberOfPoints; i++)
{
double tempX = unif(dre);
double tempY = unif(dre);
Point temp = Point(tempX, tempY);
p.push_back(temp);
}
}
void printPointSet()
{
std::cout << std::endl << "Point-set\n" <<
"==========================\n";
for (unsigned long long i=0; i<p.size(); i++)
{
std::cout << "\nPoint #" << (i+1) << "\nx = " << p.at(i).getX() << "\ny = " << p.at(i).getY() << std::endl;
}
std::cout << std::endl;
}