-
Notifications
You must be signed in to change notification settings - Fork 0
/
drivers.cpp
414 lines (382 loc) · 12 KB
/
drivers.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <utility>
#include "drivers.h"
using namespace std;
int Drivers::Count() {
return drivers.size();
}
void Drivers::Add(char* f, char* l) {
DriverInfo* newDriver = (DriverInfo*)malloc(sizeof(DriverInfo));
int id, capacity; // id of driver and their vehicle capacity
float rating;
string notes; // driver's vehicle, and notes
string choice; // for yes/no
srand(time(NULL)); // intialize random seed
int pets, handicapCapable, vType, a;
bool idAlreadyRegistered = false;
/* make ID */
id = rand() % 900000 + 100000;
do { // check if ID has already been made
idAlreadyRegistered = false;
for (int i = 0; i < drivers.size(); i++) {
if (id == drivers.at(i).GetID()) {
idAlreadyRegistered = true;
break;
}
}
id = rand() % 900000 + 100000;
} while (idAlreadyRegistered);
cout << "DRIVER ID: " << id << endl;
/* prompt for vehicle information */
cout << "1 - 2-Door Compact" << endl << "2 - 4-Door Sedan" << endl;
cout << "3 - SUV" << endl << "4 - Van" << endl << "5 - Other" << endl;
cout << "Enter the driver's vehicle type (1 - 5): ";
cin >> vType;
// check if input is valid
while (cin.fail() || (vType > 5 || vType < 1)) {
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Enter the driver's vehicle type (1 - 5): ";
cin >> vType;
}
while (vType < 1 || vType > 5) {
cout << "Inavlid number..." << endl;
cout << "Enter the driver's vehicle type (1 - 5): ";
cin >> vType;
}
}
cout << "Enter the number of passengers this vehicle can have: ";
cin >> capacity;
// check for validity of capacity
while (cin.fail() || (capacity <= 0 || capacity > 10)) {
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Enter the number of passengers this vehicle can have: ";
cin >> capacity;
}
while (capacity <= 0 || capacity > 10) {
cout << "Invalid number..." << endl;
cout << "Enter the number of passengers this vehicle can have: ";
cin >> capacity;
}
}
/* prompt for driver's rating */
cout << "Enter the driver's average rating (0 - 5): ";
cin >> rating;
// check that rating is valid
while (cin.fail() || (rating > 5 || rating < 0)) {
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Enter the driver's average rating (0 - 5): ";
cin >> rating;
}
while (rating > 5 || rating < 0) {
cout << "Invalid number..." << endl;
cout << "Enter the driver's average rating (0 - 5): ";
cin >> rating;
}
}
/* prompt for driver's other details */
cout << "0 - no" << endl;
cout << "1 - yes" << endl;
cout << "Does this driver allow pets in their vehicle? 0 or 1: ";
cin >> pets;
// check validity
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Does this driver allow pets in their vehicle? 0 or 1: ";
cin >> pets;
}
cout << "0 - no" << endl;
cout << "1 - yes" << endl;
cout << "Is this driver's vehicle handicapped capable? 0 or 1: ";
cin >> handicapCapable;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Is this driver's vehicle handicapped capable? 0 or 1: ";
cin >> handicapCapable;
}
cout << "0 - no" << endl << "1 - yes" << endl;
cout << "Is this driver available? 0 or 1: ";
cin >> a;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Is this driver available? 0 or 1: ";
cin >> a;
}
/* prompt for notes about driver */
cout << "Would you like to enter any notes for the driver? yes or no: ";
cin >> choice;
// check for valid entry
while (!(choice == "yes" || choice == "no")) {
cout << "Invalid...Enter yes or no: ";
cin >> choice;
}
if (choice == "yes") {
cin.ignore();
cout << "Enter notes: ";
getline(cin, notes);
}
else {
notes = "-";
}
// call mutator functions
newDriver->SetPetsAllowed(pets);
newDriver->SetHandicapped(handicapCapable);
newDriver->SetName(f, l);
newDriver->SetID(id);
newDriver->SetType(vType);
newDriver->SetCapacity(capacity);
newDriver->SetRating(rating);
newDriver->SetNotes(notes);
newDriver->SetAvailable(a);
drivers.push_back(*newDriver);
free(newDriver);
}
bool Drivers::DriverExists(int id) {
for (int i = 0; i < drivers.size(); i++) {
if (id == drivers.at(i).GetID()) {
return true;
}
}
return false;
}
pair<int, DriverInfo> Drivers::Find(int id, bool printID) { // parameters: ID of driver and whether i want to print its info or not
int i; // index of driver in collection
for (i = 0; i < drivers.size(); i++) {
if (id == drivers.at(i).GetID()) {
if (printID) {
printf("Name: %s %s\t\tID: %d\n", drivers.at(i).GetFirstName(), drivers.at(i).GetLastName(), id); // print driver name and id
}
break;
}
}
return make_pair(i, drivers.at(i)); // returns index of driver and DriverInfo object
}
void Drivers::Delete(int id) { // ID of driver
int i = Find(id, false).first; // find index of driver
drivers.erase(drivers.begin() + i); // delete driver
}
void Drivers::PrintDriver(int id) {
Find(id, false).second.Print();
}
void Drivers::PrintAll(int option) { // available
int i, n = 0;
if (option == 1) {
for (i = 0; i < drivers.size(); i++) {
if (drivers.at(i).IsAvailable()) {
n++;
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
if (n == 0) {
cout << "There are no available drivers." << endl;
}
}
else if (option == 2) { // allow pets
for (i = 0; i < drivers.size(); i++) {
if (drivers.at(i).PetsAllowed()) {
n++;
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
if (n == 0) {
cout << "There are no drivers that allow pets." << endl;
}
}
else if (option == 3) { // handicapped capable
for (i = 0; i < drivers.size(); i++) {
if (drivers.at(i).IsHandicappedCapable()) {
n++;
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
if (n == 0) {
cout << "There are no drivers with handicapped capable vehicles." << endl;
}
}
else if (option == 4) { // rating or higher
float min;
cout << "Print drivers with a rating over: ";
cin >> min;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Print drivers with a rating over: ";
cin >> min;
}
for (i = 0; i < drivers.size(); i++) {
n++;
if (drivers.at(i).GetRating() >= min) {
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
if (n == 0) {
cout << "There are no drivers with a rating above " << min << "." << endl;
}
}
else if (option == 5) {
int min;
cout << "Print drivers with a capacity over: ";
cin >> min;
while (cin.fail()) { // check for valid data type
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Print drivers with a capacity over: ";
cin >> min;
}
for (i = 0; i < drivers.size(); i++) {
if (drivers.at(i).GetCapacity() >= min) {
n++;
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
if (n == 0) {
cout << "There are no drivers with a capacity above " << min << "." << endl;
}
}
else if (option == 6) { // all
cout << "THERE IS A TOTAL OF " << drivers.size() << " DRIVERS" << endl;
for (int i = 0; i < drivers.size(); i++) {
cout << "- DRIVER #" << i + 1 << " -" << endl;
drivers.at(i).Print();
cout << endl;
}
}
}
void Drivers::Edit(int option, int index) { // returns new ID
if (option == 1) { // edit vehicle type
int newType;
/* prompt for new vehicle type */
cout << "1 - 2-Door Compact" << endl;
cout << "2 - 4-Door Sedan" << endl;
cout << "3 - SUV" << endl;
cout << "4 - Van" << endl;
cout << "5 - Other" << endl;
cout << "Enter the driver's new vehicle type (1 - 5): ";
cin >> newType;
while (cin.fail() || (newType < 1 || newType > 5)) {
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Enter the driver's new vehicle type (1 - 5): ";
cin >> newType;
}
while (newType < 1 || newType > 5) {
cout << "Inavlid..." << endl;
cout << "Enter the driver's new vehicle type (1 - 5): ";
cin >> newType;
}
}
drivers.at(index).SetType(newType); // set new type
}
else if (option == 2) { // edit notes
string newNotes;
/* prompt user for new notes */
cout << "Enter the new notes for this driver: ";
getline(cin, newNotes);
drivers.at(index).SetNotes(newNotes); // set new notes for driver
}
else if (option == 3) { // edit handicapped capable
int h;
cout << "0 - no" << endl;
cout << "1 - yes" << endl;
cout << "Is this driver's vehicle handicapped capable? 0 or 1: ";
cin >> h;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Is this driver's vehicle handicapped capable? 0 or 1: ";
cin >> h;
}
drivers.at(index).SetHandicapped(h);
}
else if (option == 4) { // edit pets policy
int p;
cout << "0 - no" << endl;
cout << "1 - yes" << endl;
cout << "Does this driver allow pets? 0 or 1: ";
cin >> p;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Does this driver allow pets? 0 or 1: ";
cin >> p;
}
drivers.at(index).SetPetsAllowed(p);
}
else if (option == 5) { // edit availability
int a;
cout << "0 - no" << endl;
cout << "1 - yes" << endl;
cout << "Is this driver available? 0 or 1: ";
cin >> a;
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Is this driver available? 0 or 1: ";
cin >> a;
}
drivers.at(index).SetAvailable(a);
}
else if (option == 6) { // edit rating
float newRating;
/* prompt for new rating */
cout << "Enter the new rating for this driver: ";
cin >> newRating;
while (cin.fail() || newRating < 0 || newRating > 5) {
while (newRating < 0 || newRating > 5) {
cout << "Invalid..." << endl;
cout << "Rating must be between 0 and 5: ";
cin >> newRating;
}
while (cin.fail()) {
cin.clear();
cin.ignore(100, '\n');
cout << "Invalid data type..." << endl;
cout << "Enter the new rating for this driver: ";
cin >> newRating;
}
}
drivers.at(index).SetRating(newRating); // set new rating
}
}
/* for file wrting */
DriverInfo Drivers::GetDriver(int i) {
return drivers.at(i);
}
void Drivers::AddDriver(DriverInfo d) {
drivers.push_back(d);
}