S3_Cpp/Aufg8/MenuManager.h
2024-11-23 07:27:03 +01:00

80 lines
2.4 KiB
C++

//
// Created by DH10MBO on 21.11.2024.
//
#ifndef MENUMANAGER_H
#define MENUMANAGER_H
#include <iostream>
class MenuManager {
private:
int * currentMenu;
std::string * selectedMetric;
std::string * selectedRegion;
public:
MenuManager(int * currentMenu, std::string * selectedMetric, std::string * selectedRegion){
this->currentMenu = currentMenu;
this->selectedRegion = selectedRegion;
this->selectedMetric = selectedMetric;
}
int AcceptIntInputInRange(int minInput, int maxInput) {
int input;
std::cin >> input;
while (input < minInput || input > maxInput) {
std::cout << "Enter a number between " << minInput << " and " << maxInput << ": ";
std::cin >> input;
}
return input;
}
int ShowMainMenu() {
// system("cls");
std::cout<<"Select Information to display" <<std::endl
<< "1. Profit per Metric" <<std::endl
<< "2. Count Sales of type X in a Region" <<std::endl
<< "3. Most popular item type in country X" <<std::endl
<< "4. Online vs Offline Sales in country X" <<std::endl
<< "======" <<std::endl
<< "0 to Exit" <<std::endl;
int choice = AcceptIntInputInRange(0,4);
return choice;
}
std::string ShowPromptAndGetString(std::string prompt) {
std::cout << prompt <<std::endl;
prompt = "";
std::cin >> prompt;
return prompt;
}
void MainInteraction() {
*currentMenu = ShowMainMenu();
switch (*currentMenu) {
case 0:
return;
case 1:
*selectedMetric = ShowPromptAndGetString("Enter The Metric to get total Profit for"); break;
case 2:
*selectedMetric = ShowPromptAndGetString("Enter The item type to search for");
*selectedRegion = ShowPromptAndGetString("Enter The region to search in");
break;
case 3:
*selectedRegion = ShowPromptAndGetString("Enter The country to get most common type for");
break;
case 4:
*selectedRegion = ShowPromptAndGetString("Select Country to count online vs offline purchases");
break;
default:
std::cout << "You should not be able to reach this point if you entered a legal number";
}
}
};
#endif //MENUMANAGER_H