-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.cpp
470 lines (436 loc) · 10.6 KB
/
Header.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
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
#include "Header.h"
/********************************************
* @Description Hàm đổi màu chữ console
* @parameter Mã màu muốn đổi
*
0 = Black 8 = Gray
1 = Blue 9 = Light Blue
2 = Green 10 = Light Green
3 = Aqua 11 = Light Aqua
4 = Red 12 = Light Red
5 = Purple 13 = Light Purple
6 = Yellow 14 = Light Yellow
7 = White 15 = Bright White
********************************************/
void setColor(int color)
{
WORD wColor;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
if (GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
wColor = (csbi.wAttributes & 0xF0) + (color & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
}
/********************************************
* @Description Hàm đổi màu background và chữ console
* @parameter Mã màu muốn đổi
********************************************/
void setColor(int backgound_color, int text_color)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
int color_code = backgound_color * 16 + text_color;
SetConsoleTextAttribute(hStdout, color_code);
}
/********************************************
* @Description Hàm lấy timestamp hiện tại
* @return Trả về timestamp hiện tại
********************************************/
long getCurrentTimestamp() {
time_t now = time(0);
return now;
}
/********************************************
* @Description Hàm chuyển đổi ngày tháng sang timestamp
* @parameter Ngày, tháng, năm, giờ, phút, giây
* @return Trả về timestamp của ngày tháng đó
********************************************/
long convertDateToTimestamp(int day, int month, int year, int hour = 0, int min = 0, int sec = 0) {
struct tm tm;
time_t rawtime;
time(&rawtime);
tm = *localtime(&rawtime);
tm.tm_year = year - 1900;
tm.tm_mon = month - 1;
tm.tm_hour = hour;
tm.tm_min = min;
tm.tm_sec = sec;
tm.tm_mday = day;
return mktime(&tm);
}
/********************************************
* @Description Hàm lấy ngày tháng hiện tại
* @return Trả về chuỗi ngày tháng hiện tại
********************************************/
string getCurrentDate() {
string result = "";
time_t now = time(0);
tm* ltm = localtime(&now);
string day, month, year, hour, min;
stringstream days;
days << ltm->tm_mday;
days >> day;
stringstream months;
months << (1 + ltm->tm_mon);
months >> month;
stringstream years;
years << (1900 + ltm->tm_year);
years >> year;
stringstream hours;
hours << ltm->tm_hour;
hours >> hour;
stringstream mins;
mins << ltm->tm_min;
mins >> min;
if (1 + ltm->tm_mon < 10) {
month = "0" + month;
}
if (ltm->tm_mday < 10) {
day = "0" + day;
}
if (ltm->tm_hour < 10) {
hour = "0" + hour;
}
if (ltm->tm_min < 10) {
min = "0" + min;
}
result = day + "/" + month + "/" + year + " " + hour + ":" + min;
return result;
}
/********************************************
* @Description Hàm loading
* @parameter Số giây delay và số lần chạy "|"
********************************************/
void loading(int sleep, int n) {
setColor(0, 6);
cout << "\n\n\n\n\t\t\t\t\tLOADING...\n\t\t";
for (int i = 0; i < n; i++) {
cout << "|";
Sleep(sleep);
}
}
/********************************************
* @Description Hàm xóa khoảng trắng và chuyển thành chữ UpperCase
* @parameter Một chuỗi cần chuyển
* @return Trả về chuỗi sau khi thực hiện
********************************************/
string convertUpperCaseAndDeleteSpace(string x) {
string result = "";
for (int i = 0; i < x.size(); i++) {
if (x[i] >= 'a' && x[i] <= 'z') {
x[i] = x[i] - 32;
}
if (x[i] != ' ') {
result = result + x[i];
}
}
return result;
}
/********************************************
* @Description Hàm chuyển thành chữ UpperCase
* @parameter Một chuỗi cần chuyển
* @return Trả về chuỗi sau khi thực hiện
********************************************/
string convertUpperCase(string x) {
for (int i = 0; i < x.size(); i++) {
if (x[i] >= 'a' && x[i] <= 'z') {
x[i] = x[i] - 32;
}
}
return x;
}
/********************************************
* @Description Hàm mã hóa chuỗi thành dấu "*"
* @parameter Độ dài của chuỗi tối đa
* @return Trả về chuỗi gốc nhưng hiển thị màn hình thành dấu "*"
********************************************/
string passwordInput(int maxLength) {
string pw = "";
for (char c; (c = getch()); )
{
if (c == '\n' || c == '\r') {
cout << "\n";
break;
}
else if (c == '\b') {
if (!pw.empty()) {
pw.erase(pw.size() - 1);
cout << "\b \b";
}
}
else if (isprint(c) && pw.size() < maxLength) {
cout << '*';
pw += c;
}
}
return pw;
}
/********************************************
* @Description Hàm kiểm tra chuỗi có chứa khoảng trắng hay không
* @parameter Một chuỗi cần kiểm tra
* @return Trả về true nếu chuỗi có khoảng trắng, ngược lại trả về false
********************************************/
bool checkContainsSpacing(string s) {
for (int i = 0; i < s.size(); i++) {
if (s[i] == ' ') {
return true;
}
}
return false;
}
/********************************************
* @Description Hàm kiểm tra chuỗi có bao gồm các kí tự số hay không
* @parameter Một chuỗi cần kiểm tra
* @return Trả về true nếu chuỗi toàn kí tự số, ngược lại trả về false
********************************************/
bool checkIsNumberString(string s) {
for (int i = 0; i < s.size(); i++) {
if (s[i] < '0' || s[i] > '9') {
return false;
}
}
return true;
}
/********************************************
* @Description Hàm hiển thị menu chức năng
********************************************/
void menuChucNang() {
setColor(2);
cout << "\t\t\t\t\t";
cout << "MENU CHUC NANG:" << endl;
setColor(7);
cout << setfill('=');
cout << "\t\t\t";
setColor(14);
cout << setw(50) << "=" << endl;
cout << setfill(' ');
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "0. Thoat chuong trinh. ";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "1. Hien thi danh sach chuyen bay. ";
setColor(14);
cout << "\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "2. Dat ve.";
setColor(14);
cout << "\t\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "3. Quan ly.";
setColor(14);
cout << "\t\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "Moi ban chon thao tac:";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << setfill('=');
cout << "\t\t\t";
setColor(7);
setColor(14);
cout << setw(50) << "=" << endl;
cout << setfill(' ');
setColor(7);
setColor(4);
cout << "\t\t\t\t Nhap thao tac muon chon: ";
setColor(7);
}
/********************************************
* @Description Hàm hiển thị menu đăng nhập nhân viên
* @parameter Chuỗi username và password
********************************************/
void dangNhapNhanVien(string& username, string& password) {
cin.ignore();
setColor(14);
cout << setfill('*');
cout << "\t\t\t";
cout << setw(60) << "*" << endl;
cout << setfill(' ');
setColor(7);
setColor(14);
cout << "\t\t\t";
cout << "*";
setColor(7);
setColor(2);
cout << " DANG NHAP HE THONG ";
setColor(7);
setColor(14);
cout << "*" << endl;
setColor(7);
setColor(14);
cout << setfill('*');
cout << "\t\t\t";
cout << setw(60) << "*" << endl;
cout << setfill(' ');
setColor(7);
setColor(2);
cout << "\t\t\t";
cout << " User";
setColor(7);
cout << ": ";
getline(cin, username);
cout << endl;
setColor(2);
cout << "\t\t\t";
cout << " Password";
setColor(7);
cout << ": ";
password = passwordInput(10);
}
/********************************************
* @Description Hàm hiển thị menu chức năng của nhân viên
********************************************/
void menuAdmin() {
setColor(2);
cout << "\t\t\t";
cout << "\t\t";
cout << "MENU CHUC NANG NHAN VIEN:" << endl;
setColor(7);
cout << setfill('=');
cout << "\t\t\t";
setColor(14);
cout << setw(50) << "=" << endl;
cout << setfill(' ');
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "0. Quay lai. ";
setColor(14);
cout << "\t\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "1. Xu ly dat ve. ";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "2. Xu ly tra ve.";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "3. Thong ke.";
setColor(14);
cout << "\t\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "Moi ban chon thao tac:";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << setfill('=');
cout << "\t\t\t";
setColor(7);
setColor(14);
cout << setw(50) << "=" << endl;
cout << setfill(' ');
setColor(7);
setColor(4);
cout << "\t\t\t\t Nhap thao tac muon chon: ";
setColor(7);
}
/********************************************
* @Description Hàm hiển thị menu chức năng thống kê của nhân viên
********************************************/
void menuAdminThongKe() {
setColor(2);
cout << "\t\t\t";
cout << "\t\t";
cout << "MENU CHUC NANG NHAN VIEN:" << endl;
setColor(7);
cout << setfill('=');
cout << "\t\t\t";
setColor(14);
cout << setw(65) << "=" << endl;
cout << setfill(' ');
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "0. Quay lai. ";
setColor(14);
cout << "\t\t\t\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "1. Thong ke theo ma chuyen bay. ";
setColor(14);
cout << "\t\t\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "2. Thong ke so lan thuc hien chuyen bay theo may bay.";
setColor(14);
cout << "\t";
cout << "|";
cout << endl;
cout << "\t\t\t";
cout << " |";
cout << "\t";
setColor(7);
cout << "Moi ban chon thao tac:";
setColor(14);
cout << "\t\t\t\t\t";
cout << "|";
cout << endl;
cout << setfill('=');
cout << "\t\t\t";
setColor(7);
setColor(14);
cout << setw(65) << "=" << endl;
cout << setfill(' ');
setColor(7);
setColor(4);
cout << "\t\t\t\t Nhap thao tac muon chon: ";
setColor(7);
}