-
Notifications
You must be signed in to change notification settings - Fork 3
/
UserInterface.cpp
executable file
·115 lines (102 loc) · 2.91 KB
/
UserInterface.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
//
// Copyright 2015 CutePoisonX ([email protected])
//
// This file is part of PoisonConvert.
//
// PoisonConvert is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PoisonConvert is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with PoisonConvert. If not, see <http://www.gnu.org/licenses/>.
//
#include <sstream>
#include <iostream>
#include <algorithm>
#include "UserInterface.h"
UserInterface::UserInterface()
{
}
UserInterface::~UserInterface() throw()
{
}
std::string UserInterface::readString(bool show_arrows)
{
if (show_arrows == true)
{
std::cout << ">> ";
}
std::string input;
std::getline(std::cin, input);
return input;
}
std::string UserInterface::readStringNoCapitalize(bool show_arrows)
{
if (show_arrows == true)
{
std::cout << ">> ";
}
std::string input;
std::getline(std::cin, input);
std::transform(input.begin(), input.end(), input.begin(), ::tolower);
return input;
}
bool UserInterface::stringToUnsignedInt(std::string& string_number,
unsigned int& value)
{
std::istringstream stream(string_number);
stream >> value;
if(stream.fail() || ! stream.eof())
{
return false;
}
return true;
}
void UserInterface::writeNumber(unsigned int output, bool new_line,
std::string color)
{
if (color == "blue")
std::cout << "\033[34;1m";
else if (color == "yellow")
std::cout << "\033[33;1m";
else if (color == "green")
std::cout << "\033[32;1m";
else if (color == "red")
std::cout << "\033[31;1m";
else if (color == "white")
std::cout << "\e[0m";
else
std::cout << "\e[0m";
std::cout << output << "\e[0m";
if(new_line == true)
std::cout << std::endl;
}
void UserInterface::writeString(std::string output, bool new_line,
std::string color) const
{
if (color == "blue")
std::cout << "\033[34;1m";
else if (color == "yellow")
std::cout << "\033[33;1m";
else if (color == "green")
std::cout << "\033[32;1m";
else if (color == "red")
std::cout << "\033[31;1m";
else if (color == "white")
std::cout << "\e[0m";
else
std::cout << "\e[0m";
std::cout << output << "\e[0m";
if (new_line == true)
std::cout << std::endl;
}
UserInterface& UserInterface::operator=(const UserInterface& original_ui)
{
return *this;
}