-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM System.cpp
504 lines (370 loc) · 10.9 KB
/
ATM System.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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iomanip>
using namespace std;
struct sClient
{
string AccountNumber;
string PinCode;
string Name;
string Phone;
double AccountBalance;
bool MarkForDelete = false;
};
enum enMainMenueOptions {
eQucikWithdraw = 1, eNormalWithDraw = 2, eDeposit = 3,
eCheckBalance = 4, eExit = 5
};
const string ClientsFileName = "Clients.txt";
sClient CurrentClient;
void ShowMainMenue();
void Login();
void ShowQuickWithdrawScreen();
void ShowNormalWithDrawScreen();
void ShowDepositScreen();
vector<string> SplitString(string S1, string Delim)
{
vector<string> vString;
short pos = 0;
string sWord; // define a string variable
// use find() function to get the position of the delimiters
while ((pos = S1.find(Delim)) != std::string::npos)
{
sWord = S1.substr(0, pos); // store the word
if (sWord != "")
{
vString.push_back(sWord);
}
S1.erase(0, pos + Delim.length()); /* erase() until positon and move to next word. */
}
if (S1 != "")
{
vString.push_back(S1); // it adds last word of the string.
}
return vString;
}
sClient ConvertLinetoRecord(string Line, string Seperator = "#//#")
{
sClient Client;
vector<string> vClientData;
vClientData = SplitString(Line, Seperator);
Client.AccountNumber = vClientData[0];
Client.PinCode = vClientData[1];
Client.Name = vClientData[2];
Client.Phone = vClientData[3];
Client.AccountBalance = stod(vClientData[4]);//cast string to double
return Client;
}
string ConvertRecordToLine(sClient Client, string Seperator = "#//#")
{
string stClientRecord = "";
stClientRecord += Client.AccountNumber + Seperator;
stClientRecord += Client.PinCode + Seperator;
stClientRecord += Client.Name + Seperator;
stClientRecord += Client.Phone + Seperator;
stClientRecord += to_string(Client.AccountBalance);
return stClientRecord;
}
vector <sClient> LoadCleintsDataFromFile(string FileName)
{
vector <sClient> vClients;
fstream MyFile;
MyFile.open(FileName, ios::in);//read Mode
if (MyFile.is_open())
{
string Line;
sClient Client;
while (getline(MyFile, Line))
{
Client = ConvertLinetoRecord(Line);
vClients.push_back(Client);
}
MyFile.close();
}
return vClients;
}
bool FindClientByAccountNumberAndPinCode(string AccountNumber, string PinCode, sClient& Client)
{
vector <sClient> vClients = LoadCleintsDataFromFile(ClientsFileName);
for (sClient C : vClients)
{
if (C.AccountNumber == AccountNumber && C.PinCode == PinCode)
{
Client = C;
return true;
}
}
return false;
}
vector <sClient> SaveCleintsDataToFile(string FileName, vector <sClient> vClients)
{
fstream MyFile;
MyFile.open(FileName, ios::out);
string DataLine;
if (MyFile.is_open())
{
for (sClient C : vClients)
{
if (C.MarkForDelete == false)
{
//we only write records that are not marked for delete.
DataLine = ConvertRecordToLine(C);
MyFile << DataLine << endl;
}
}
MyFile.close();
}
return vClients;
}
bool DepositBalanceToClientByAccountNumber(string AccountNumber, double Amount, vector <sClient>& vClients)
{
char Answer = 'n';
cout << "\n\nAre you sure you want perfrom this transaction? y/n ? ";
cin >> Answer;
if (Answer == 'y' || Answer == 'Y')
{
for (sClient& C : vClients)
{
if (C.AccountNumber == AccountNumber)
{
C.AccountBalance += Amount;
SaveCleintsDataToFile(ClientsFileName, vClients);
cout << "\n\nDone Successfully. New balance is: " << C.AccountBalance;
return true;
}
}
return false;
}
}
short ReadQuickWithdrawOption()
{
short Choice = 0;
while (Choice < 1 || Choice>9)
{
cout << "\nChoose what to do from [1] to [9] ? ";
cin >> Choice;
}
return Choice;
}
short getQuickWithDrawAmount(short QuickWithDrawOption)
{
switch (QuickWithDrawOption)
{
case 1:
return 20;
case 2:
return 50;
case 3:
return 100;
case 4:
return 200;
case 5:
return 400;
case 6:
return 600;
case 7:
return 800;
case 8:
return 1000;
default:
return 0;
}
}
void PerfromQuickWithdrawOption(short QuickWithDrawOption)
{
if (QuickWithDrawOption == 9)//exit
return;
short WithDrawBalance = getQuickWithDrawAmount(QuickWithDrawOption);
if (WithDrawBalance > CurrentClient.AccountBalance)
{
cout << "\nThe amount exceeds your balance, make another choice.\n";
cout << "Press Anykey to continue...";
system("pause>0");
ShowQuickWithdrawScreen();
return;
}
vector <sClient> vClients = LoadCleintsDataFromFile(ClientsFileName);
DepositBalanceToClientByAccountNumber(CurrentClient.AccountNumber, WithDrawBalance * -1, vClients);
CurrentClient.AccountBalance -= WithDrawBalance;
}
double ReadDepositAmount()
{
double Amount;
cout << "\nEnter a positive Deposit Amount? ";
cin >> Amount;
while (Amount <= 0)
{
cout << "\nEnter a positive Deposit Amount? ";
cin >> Amount;
}
return Amount;
}
void PerfromDepositOption()
{
double DepositAmount = ReadDepositAmount();
vector <sClient> vClients = LoadCleintsDataFromFile(ClientsFileName);
DepositBalanceToClientByAccountNumber(CurrentClient.AccountNumber, DepositAmount, vClients);
CurrentClient.AccountBalance += DepositAmount;
}
void ShowDepositScreen()
{
system("cls");
cout << "===========================================\n";
cout << "\t\tDeposit Screen\n";
cout << "===========================================\n";
PerfromDepositOption();
}
void ShowCheckBalanceScreen()
{
system("cls");
cout << "===========================================\n";
cout << "\t\tCheck Balance Screen\n";
cout << "===========================================\n";
cout << "Your Balance is " << CurrentClient.AccountBalance << "\n";
}
int ReadWithDrawAmont()
{
int Amount;
cout << "\nEnter an amount multiple of 5's ? ";
cin >> Amount;
while (Amount % 5 != 0)
{
cout << "\nEnter an amount multiple of 5's ? ";
cin >> Amount;
}
return Amount;
}
void PerfromNormalWithdrawOption()
{
int WithDrawBalance = ReadWithDrawAmont();
if (WithDrawBalance > CurrentClient.AccountBalance)
{
cout << "\nThe amount exceeds your balance, make another choice.\n";
cout << "Press Anykey to continue...";
system("pause>0");
ShowNormalWithDrawScreen();
return;
}
vector <sClient> vClients = LoadCleintsDataFromFile(ClientsFileName);
DepositBalanceToClientByAccountNumber(CurrentClient.AccountNumber, WithDrawBalance * -1, vClients);
CurrentClient.AccountBalance -= WithDrawBalance;
}
void ShowNormalWithDrawScreen()
{
system("cls");
cout << "===========================================\n";
cout << "\t\tNormal Withdraw Screen\n";
cout << "===========================================\n";
PerfromNormalWithdrawOption();
}
void ShowQuickWithdrawScreen()
{
system("cls");
cout << "===========================================\n";
cout << "\t\tQucik Withdraw\n";
cout << "===========================================\n";
cout << "\t[1] 20\t\t[2] 50\n";
cout << "\t[3] 100\t\t[4] 200\n";
cout << "\t[5] 400\t\t[6] 600\n";
cout << "\t[7] 800\t\t[8] 1000\n";
cout << "\t[9] Exit\n";
cout << "===========================================\n";
cout << "Your Balance is " << CurrentClient.AccountBalance;
PerfromQuickWithdrawOption(ReadQuickWithdrawOption());
}
void GoBackToMainMenue()
{
cout << "\n\nPress any key to go back to Main Menue...";
system("pause>0");
ShowMainMenue();
}
short ReadMainMenueOption()
{
short Choice = 0;
cout << "Choose what do you want to do? [1 to 5]? ";
cin >> Choice;
return Choice;
}
void PerfromMainMenueOption(enMainMenueOptions MainMenueOption)
{
switch (MainMenueOption)
{
case enMainMenueOptions::eQucikWithdraw:
{
system("cls");
ShowQuickWithdrawScreen();
GoBackToMainMenue();
break;
}
case enMainMenueOptions::eNormalWithDraw:
system("cls");
ShowNormalWithDrawScreen();
GoBackToMainMenue();
break;
case enMainMenueOptions::eDeposit:
system("cls");
ShowDepositScreen();
GoBackToMainMenue();
break;
case enMainMenueOptions::eCheckBalance:
system("cls");
ShowCheckBalanceScreen();
GoBackToMainMenue();
break;
case enMainMenueOptions::eExit:
system("cls");
Login();
break;
}
}
void ShowMainMenue()
{
system("cls");
cout << "===========================================\n";
cout << "\t\tATM Main Menue Screen\n";
cout << "===========================================\n";
cout << "\t[1] Quick Withdraw.\n";
cout << "\t[2] Normal Withdraw.\n";
cout << "\t[3] Deposit\n";
cout << "\t[4] Check Balance.\n";
cout << "\t[5] Logout.\n";
cout << "===========================================\n";
PerfromMainMenueOption((enMainMenueOptions)ReadMainMenueOption());
}
bool LoadClientInfo(string AccountNumber, string PinCode)
{
if (FindClientByAccountNumberAndPinCode(AccountNumber, PinCode, CurrentClient))
return true;
else
return false;
}
void Login()
{
bool LoginFaild = false;
string AccountNumber, PinCode;
do
{
system("cls");
cout << "\n---------------------------------\n";
cout << "\tLogin Screen";
cout << "\n---------------------------------\n";
if (LoginFaild)
{
cout << "Invlaid Account Number/PinCode!\n";
}
cout << "Enter Account Number? ";
cin >> AccountNumber;
cout << "Enter Pin? ";
cin >> PinCode;
LoginFaild = !LoadClientInfo(AccountNumber, PinCode);
} while (LoginFaild);
ShowMainMenue();
}
int main()
{
Login();
system("pause>0");
return 0;
}