-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.h
356 lines (309 loc) · 6.92 KB
/
utils.h
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
/**
* @file C:\Users\ineeve\Documents\GitHub\aeda-casino\utils.h
*
* @brief Declares the utilities.
*/
#pragma once
#include <iostream>
#include <string>
#include <vector>
#include <cstdlib>
#include <fstream>
#include <iomanip>
#include <time.h>
using namespace std;
/**
* @struct Card
*
* @brief A card.
*
* @author Renato Campos
* @date 19/11/2016
*/
struct Card {
/** @brief The rank. */
string rank;
/** @brief The suits. */
string suits;
/** @brief The score. */
unsigned int score;
/**
* @fn bool operator==(const Card &a) const
*
* @brief Equality operator.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param a The Card to process.
*
* @return True if the parameters are considered equivalent.
*/
bool operator==(const Card &a) const
{
return (this->rank == a.rank);
}
/**
* @fn bool operator==(const string &a) const
*
* @brief Equality operator.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param a The rank to process.
*
* @return True if the parameters are considered equivalent.
*/
bool operator==(const string &a) const
{
return (this->rank == a);
}
ostream& operator<<(ostream& out) {
out << this->rank;
if (this->suits == "Heart")
{
out << (char)3;
}
if (this->suits == "Diamond")
{
out << (char)4;
}
if (this->suits == "Club")
{
out << (char)5;
}
if (this->suits == "Spade")
{
out << (char)6;
}
return out;
}
};
/**
* @fn std::ostream& operator<<(std::ostream& out, const Card& c);
*
* @brief Stream insertion operator.
* Makes the display of a card on the terminal.
* @author Renato Campos
* @date 19/11/2016
*
* @param [in,out] out The outstream.
* @param c The Card to process.
*
* @return The ostream produced.
*/
std::ostream& operator<<(std::ostream& out, const Card& c);
/**
* @fn std::ostream& operator<<(std::ostream& out, const vector<Card>& v);
*
* @brief Stream insertion operator.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param [in,out] out The outstream.
* @param v The vector of cards to process.
*
* @return The ostream produced.
*/
std::ostream& operator<<(std::ostream& out, const vector<Card>& v);
/**
* @fn vector <Card> createDeck();
*
* @brief Creates the deck.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The new deck.
*/
vector <Card> createDeck();
/**
* @fn string getHumanPlay();
*
* @brief Gets human play.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The human play.
*/
string getHumanPlay();
/**
* @fn unsigned short int readUnsignedIntBetween(unsigned int minValue, unsigned int maxValue);
*
* @brief Reads unsigned int between a minimum and a maximum values.
* Ask for user input.
* @author Renato Campos
* @date 19/11/2016
*
* @param minValue The minimum value.
* @param maxValue The maximum value.
*
* @return A unsigned int between the parameters set.
*/
unsigned short int readUnsignedIntBetween(unsigned int minValue, unsigned int maxValue);
/**
* @fn int readIntBetween(int min, int max);
*
* @brief Reads int between a minimum and a maximum values.
* Ask for user input.
* @author Renato Campos
* @date 19/11/2016
*
* @param min The minimum.
* @param max The maximum.
*
* @return The int between the parameters set.
*/
int readIntBetween(int min, int max);
/**
* @fn unsigned int readUnsignedInt();
*
* @brief Reads unsigned int.
* Asks for user input.
* @author Renato Campos
* @date 19/11/2016
*
* @return The unsigned int.
*/
unsigned int readUnsignedInt();
/**
* @fn int readInt();
*
* @brief Reads a int value.
* Asks for user input.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The int inserted by the user.
*/
int readInt();
/**
* @fn int readBinary();
*
* @brief Reads a 0 or a 1 from user input.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The user input.
*/
int readBinary();
/**
* @fn float readFloat();
*
* @brief Reads a float from user input.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The float inputed by the user.
*/
float readFloat();
/**
* @fn char readCharYorN();
*
* @brief Reads character "y" or "n".
* Case insensitive.
*
* @author Renato Campos
* @date 19/11/2016
*
* @return The character inserted by the user: "y" or "n".
*/
char readCharYorN();
/**
* @fn void Users(vector <int> &usersVEC, int &user);
*
* @brief Reads and parses the users file to usersVec.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param [in,out] usersVEC The users vector.
* @param [in,out] user The user id.
*/
void Users(vector <int> &usersVEC, int &user);
/**
* @fn void FileCopy(string filetxt, string filetxt_temp);
*
* @brief Copies text between files.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param filetxt The file name;
* @param filetxt_temp The temporary file name;
*/
void FileCopy(string filetxt, string filetxt_temp);
/**
* @fn bool FileExist(string filetxt_temp);
*
* @brief Checks if the file with name filetxt_temp exists.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param filetxt_temp The temporary file name;
*
* @return True if it exists, false otherwise.
*/
bool FileExist(string filetxt_temp);
/**
* @fn int BinaryInt(int id, vector <int> VEC);
*
* @brief Performs a binary search of id in VEC.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param id The identifier.
* @param VEC The vector.
*
* @return The index of id in Vec, or -1 if id was not found.
*/
int BinaryInt(int id, vector <int> VEC);
/**
* @fn int saveChanges(vector <int> &usersVEC, int &user, pair <int, int> xy, int &save);
*
* @brief Asks user to save the current status when exiting.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param [in,out] usersVEC The users vector.
* @param [in,out] user The user id.
* @param xy Pair with horizontal and vertical lengths of the terminal.
* @param [in,out] save Boolean that holds user option to save or not the changes made.
*
* @return 0 in case of operation success.
*/
int saveChanges(vector <int> &usersVEC, int &user, pair <int, int> xy, int &save);
/**
* @fn int readNameOfFile(string &fileName);
*
* @brief Ask user to input a file name.
*
* @author Renato Campos
* @date 19/11/2016
*
* @param [in,out] fileName A string that will be updated with the user input.
*
* @return 0 in case of success.
*/
int readNameOfFile(string &fileName);
/**
* @fn void waitXTime(unsigned int time);
*
* @brief Sleeps for a given time.
*
* @author Renato Campos
* @date 20/11/2016
*
* @param time The time in seconds.
*
*/
void waitXTime(unsigned int time);