Menu with sub menu, revised the UI of the interface.cpp

This commit is contained in:
Stefan Udit 2019-07-18 18:42:37 -03:00
parent cd2f723a04
commit dafa1ab97a

View File

@ -30,13 +30,13 @@ void interface(vector<Park_spot>& spots) {
} else if(query_role_customer(id)==0){ } else if(query_role_customer(id)==0){
interface_member(spots, c); interface_member(spots, c);
} else { } else {
cout << "ERROR ROLE_INVALID.."; cout << "ERROR ROLE_INVALID!";
} }
} }
void interface_member(vector<Park_spot>& spots,Customer& c) { void interface_member(vector<Park_spot>& spots,Customer& c) {
cout << "Logged in succesfully\n"; cout << "\nLogged in succesfully!\n";
cout << "select an option\n [1] Parking options\n[2]monthy report\n"; cout << "select an option:\n [1] Parking\n[2]Monthly report\n";
int option; int option;
cin >> option; cin >> option;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
@ -56,20 +56,27 @@ void interface_member(vector<Park_spot>& spots,Customer& c) {
} }
void interface_admin(vector<Park_spot>& spots) { void interface_admin(vector<Park_spot>& spots) {
cout << "Welcome to the admin interface. It is not completely ready yet.\n"; cout << "\nWelcome to the admin interface.\n";
cout << "[1] See monthly report of ALL parking spots\n"; cout << "\n[1] Reports & analytics";
cout << "[2] See weekly report of ALL parking spots\n"; cout << "\n[2] Parking spots";
cout << "[3] See monthly report of a specific parking spot\n"; cout << "\n[3] Make new user";
cout << "[4] See weekly report of a specific parking spot\n"; cout << "\nEnter option number: ";
cout << "[5] See current status of parking spots\n";
cout << "[6] Make new customer\n";
cout << "[7] Make new admin\n";
cout << "[8] Make new parking spot\n";
cout << "option[1-8]:";
int option; int option;
cin >> option; cin >> option;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
switch (option) { switch (option) {
case 1: {
cout << "[1] See monthly report of ALL parking spots\n";
cout << "[2] See weekly report of ALL parking spots\n";
cout << "[3] See monthly report of a specific parking spot\n";
cout << "[4] See weekly report of a specific parking spot\n";
/*cout << "[5] See monthly report of a specific month\n";
cout << "[6] See weekly report of a specific week\n"; */
cout << "Enter option number: ";
int option_1;
cin >> option_1;
cin.ignore(10000, '\n');
switch (option_1) {
case 1: { case 1: {
reports_from_allparkspots(); reports_from_allparkspots();
break; break;
@ -79,37 +86,86 @@ void interface_admin(vector<Park_spot>& spots) {
break; break;
} }
case 3: { case 3: {
cout << "Which parking spot would you like a report on?\nID:"; cout << "Which parking spot would you like a report on?\n";
int spotid; cout << "Parking spot ID: ";
cin >> spotid; int spotID;
cin >> spotID;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
reports_from_parkspot(spotid); reports_from_parkspot(spotID);
break; break;
} }
case 4: { case 4: {
cout << "Which parking spot would you like a report on?\nID:"; cout << "Which parking spot would you like a report on?\n";
int spotid; cout << "Parking spot ID: ";
cin >> spotid; int spotID;
cin >> spotID;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
reports_from_parkspot(spotid, true); reports_from_parkspot(spotID, true);
break; break;
} }
case 5: { /*case 5: {
current_status_parkspots(spots); cout << "Which month would you like a report on?\n";
cout << "[1] January, [2] February, [3] March, [4] April, [5] May,"
"\n[6] June, [7] July, [8] August, [9] September, [10] October, [11] November, [12] December\n";
cout << "Enter month number: ";
int month;
cin >> month;
cin.ignore(10000, '\n');
report_from_month(month);
break; break;
} }
case 6: { case 6: {
cout << "Which week would you like a report on?\n";
cout << "Enter week number: ";
int week;
cin >> week;
cin.ignore(10000, '\n');
report_from_week(week);
break;
}*/
default:
break;
}
}
case 2: {
cout << "[1] See current status of parking spots\n";
cout << "[2] Make new parking spot\n";
cout << "Enter option number: ";
int option_2;
cin >> option_2;
cin.ignore(10000, '\n');
switch (option_2) {
case 1: {
current_status_parkspots(spots);
break;
}
case 2: {
new_parkspot(spots);
}
default:
break;
}
}
case 3: {
cout << "[1] Make new customer\n";
cout << "[2] Make new admin\n";
cout << "Enter option number: ";
int option_3;
cin >> option_3;
cin.ignore(10000, '\n');
switch (option_3) {
case 1: {
new_customer(); new_customer();
break; break;
} }
case 7: { case 2: {
new_admin(); new_admin();
}
case 8: {
new_parkspot(spots);
break; break;
} }
default:
break;
}
}
default: default:
break; break;
} }
@ -118,30 +174,29 @@ void interface_admin(vector<Park_spot>& spots) {
// --------- individual things. // --------- individual things.
void park(Customer& c, vector<Park_spot>& spots) { void park(Customer& c, vector<Park_spot>& spots) {
cout << "You have selected parking option"; cout << "You have selected parking option.\n";
if (!(c.parked())) { if (!(c.parked())) {
cout << "The following spots[which can fit your vehicle] are " cout << "The following spots fit your vehicle and are available: ";
"available: ";
for (Park_spot i : spots) { for (Park_spot i : spots) {
if (i.v_type == c.vehicle) { if (i.v_type == c.vehicle) {
cout << i.id << ", "; cout << i.id << ", ";
} }
} }
cout << "where do you want to park?"; cout << "\nWhere do you want to park?";
int parkid; int parkID;
cin >> parkid; cin >> parkID;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
for (Park_spot& i : spots) { for (Park_spot& i : spots) {
if (i.id == parkid) { if (i.id == parkID) {
i.clock(c); i.clock(c);
cout << "You have parked sucessfully"; cout << "You have parked sucessfully!";
} }
} }
} else { } else {
cout << "You are parked at spot " << c.parked_at() cout << "You are parked at spot " << c.parked_at()
<< ", do you want to clock out?\n enter [1] for yes and [0] for no"; << ", do you want to clock out?\n[1] yes\n[2] no";
int answer = 0; int answer = 0;
cin >> answer; cin >> answer;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
@ -149,7 +204,7 @@ void park(Customer& c, vector<Park_spot>& spots) {
query_parkspot_with_id(c.parked_at(), spots).clock(c); query_parkspot_with_id(c.parked_at(), spots).clock(c);
cout << "You have sucessfully clocked out."; cout << "You have sucessfully clocked out.";
} else { } else {
cout << "OK, have a nice day"; cout << "OK, have a nice day."; //exit to customer login
} }
} }
} }
@ -160,43 +215,43 @@ void new_customer() {
string password; string password;
string telephone; string telephone;
int role = 0; int role = 0;
cout << "What's the name of the customer? "; cout << "\nWhat's the name of the customer? ";
std::getline(cin, name); std::getline(cin, name);
cout << "What's the vehicle type? [1]twoweeler, [2] fourweeler: "; cout << "\nWhat's the vehicle type? \n[1]twoweeler\n[2] fourweeler\n";
cin >> vtype; cin >> vtype;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
cout << "What's the telephone number? "; cout << "What's the telephone number? +";
std::getline(cin, telephone); std::getline(cin, telephone);
cout << "What's the password?"; cout << "\nWhat's the password? ";
std::getline(cin, password); std::getline(cin, password);
Customer newcustomer{name, password, Vehicle_type(vtype), telephone, role}; Customer newcustomer{name, password, Vehicle_type(vtype), telephone, role};
cout << "New customer sucessfully created\n"; cout << "\nNew customer sucessfully created\n";
newcustomer.update_db(); newcustomer.update_db();
} }
void new_admin() { void new_admin() {
int vtype = 2; //revision required! int vtype = 2; //revision required! Needs to be set to NULL
string name; string name;
string password; string password;
string telephone; string telephone;
int role = 1; int role = 1;
cout << "What's the name of the admin? "; cout << "\nWhat's the name of the admin? ";
std::getline(cin, name); std::getline(cin, name);
cout << "What's the telephone number? "; cout << "\nWhat's the telephone number? +";
std::getline(cin, telephone); std::getline(cin, telephone);
cout << "What's the password?"; cout << "\nWhat's the password?";
std::getline(cin, password); std::getline(cin, password);
Customer newcustomer{name, password, Vehicle_type(vtype), telephone, role}; Customer newcustomer{name, password, Vehicle_type(vtype), telephone, role};
cout << "New customer sucessfully created\n"; cout << "\nNew customer sucessfully created\n";
newcustomer.update_db(); newcustomer.update_db();
} }
void new_parkspot(vector<Park_spot>& spots) { void new_parkspot(vector<Park_spot>& spots) {
cout << "What type of parking spot? [1] twoweeler, [2] fourweeler: "; cout << "What type of parking spot? \n[1] twoweeler\n[2] fourweeler\n";
int vtype; int vtype;
cin >> vtype; cin >> vtype;
cin.ignore(10000, '\n'); cin.ignore(10000, '\n');
Park_spot newspot{Vehicle_type(vtype)}; Park_spot newspot{Vehicle_type(vtype)};
spots.push_back(newspot); spots.push_back(newspot);
cout << "new parking spot sucessfully created.\n"; cout << "New parking spot sucessfully created.\n";
} }