-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserIO.cpp
executable file
·177 lines (147 loc) · 3.85 KB
/
UserIO.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
//
// Created by ben on 27/03/2020.
//
#include <string>
#include <iostream>
#include "UserIO.h"
using namespace std;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
void UserIO::ClearScreen() {
#ifdef _WIN32
system("cls");
#else
system("clear");
system("echo 501 Darts - Ben Fleuty 1900040 - CMP 102 Assessment && echo");
#endif
}
void UserIO::ResetCin() {
cin.clear();
//cin.ignore();
}
string UserIO::String(const string &prompt = "", bool allowEmpty = false) {
string userInput;
cout << prompt;
while (true) {
//ResetCin();
getline(cin, userInput);
if (userInput.empty() || userInput[0] == ' ' && !allowEmpty) {
ClearScreen();
cout << "\nYour input was not a valid string!\n";
if (prompt.empty()) cout << "Your input: ";
else cout << prompt;
} else break;
}
ResetCin();
return userInput;
}
string UserIO::String(const string &prompt = "") {
return String(prompt, false);
}
int UserIO::Int(const string &prompt) {
string userInput;
long int input;
cout << prompt;
while (true) {
ResetCin();
getline(cin, userInput);
try {
input = stoi(userInput);
ResetCin();
if (input > INT32_MAX)
return INT32_MAX;
return input;
}
catch (...) {
cout << "\nYour input is not a valid number!\n";
if (prompt.empty()) cout << "Your input: ";
else cout << prompt;
}
}
}
uint UserIO::uInt(const string &prompt) {
string userInput;
unsigned long int input;
cout << prompt;
while (true) {
ResetCin();
getline(cin, userInput);
try {
input = stoi(userInput);
ResetCin();
if (input > UINT32_MAX)
return UINT32_MAX;
return input;
}
catch (...) {
cout << "\nYour input is not a valid number!\n";
if (prompt.empty()) cout << "Your input: ";
else cout << prompt;
}
}
}
short UserIO::Short(const string &prompt) {
string userInput;
int input;
cout << prompt;
while (true) {
ResetCin();
getline(cin, userInput);
try {
input = stoi(userInput);
ResetCin();
if (input > INT16_MAX)
return INT16_MAX;
else if (input < INT16_MIN)
return INT16_MIN;
return input;
}
catch (...) {
cout << "\nYour input is not a valid number!\n";
if (prompt.empty()) cout << "Your input: ";
else cout << prompt;
}
}
}
ushort UserIO::uShort(const string &prompt) {
string userInput;
uint input;
cout << prompt;
while (true) {
ResetCin();
getline(cin, userInput);
try {
input = stoul(userInput);
ResetCin();
if (input > UINT16_MAX)
return UINT16_MAX;
return input;
}
catch (...) {
cout << "\nYour input is not valid!\n";
if (prompt.empty()) cout << "Your input: ";
else cout << prompt;
}
}
}
bool UserIO::Bool(const string& prompt) {
while (true) {
ClearScreen();
unsigned char userInput = tolower(UserIO::String(prompt, false)[0]);
if (userInput == 'n')
return false;
if (userInput == 'y')
return true;
}
}
bool UserIO::Bool(const string& prompt, char noChar = 'n', char yesChar = 'y') {
while (true) {
ClearScreen();
unsigned char userInput = tolower(UserIO::String(prompt, false)[0]);
if (userInput == noChar)
return false;
if (userInput == yesChar)
return true;
}
}