-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATM System.cpp
More file actions
400 lines (320 loc) · 9.29 KB
/
ATM System.cpp
File metadata and controls
400 lines (320 loc) · 9.29 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
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iomanip>
using namespace std;
struct st_Client {
string Account_Number;
string Pin_Code;
string Name;
string Phone;
double Account_Balance;
bool Mark_For_Delete = false;
};
enum en_Main_Menu_Options {
e_Quick_Withdraw = 1, e_Normal_Withdraw = 2, e_Deposit = 3,
e_Check_Balance = 4, e_Exit = 5
};
const string Clients_File_Name = "Clients.txt";
st_Client Current_Client;
void Login();
void Show_Main_Menu();
void Show_Quick_Withdraw_Screen();
void Show_Normal_Withdraw_Screen();
vector <string> Split_String(string S1, string Delimiter) {
vector <string> V_Client;
short Position = 0;
string S_Word = "";
while ((Position = S1.find(Delimiter)) != std::string::npos) {
S_Word = S1.substr(0, Position);
if (S_Word != "") {
V_Client.push_back(S_Word);
}
S1.erase(0, Position + Delimiter.length());
}
if (S1 != "") {
V_Client.push_back(S1);
}
return V_Client;
}
st_Client Convert_Line_To_Record(string Line, string Separator = "#//#") {
st_Client Client;
vector <string> V_Client_Data = Split_String(Line, Separator);
Client.Account_Number = V_Client_Data[0];
Client.Pin_Code = V_Client_Data[1];
Client.Name = V_Client_Data[2];
Client.Phone = V_Client_Data[3];
Client.Account_Balance = stod(V_Client_Data[4]);
return Client;
}
string Convert_Record_To_Line(st_Client Client, string Separator = "#//#") {
string st_Client_Record = "";
st_Client_Record += Client.Account_Number + Separator;
st_Client_Record += Client.Pin_Code + Separator;
st_Client_Record += Client.Name + Separator;
st_Client_Record += Client.Phone + Separator;
st_Client_Record += to_string(Client.Account_Balance);
return st_Client_Record;
}
vector <st_Client> Load_Clients_Data_File(string File_Name) {
vector <st_Client> V_Clients;
fstream My_File;
My_File.open(File_Name, ios::in);
if (My_File.is_open()) {
string Line;
st_Client Client;
while (getline(My_File, Line)) {
Client = Convert_Line_To_Record(Line);
V_Clients.push_back(Client);
}
My_File.close();
}
return V_Clients;
}
bool Find_Client_By_Account_Number_And_Pin_Code(string Account_Number, string Pin_Code, st_Client& Client) {
vector <st_Client> V_Clients = Load_Clients_Data_File(Clients_File_Name);
for (st_Client C : V_Clients) {
if (C.Account_Number == Account_Number && C.Pin_Code == Pin_Code) {
Client = C;
return true;
}
}
return false;
}
vector <st_Client> Save_Clients_Data_To_File(string File_Name, vector <st_Client> V_Clients) {
fstream My_File;
My_File.open(File_Name, ios::out);
string Data_Line;
if (My_File.is_open()) {
for (st_Client C : V_Clients) {
if (C.Mark_For_Delete == false) {
Data_Line = Convert_Record_To_Line(C);
My_File << Data_Line << endl;
}
}
My_File.close();
}
return V_Clients;
}
bool Load_Client_Info(string Account_Number, string Pin_Code) {
if (Find_Client_By_Account_Number_And_Pin_Code(Account_Number, Pin_Code, Current_Client))
return true;
else
return false;
}
short Read_Main_Menu_Option() {
cout << "Choose What Do You Want To Do ? [1 to 5] ? ";
short Choice = 0;
cin >> Choice;
return Choice;
}
void Go_Back_To_Main_Menu() {
cout << "\n\nPress Any Key To Go Back To Main Menu...";
system("pause>0");
Show_Main_Menu();
}
short Read_Quick_Withdraw_Option() {
short Choice = 0;
while (Choice < 1 || Choice > 9) {
cout << "\nChoose What To Do From [1] to [9] ? ";
cin >> Choice;
}
return Choice;
}
short Get_Quick_Withdraw_Amount(short Quick_Withdraw_Option) {
switch (Quick_Withdraw_Option) {
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;
}
}
bool Deposit_Balance_To_Client_By_Account_Number(string Account_Number, double Amount, vector <st_Client>& V_Clients) {
char Answer = 'N';
cout << "\n\nAre You Sure You Want Perform This Transaction ? Y/N ? ";
cin >> Answer;
if (Answer == 'Y' || Answer == 'y') {
for (st_Client& C : V_Clients) {
if (C.Account_Number == Account_Number) {
C.Account_Balance += Amount;
Save_Clients_Data_To_File(Clients_File_Name, V_Clients);
cout << "\n\nDone Successfully . New Balance Is : " << C.Account_Balance;
return true;
}
}
return false;
}
return false;
}
void Perform_Quick_Withdraw_Option(short Quick_Withdraw_Option) {
if (Quick_Withdraw_Option == 9)
return;
short With_Draw_Balance = Get_Quick_Withdraw_Amount(Quick_Withdraw_Option);
if (With_Draw_Balance > Current_Client.Account_Balance) {
cout << "\n\nThe Amount Exceeds Your Balance, Make Another Choice.\n";
cout << "Press Any Key To Continue...";
system("pause>0");
Show_Quick_Withdraw_Screen();
return;
}
vector <st_Client> V_Clients = Load_Clients_Data_File(Clients_File_Name);
if (Deposit_Balance_To_Client_By_Account_Number(Current_Client.Account_Number, With_Draw_Balance * -1, V_Clients)) {
Current_Client.Account_Balance -= With_Draw_Balance;
}
}
void Show_Quick_Withdraw_Screen() {
system("cls");
cout << "==========================================\n";
cout << "\t\tQuick 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 " << Current_Client.Account_Balance;
Perform_Quick_Withdraw_Option(Read_Quick_Withdraw_Option());
}
int Read_Withdraw_Amount() {
int Amount = 0;
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 Perform_Normal_Withdraw_Option() {
int With_Draw_Balance = Read_Withdraw_Amount();
if (With_Draw_Balance > Current_Client.Account_Balance) {
cout << "\n\nThe Amount Exceeds Your Balance, Make Another Choice.\n";
cout << "Press Any Key To Continue...";
system("pause>0");
Show_Normal_Withdraw_Screen();
return;
}
vector <st_Client> V_Clients = Load_Clients_Data_File(Clients_File_Name);
if (Deposit_Balance_To_Client_By_Account_Number(Current_Client.Account_Number, With_Draw_Balance * -1, V_Clients)) {
Current_Client.Account_Balance -= With_Draw_Balance;
}
}
void Show_Normal_Withdraw_Screen() {
system("cls");
cout << "==========================================\n";
cout << "\tNormal Withdraw Screen\n";
cout << "==========================================\n";
Perform_Normal_Withdraw_Option();
}
double Read_Deposit_Amount() {
double Amount = 0;
cout << "\nEnter A Positive Deposit Amount ? ";
cin >> Amount;
while (Amount <= 0) {
cout << "\nEnter A Positive Deposit Amount ? ";
cin >> Amount;
}
return Amount;
}
void Perform_Deposit_Option() {
double Deposit_Amount = Read_Deposit_Amount();
vector <st_Client> V_Clients = Load_Clients_Data_File(Clients_File_Name);
if (Deposit_Balance_To_Client_By_Account_Number(Current_Client.Account_Number, Deposit_Amount, V_Clients)) {
Current_Client.Account_Balance += Deposit_Amount;
}
}
void Show_Deposit_Screen() {
system("cls");
cout << "==========================================\n";
cout << "\t\tDeposit Screen\n";
cout << "==========================================\n";
Perform_Deposit_Option();
}
void Show_Check_Balance_Screen() {
system("cls");
cout << "==========================================\n";
cout << "\tCheck Balance Screen\n";
cout << "==========================================\n";
cout << "Your Balance Is " << Current_Client.Account_Balance << "\n";
}
void Perform_Main_Menu_Option(en_Main_Menu_Options Main_Menu_Option) {
switch (Main_Menu_Option) {
case en_Main_Menu_Options::e_Quick_Withdraw:
system("cls");
Show_Quick_Withdraw_Screen();
Go_Back_To_Main_Menu();
break;
case en_Main_Menu_Options::e_Normal_Withdraw:
system("cls");
Show_Normal_Withdraw_Screen();
Go_Back_To_Main_Menu();
break;
case en_Main_Menu_Options::e_Deposit:
system("cls");
Show_Deposit_Screen();
Go_Back_To_Main_Menu();
break;
case en_Main_Menu_Options::e_Check_Balance:
system("cls");
Show_Check_Balance_Screen();
Go_Back_To_Main_Menu();
break;
case en_Main_Menu_Options::e_Exit:
system("cls");
Login();
break;
}
}
void Show_Main_Menu() {
system("cls");
cout << "==========================================\n";
cout << "\tATM Main Menu 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";
Perform_Main_Menu_Option((en_Main_Menu_Options)Read_Main_Menu_Option());
}
void Login() {
bool Login_Faild = false;
string Account_Number, Pin_Code;
do {
system("cls");
cout << "\n____________________________\n";
cout << "\tLogin Screen";
cout << "\n____________________________\n";
if (Login_Faild) {
cout << "Invalid Account Number/Pin Code!\n";
}
cout << "Enter Account Number ? ";
cin >> Account_Number;
cout << "Enter Pin Code ? ";
cin >> Pin_Code;
Login_Faild = !Load_Client_Info(Account_Number, Pin_Code);
} while (Login_Faild);
Show_Main_Menu();
}
int main() {
Login();
system("pause>0");
return 0;
}