-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsoleManager.cpp
55 lines (49 loc) · 1.57 KB
/
ConsoleManager.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
#include "ConsoleManager.h"
ConsoleManager& ConsoleManager::get_console_manager()
{
static ConsoleManager console_manager;
return console_manager;
}
int ConsoleManager::show_menu(std::vector<std::string> algorithm_names) const
{
int option{ 0 };
std::cout << "0. Wyjscie z programu\n";
for (int i = 1; i <= algorithm_names.size(); i++)
std::cout << i << ". " << algorithm_names[i-1] << "\n";
std::cout << "Wybor: ";
std::cin >> option;
while(!std::cin.good() || option < 0)
{
std::cout << "Cos poszlo nie tak... Prawdopodobnie wprowadziles niepoprawna wartosc. Sprobuj ponownie.\nWybor: ";
std::cin.clear();
std::cin.ignore(123,static_cast<int>('\n'));
std::cin >> option;
}
return option;
}
int ConsoleManager::get_accuracy() const
{
int accuracy;
std::cout << "Wprowadz liczbe calkowita - stopien dokladnosci obliczen: ";
std::cin >> accuracy;
while (!std::cin.good() || accuracy < 0)
{
std::cout << "Cos poszlo nie tak... Prawdopodobnie wprowadziles niepoprawna wartosc. Sprobuj ponownie.\nWybor: ";
std::cin.clear();
std::cin.ignore(123, static_cast<int>('\n'));
std::cin >> accuracy;
}
return accuracy;
}
void ConsoleManager::show_error(const std::string & error_info) const
{
using namespace std::chrono_literals;
std::cout << "Wystapil blad!\nSzczegolowe informacje: " << error_info << "\n\nProgram zostanie za chwile zamkniety\n";
std::this_thread::sleep_for(5s);
}
void ConsoleManager::update_result(double result) const
{
using namespace std::chrono_literals;
std::cout << "Wynik obliczen: " << result << "\n";
std::this_thread::sleep_for(3s);
}