-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATM System.cpp
More file actions
416 lines (407 loc) · 9.57 KB
/
Copy pathATM System.cpp
File metadata and controls
416 lines (407 loc) · 9.57 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
407
408
409
410
411
412
413
414
415
416
//ATM System Porject
// Copyright (c) 2025 Anas Ali Chafai. All rights reserved.
// Contact: anaschafai04gmail.com
#include<iostream>
#include <cstdlib>
#include<iomanip>
#include<string>
#include<cctype>
#include<vector>
#include<fstream>
using namespace std;
const string ClientsFileName = "Bank.txt";
struct stAccount {
string accountNumber;
string pinCode;
string name;
string phone;
float accountBalance = 0;
bool mark = false;
};
enum enAtm {
eQuickWithdraw = 1, eNormalWithdraw = 2,
eDeposit = 3, eCheckBalnce = 4, eLogout = 5
};
stAccount CurrentAcc;
void ATMscreen();
void QuickWithdrawScreen();
void NormalWithdrawScreen();
void Login();
string ReadString(string msg) {
string s;
cout << msg;
getline(cin >> ws, s);
return s;
}
short ReadNum(string msg) {
short n;
cout << msg;
cin >> n;
while (cin.fail())
{
cin.clear();
cin.ignore(std::numeric_limits < std::streamsize > ::max(), '\n');
cout << "please enter a validate num";
cin >> n;
}
return n;
}
short GetChoice(short rangeFrom, short rangeTo) {
short choice;
cout << "Choose what to withdraw from [" << rangeFrom << "] to[" << rangeTo << "] ? ";
cin >> choice;
return choice;
}
vector <string> SplitString(string S, string delim)
{
vector <string> vs;
short pos;
string word;
while ((pos = S.find(delim)) != string::npos)
{
word = S.substr(0, pos);
if (word != "")
{
vs.push_back(word);
}
S.erase(0, pos + delim.length());
}
if (S != "")
{
vs.push_back(S);
}
return vs;
}
stAccount ConvertLineToRecord(string Line, string sperator = "#//#")
{
vector <string> StringDevided = SplitString(Line, sperator);
stAccount Acc;
Acc.accountNumber = StringDevided[0];
Acc.pinCode = StringDevided[1];
Acc.name = StringDevided[2];
Acc.phone = StringDevided[3];
Acc.accountBalance = stof(StringDevided[4]);
return Acc;
}
string ConvertRecordToLine(stAccount Account, string sperator = "#//#")
{
string s = Account.accountNumber + sperator +
Account.pinCode + sperator + Account.name +
sperator + Account.phone + sperator +
to_string(Account.accountBalance);
return s;
}
void LoadDataFromFile(string FileName, vector <stAccount>& vAcc)
{
fstream f;
string line;
stAccount Acc;
f.open(FileName, ios::in);
if (f.is_open())
{
while (getline(f, line))
{
if (line != "")
{
Acc = ConvertLineToRecord(line);
vAcc.push_back(Acc);
}
}
f.close();
}
}
void SaveVectorToFile(string FileName, vector <stAccount> vAcc)
{
fstream f;
string s;
f.open(FileName, ios::out);
if (f.is_open())
{
for (stAccount& Account : vAcc)
{
s = ConvertRecordToLine(Account);
f << s << endl;
}
f.close();
}
}
void SaveClientToFile(const stAccount& client)
{
fstream File;
File.open(ClientsFileName, ios::out | ios::app);
if (File.is_open())
{
File << ConvertRecordToLine(client) << endl;
File.close();
}
}
bool CheckIfClientExist(vector < stAccount>& vAcc, string AccountNumber)
{
bool R = false;
for (stAccount& A : vAcc)
{
if (A.accountNumber == AccountNumber)
{
R = true;
break;
}
}
return R;
}
bool CheckIfClientExist2(vector < stAccount>& vAcc, string AccountNumber, string PinCode, stAccount& CurrentAcc)
{
bool R = false;
for (stAccount& A : vAcc)
{
if (A.accountNumber == AccountNumber && A.pinCode == PinCode)
{
R = true;
CurrentAcc = A;
break;
}
}
return R;
}
bool CheckIfClientExist(vector < stAccount>& vAcc, string AccountNumber, stAccount& ACC)
{
bool R = false;
for (stAccount& A : vAcc)
{
if (A.accountNumber == AccountNumber)
{
A.mark = true;
ACC = A;
R = true;
break;
}
}
return R;
}
void GoBackToATM()
{
cout << "\nPress any key to go back to ATM Menu...";
system("pause>nul");
ATMscreen();
}
void BackToQuickWithdrawScreen()
{
cout << "\nPress any key to Continue...";
system("pause>nul");
QuickWithdrawScreen();
}
void QuickWith(int With)
{
char y;
vector <stAccount> vAcc;
LoadDataFromFile(ClientsFileName, vAcc);
if (With > CurrentAcc.accountBalance)
{
cout << "Amount Exceeds the balance, you can withdraw up to : " << CurrentAcc.accountBalance << endl;
BackToQuickWithdrawScreen();
}
cout << "\n\nAre You Sure You Want To Do This Transaction ? [y/n] : ";
cin >> y;
if (tolower(y) == 'y')
{
for (stAccount& A : vAcc)
{
if (A.accountNumber == CurrentAcc.accountNumber)
{
A.accountBalance -= With;
CurrentAcc.accountBalance = A.accountBalance;
}
}
SaveVectorToFile(ClientsFileName, vAcc);
cout << "\n\nDone Successfully New Balnce Is : " << CurrentAcc.accountBalance << "\n\n";
}
}
void ShowQuickWithdrawScreen()
{
system("cls");
cout << "=====================================\n";
cout << " Quick Withdraw \n";
cout << "=====================================\n";
cout << "[1] 20\t\t";
cout << "[2] 50\n";
cout << "[3] 100\t\t";
cout << "[4] 200\n";
cout << "[5] 400\t\t";
cout << "[6] 600\n";
cout << "[7] 800\t\t";
cout << "[8] 1000\n";
cout << "[9] exit\n";
cout << "=====================================\n";
cout << "Your Balnce Is " << CurrentAcc.accountBalance << endl;
}
void QuickWithdrawScreen()
{
ShowQuickWithdrawScreen();
short choice = GetChoice(1, 9);
switch (choice)
{
case 1: QuickWith(20); break;
case 2: QuickWith(50); break;
case 3: QuickWith(100); break;
case 4: QuickWith(200); break;
case 5: QuickWith(400); break;
case 6: QuickWith(600); break;
case 7: QuickWith(800); break;
case 8: QuickWith(1000); break;
case 9: GoBackToATM(); break;
default: cout << "Invalid choice.\n"; BackToQuickWithdrawScreen(); break;
}
GoBackToATM();
}
void GoBackToNormalWithdraw()
{
cout << "\nPress any key to Continue...";
system("pause>nul");
NormalWithdrawScreen();
}
void NormalWith()
{
int With;
char y;
stAccount Acc;
vector <stAccount> vAcc;
LoadDataFromFile(ClientsFileName, vAcc);
do
{
cout << "Enter an amount multiple of 5's : ";
cin >> With;
} while (With % 5 != 0);
while (With > CurrentAcc.accountBalance)
{
cout << "Amount Exceeds the balance, you can withdraw up to : " << CurrentAcc.accountBalance << endl;
GoBackToNormalWithdraw();
}
cout << "\n\nAre You Sure You Want To Do This Transaction ? [y/n] : ";
cin >> y;
if (tolower(y) == 'y')
{
for (stAccount& A : vAcc)
{
if (A.accountNumber == CurrentAcc.accountNumber)
{
A.accountBalance -= With;
CurrentAcc.accountBalance = A.accountBalance;
}
}
SaveVectorToFile(ClientsFileName, vAcc);
cout << "\n\nDone Successfully New Balnce Is : " << CurrentAcc.accountBalance << "\n";
}
}
void NormalWithdrawScreen()
{
system("cls");
cout << "------------------------------------------\n"
<< "\t\tNormal Withdraw Screen\n"
<< "------------------------------------------\n";
NormalWith();
GoBackToATM();
}
void Deposit()
{
float Dep;
char y;
stAccount Acc;
vector <stAccount> vAcc;
LoadDataFromFile(ClientsFileName, vAcc);
cout << "\nPlease Enter Deposit Amount ? ";
cin >> Dep;
cout << "\n\nAre You Sure You Want To Do This Transaction ? [y/n] : ";
cin >> y;
if (tolower(y) == 'y')
{
for (stAccount& A : vAcc)
{
if (A.accountNumber == CurrentAcc.accountNumber)
{
A.accountBalance += Dep;
CurrentAcc.accountBalance = A.accountBalance;
}
}
SaveVectorToFile(ClientsFileName, vAcc);
cout << "\nDone Successfully New Balnce Is : " << CurrentAcc.accountBalance << "\n";
}
}
void DepositScreen()
{
system("cls");
cout << "------------------------------------------\n"
<< "\t\tDeposit Screen\n"
<< "------------------------------------------\n";
Deposit();
GoBackToATM();
}
void BlanceCheckScreen()
{
system("cls");
cout << "=====================================\n";
cout << " Quick Withdraw \n";
cout << "=====================================\n";
cout << "Your Balance Is : " << CurrentAcc.accountBalance;
GoBackToATM();
}
void ShowATMscreen() {
system("cls");
cout << "=====================================\n";
cout << " ATM Main Menu Screen \n";
cout << "=====================================\n";
cout << "[1] Quick Withdraw.\n";
cout << "[2] Normal Withdraw.\n";
cout << "[3] Deposit.\n";
cout << "[4] Check Balance.\n";
cout << "[5] Logout.\n";
cout << "=====================================\n";
cout << "Choose what do you want to do? [1 to 5]? ";
}
void ATMscreen()
{
ShowATMscreen();
short Select = ReadNum("");
switch (Select)
{
case enAtm::eQuickWithdraw: QuickWithdrawScreen();
break;
case enAtm::eNormalWithdraw: NormalWithdrawScreen();
break;
case enAtm::eDeposit: DepositScreen();
break;
case enAtm::eCheckBalnce: BlanceCheckScreen();
break;
case enAtm::eLogout: Login();
break;
}
}
void ShowLoginScreen()
{
system("cls");
cout << "=====================================\n";
cout << " Login Screen \n";
cout << "=====================================\n";
}
void Login()
{
ShowLoginScreen();
vector <stAccount> vAcc;
stAccount Acc;
LoadDataFromFile(ClientsFileName, vAcc);
string AccountNumber;
string PinCode;
do
{
AccountNumber = ReadString("Enter Account Number : ");
PinCode = ReadString("Enter Pin Code : ");
if (!CheckIfClientExist2(vAcc, AccountNumber, PinCode, CurrentAcc))
{
ShowLoginScreen();
cout << "Invalid Username/Password!\n\n";
}
} while (!CheckIfClientExist2(vAcc, AccountNumber, PinCode, CurrentAcc));
ATMscreen();
}
int main()
{
Login();
}