-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.cpp
525 lines (523 loc) · 10.8 KB
/
Source.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <windows.h>
#include <cstdlib>
#include <ctime>
#include <conio.h>
using namespace std;
struct Account {
string Username;
long Accno;
string Pin;
int Balance;
Account *next;
};
int noOfAccounts = 0;
Account *temp = NULL;
struct list {
Account *head = NULL;
bool login(string u, string p)
{
if (u == "Faizan Zaheer" || u == "faizan zaheer" && p == "123456")
{
return true;
}
else
{
return false;
}
}
void newAccount()
{
system("cls");
system("Color 1A");
ofstream outFile("Accounts.txt", ios::app);
Account *acc = new Account;
cout << "Enter Username: ";
cin.ignore();
getline(cin, acc->Username);
cout << "Enter Pin Code: ";
getline(cin, acc->Pin);
cout << "Enter Balance Rs. (must be atleast 10000):";
cin >> acc->Balance;
acc->Accno = 10000 + rand() % 99999;
if (acc->Balance < 10000)
{
cout << "Insufficient Balance to Open Account!\n";
}
else
{
if (head == NULL)
{
head = acc;
acc->next = NULL;
noOfAccounts++;
}
else
{
temp = head;
while (temp->next != NULL)
{
temp = temp->next;
}
temp->next = acc;
acc->next = NULL;
noOfAccounts++;
}
if (outFile.is_open())
{
outFile << "\n"<< acc->Username<< " "<< acc->Pin<< " "<< acc->Accno<< " "<< acc->Balance<< endl;
Sleep(1500);
cout << "Account No.: "<< acc->Accno << endl;
Sleep(500);
cout << "Account has been created.\n";
}
else
{
cout << "Cannot open Balances File!\n";
}
}
outFile.close();
}
Account* Search(string name, string p, long no)
{
bool isFound = false;
temp = head;
while(temp->next != NULL)
{
if (temp->Username == name)
{
if (temp->Pin == p)
{
if (temp->Accno == no)
{
isFound = true;
break;
}
}
}
else
{
temp = temp->next;
}
}
if (isFound == true)
{
return temp;
}
else
{
return NULL;
}
}
void Display()
{
system("cls");
system("Color 2F");
string data;
Account *acc = new Account;
cout << "Enter Username: ";
cin.ignore();
getline(cin, acc->Username);
cout << "Enter Pin Code: ";
cin.ignore();
getline(cin, acc->Pin);
cout << "Enter Account No.: ";
cin >> acc->Accno;
stringstream stream;
stream << acc->Accno;
string c = stream.str();
ifstream inFile("Accounts.txt", ios::in);
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (data.find(acc->Username, 0) != string::npos)
{
if (data.find(acc->Pin, 0) != string::npos)
{
if (data.find(c, 0) != string::npos)
{
cout << "Processing...";
Sleep(2000);
cout << "\nUsername\t Pin\tAccount No.\tBalance\n";
cout << data << "\n\n";
break;
}
else
{
cout << "Account NOT FOUND!\n";
break;
}
}
}
}
}
else
{
cout << "Cannot open Balance File!\n";
}
inFile.close();
}
void displayAll()
{
ifstream inFile("Accounts.txt", ios::in);
system("cls");
system("Color 4D");
cout << "READGING FILE...\n";
Sleep(2500);
string data;
cout << "Username\tPin\tAccount No.\tBalance\n";
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
cout << data << endl;
}
}
else
{
cout << "Cannot open Balance File!\n";
}
cout << endl;
inFile.close();
}
char* currentTime()
{
time_t now = time(0);
time_t r = time(0);
char* dt = ctime(&now);
char* rt = ctime(&r);
tm *gmtm = gmtime(&now);
return dt;
}
void Withdraw()
{
system("cls");
system("Color 5E");
ifstream inFile("Accounts.txt", ios::in);
ofstream tempFile("temp.txt", ios::out);
string data;
Account *acc = new Account;
int c;
cout << "Enter Username: ";
cin.ignore();
getline(cin, acc->Username);
cout << "Enter Pin Code: ";
getline(cin, acc->Pin);
cout << "Enter Account No.: ";
cin >> acc->Accno;
stringstream stream;
stream << acc->Accno;
string d = stream.str();
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (data.find(acc->Username, 0) != string::npos)
{
if (data.find(acc->Pin, 0) != string::npos)
{
if (data.find(d, 0) != string::npos)
{
d = data.substr(acc->Username.size() + 26, data.size());
Sleep(1500);
cout << "Available Balance = Rs. " << d << endl;
cout << "Enter Amount to Withdraw (Limit = Rs. 25000): ";
cin >> c;
acc->Balance = atoi(d.c_str());
cout << "Processing...\n";
Sleep(2000);
if (c > acc->Balance)
{
cout << "Insufficient Balance!\n";
break;
}
else if (acc->Balance > 25000)
{
cout << "Over The Limit!\n";
}
else
{
acc->Balance = acc->Balance - c;
cout << "New Balance = Rs. " << acc->Balance << endl;
cout << "Transaction Done at : " << currentTime() << endl;
break;
}
}
}
else
{
cout << "Account NOT FOUND!\n";
break;
}
}
}
}
if (tempFile.is_open())
{
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (data.find(acc->Username, 0) == string::npos)
{
tempFile << data << endl;
}
tempFile << acc->Username << " " << acc->Pin << " " << acc->Accno << " " << acc->Balance << endl;
}
}
}
inFile.close();
tempFile.close();
remove("Accounts.txt");
rename("temp.txt", "Accounts.txt");
}
void Deposit()
{
system("cls");
system("Color 6F");
ifstream inFile("Accounts.txt", ios::in);
ofstream tempFile("temp.txt", ios::out);
string data;
Account *acc = new Account;
int c;
cout << "Enter Username: ";
cin.ignore();
getline(cin, acc->Username);
cout << "Enter Pin Code: ";
getline(cin, acc->Pin);
cout << "Enter Account No.: ";
cin >> acc->Accno;
stringstream stream;
stream << acc->Accno;
string d = stream.str();
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (data.find(acc->Username, 0) != string::npos)
{
if (data.find(acc->Pin, 0) != string::npos)
{
if (data.find(d, 0) != string::npos)
{
d = data.substr(acc->Username.size() + 26, data.size());
Sleep(1500);
cout << "Available Balance = Rs. " << d << endl;
cout << "Enter Amount to Deposit: ";
cin >> c;
acc->Balance = atoi(d.c_str());
cout << "Processing...\n";
Sleep(2000);
acc->Balance = acc->Balance + c;
cout << "New Balance = Rs. " << acc->Balance << endl;
cout << "Transaction Done at : " << currentTime() << endl;
break;
}
}
else
{
cout << "Account NOT FOUND!\n";
break;
}
}
}
}
if (tempFile.is_open())
{
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (data.find(acc->Username, 0) == string::npos)
{
tempFile << data << endl;
}
tempFile << acc->Username << " " << acc->Pin << " " << acc->Accno << " " << acc->Balance << endl;
}
}
}
inFile.close();
tempFile.close();
remove("Accounts.txt");
rename("temp.txt", "Accounts.txt");
}
void Remove()
{
system("cls");
system("Color 1A");
ifstream inFile("Accounts.txt", ios::in);
ofstream tempFile("temp.txt", ios::out);
string data;
Account *acc = new Account;
int c;
cout << "Enter Details of Account to Delete:\n";
cout << "Enter Username: ";
cin.ignore();
getline(cin, acc->Username);
cout << "Enter Pin Code: ";
getline(cin, acc->Pin);
cout << "Enter Account No.: ";
cin >> acc->Accno;
stringstream stream;
stream << acc->Accno;
string d = stream.str();
if (inFile.is_open())
{
while (!inFile.eof())
{
getline(inFile, data);
if (tempFile.is_open())
{
if (data.find(acc->Username, 0) == string::npos)
{
tempFile << data << endl;
}
}
else
{
cout << "Account NOT FOUND!\n";
break;
}
}
}
else
{
cout << "Cannot open Accounts File!\n";
}
inFile.close();
tempFile.close();
remove("Accounts.txt");
rename("temp.txt", "Accounts.txt");
}
};
void menu()
{
system("Color 1A");
cout << "\n\t\t******************* Main Menu ABCD ATM *****************************\n";
cout << "\t\t*\t\t1. CREATE NEW ACCOUNT *\n\n";
cout << "\t\t*\t\t2. DISPLAY DETAILS OF AN ACCOUNT *\n\n";
cout << "\t\t*\t\t3. DISPLAY ALL ACCOUNTS *\n\n";
cout << "\t\t*\t\t4. WITHDRAW CASH FROM AN ACCOUNT *\n\n";
cout << "\t\t*\t\t5. DEPOSIT CASH INTO AN ACCOUNT *\n\n";
cout << "\t\t*\t\t6. REMOVE AN ACCOUNT *\n\n";
cout << "\t\t*\t\t7. EXIT SYSTEM *\n";
cout << "\t\t********************************************************************\n";
}
int main()
{
int ch = 0;
list l;
cout << "---------------- WELCOME TO ABCD BANK -----------------\n";
cout << "\t\tAdmin LOGIN\n";
string a, b;
cout << "\t\tEnter Username: ";
getline(cin, a);
cout << "\t\tEnter Password: ";
char c;
for (int i = 0; i<100; i++)
{
c = _getch();
if (c == '\r')
break;
cout << "*";
b = b + c;
}
cout << endl;
bool flag = l.login(a, b);
if (flag == true)
{
cout << "\t\tLOGIN SUCCESSFUL!\n";
cout << "-------------------------------------------------------\n";
Sleep(2500);
system("cls");
menu();
while (ch != 7)
{
cout << "\t\tEnter choice: ";
cin >> ch;
if (ch == 1)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.newAccount();
system("pause");
Sleep(1500);
system("cls");
menu();
}
else if (ch == 2)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.Display();
system("pause");
Sleep(1500);
system("cls");
menu();
}
else if (ch == 3)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.displayAll();
system("pause");
Sleep(1500);
system("cls");
menu();
}
else if (ch == 4)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.Withdraw();
system("pause");
Sleep(1500);
system("cls");
menu();
}
else if (ch == 5)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.Deposit();
system("pause");
Sleep(1500);
system("cls");
menu();
}
else if (ch == 6)
{
cout << "\t\tProcessing...";
Sleep(1500);
l.Remove();
system("pause");
Sleep(1500);
system("cls");
menu();
}
}
if (ch == 7)
{
cout << "\t\tExiting System.....\n\t\t";
Sleep(1500);
}
}
else
{
cout << "\t\tWrong Username or Password!\n";
cout << "-------------------------------------------------------\n\t\t";
}
system("pause");
return 0;
}