-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCinReader.cpp
More file actions
406 lines (367 loc) · 7.07 KB
/
CinReader.cpp
File metadata and controls
406 lines (367 loc) · 7.07 KB
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
#include "CinReader.h"
CinReader::CinReader ()
{
intErrors = true;
charRangeErrors = true;
boolMsg = "Please enter \"true\" or \"false\": ";
charMsg = "Please enter a single character: ";
charRangeMsg = "is not valid. Re-enter: ";
intMsg = "Re-enter number: ";
doubleMsg = "Input is not a double. Re-enter: ";
floatMsg = "Input is not a float. Re-enter: ";
stringMsg = "Input cannot be blank--enter text: ";
}
CinReader::~CinReader ()
{
}
int CinReader::readInt (int lower, int upper)
{
string input = "";
string msg = "";
getline (cin, input);
input = stripCommas(input);
if (lower > upper)
{
int temp = upper;
lower = upper;
upper = temp;
}
while (!testIntInput(input, msg, lower, upper))
{
if (intErrors)
cout << "[ ERROR: " << msg << " ]\n";
cout << intMsg;
getline (cin, input);
}
return (atoi(input.c_str()));
}
int CinReader::readInt (bool userLimit, int lower, int upper)
{
if (userLimit)
return (readInt(lower, upper));
else
return (readInt());
}
double CinReader::readDouble ()
{
string input = "";
getline(cin, input);
input = stripCommas(input);
while (!testDoubleInput(input))
{
cout << doubleMsg;
getline(cin, input);
}
return (atof(input.c_str()));
}
float CinReader::readFloat ()
{
string input = "";
getline(cin, input);
input = stripCommas(input);
while (!testDoubleInput(input))
{
cout << floatMsg;
getline(cin, input);
}
return (atof(input.c_str()));
}
char CinReader::readChar (string range)
{
bool valid = false;
string input = "";
getline(cin, input);
if (range.length() > 0)
{
do
{
while (input.length() != 1)
{
cout << charMsg;
getline(cin, input);
}
if (!testCharInput(input[0], range))
{
if (charRangeErrors)
cout << "[" << input[0] << "] " << charRangeMsg;
input = "";
}
else
valid = true;
} while (!valid);
}
else
{
while (input.length() != 1)
{
cout << charMsg;
getline(cin, input);
}
}
return (input[0]);
}
bool CinReader::readBool ()
{
string input = "";
getline(cin, input);
while (!testBoolInput(input))
{
cout << boolMsg;
getline(cin, input);
}
return (getBoolValue(input));
}
string CinReader::readString (bool allowEmpty, unsigned int limitTo)
{
string input = "";
getline(cin, input);
if (!allowEmpty)
{
while (input.length() == 0)
{
cout << stringMsg;
getline(cin, input);
}
}
if (limitTo > 0)
{
if (input.length() > limitTo)
input = input.substr(0, limitTo);
}
return input;
}
void CinReader::showIntErrors (bool show)
{
intErrors = show;
}
void CinReader::showCharRangeErrors (bool show)
{
charRangeErrors = show;
}
void CinReader::setBoolMessage (string newMessage)
{
boolMsg = newMessage;
if (boolMsg.length() > 0 && boolMsg[boolMsg.length()-1] != ' ')
boolMsg += ' ';
}
void CinReader::setCharMessage (string newMessage)
{
charMsg = newMessage;
if (charMsg.length() > 0 && charMsg[charMsg.length()-1] != ' ')
charMsg += ' ';
}
void CinReader::setCharRangeMessage (string newMessage)
{
charRangeMsg = newMessage;
if (charRangeMsg.length() > 0 && charRangeMsg[charRangeMsg.length()-1] != ' ')
charRangeMsg += ' ';
}
void CinReader::setIntMessage (string newMessage)
{
intMsg = newMessage;
if (intMsg.length() > 0 && intMsg[intMsg.length()-1] != ' ')
intMsg += ' ';
}
void CinReader::setDoubleMessage (string newMessage)
{
doubleMsg = newMessage;
if (doubleMsg.length() > 0 && doubleMsg[doubleMsg.length()-1] != ' ')
doubleMsg += ' ';
}
void CinReader::setFloatMessage (string newMessage)
{
floatMsg = newMessage;
if (floatMsg.length() > 0 && floatMsg[floatMsg.length()-1] != ' ')
floatMsg += ' ';
}
void CinReader::setStringMessage (string newMessage)
{
stringMsg = newMessage;
if (stringMsg.length() > 0 && stringMsg[stringMsg.length()-1] != ' ')
stringMsg += ' ';
}
string CinReader::stripCommas (string input)
{
string outs = "";
for (unsigned int i=0; i<input.length(); i++)
{
if (input[i] != ',')
outs += input[i];
}
return outs;
}
bool CinReader::testIntInput (string input, string& msg, int lowerLimit, int upperLimit)
{
int upperMarker = -1;
int lowerMarker = -1;
if (upperLimit == INT_MAX)
upperMarker = 47;
if (lowerLimit == INT_MIN)
lowerMarker = 48;
long linput = strtol(input.c_str(), NULL, 10);
stringstream ssinput;
ssinput << linput;
if (ssinput.str() != input)
{
msg = "integer input out-of-range";
return false;
}
else
{
if (input.length() > 0)
{
if (input[0] != '-' && (!isdigit(input[0])))
{
msg = "not an integer";
return false;
}
for (unsigned int i=1; i<input.length(); i++)
{
if (!isdigit(input[i]))
{
msg = "not an integer";
return false;
}
}
int tmp = strtol(input.c_str(), NULL, 10);
if (tmp >= upperLimit)
{
if (upperMarker != -1)
{
string ts = "";
ts += input[input.length()-2];
ts += input[input.length()-1];
int ti = atoi(ts.c_str());
if (ti > upperMarker)
{
msg = "larger than 32-bit integer";
return false;
}
else
return true;
}
else
{
if (tmp == upperLimit)
return true;
else
{
msg = "larger than upper limit";
return false;
}
}
}
else if (tmp <= lowerLimit)
{
if (lowerMarker != -1)
{
string ts = "";
ts += input[input.length()-2];
ts += input[input.length()-1];
int ti = atoi(ts.c_str());
if (ti > lowerMarker)
{
msg = "smaller than 32-bit integer";
return false;
}
else
return true;
}
else
{
if (tmp == lowerLimit)
return true;
else
{
msg = "smaller than lower limit";
return false;
}
}
}
else
return true;
}
msg = "no input";
return false;
}
}
bool CinReader::testDoubleInput (string input)
{
int dotCount = 0;
if (input.length() > 0)
{
if (input[0] != '-' && (!isdigit(input[0])) && input[0] != '.')
return false;
if (input[0] == '.')
dotCount = 1;
for (unsigned int i=1; i<input.length(); i++)
{
if (input[i] == '.')
{
if (dotCount != 0)
return false;
else
++dotCount;
}
else if (!isdigit(input[i]))
return false;
}
return true;
}
return false;
}
bool CinReader::testCharInput (char c, string range)
{
bool valid = false;
for (unsigned int i=0; i<range.length(); i++)
{
if (range[i] == c)
{
valid = true;
break;
}
}
return valid;
}
bool CinReader::testBoolInput (string input)
{
if (input.length() > 0)
{
if (input.length() == 1)
{
if (toupper(input[0]) == 'T' || toupper(input[0]) == 'F')
return true;
else
return false;
}
else
{
if (ignoreCaseCompare(input, "TRUE") ||
ignoreCaseCompare(input, "FALSE"))
return true;
else
return false;
}
}
else
return false;
}
bool CinReader::getBoolValue (string input)
{
if (toupper(input[0]) == 'T')
return true;
else
return false;
}
bool CinReader::ignoreCaseCompare (string input, string comp)
{
toUpperCase(input);
if (input == comp)
return true;
else
return false;
}
void CinReader::toUpperCase (string& s)
{
transform(s.begin(), s.end(), s.begin(), ::toupper);
}