-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
1292 lines (1132 loc) · 42.7 KB
/
main.c
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
This program is about a cricket player management system. All in one player information holding system. Where user cam search player view all information and many more or an admin can enter a new player information and update information and delete information and may more.
This project was done by:_
Francis Rudra D Cruze
francisrudra@gmail.com
*/
#include<stdio.h>
#include<windows.h>
#include<conio.h>
#include<ctype.h>
#include<string.h>
#include<stdlib.h>
// function declaration
void welcome(); // welcome screen function
void title(); // title bar function
void titleRegistration(); // registration title bar function
void titleLogin(); // login title bar function
void masterLogin(); // master login ~ combine the viewer & admin function
void login(); // whole sign in & sign up function
void signUp(); // just sign up function
void signIn(); // just sign in function
void menuAdmin(); // admin menu function
void menuViewer(); // viewer menu function
void cricketerInformation(); // batsman information function
void saveInfo(); // Save into the file function
void viewAllInfo(); // View all information function
void searchInfo(); // search by name function
void editInfo(); // edit information function
void searchCountry(); // search by country function
void searchRole(); // search using the role
void removeInfo(); // remove data for a player function
void exitProgram(); // exit screen
// Global declaration
int okay, uCheck;
FILE *cricketerFile, *tempFile;
struct loginEntry
{
char firstName[26], lastName[26], userName[15], password[15];
};
struct payerInformation
{
char name[24],age[13],country[20],role[15],battingStyle[20],matchType[5];
int iccRank, matchPlayed, innings, notOut,totalRun, heigestScore, balls, total4, total6, total50, total100, runGiven, wicketTaken, ballBowled;
double over;
};
struct payerInformation crInfo;
int main(){
int userChoice = 0;
welcome(); // Welcome screen call
loginRepeat:
system("cls");
masterLogin(); // master login user and admin function combine
return 0;
}
/* ============ Welcome Screen ============ */
void welcome(){
printf("\n\n\n\n\n\n\n\t\t\t\t::::::::::::::::::::==================::::::::::::::::::::");
printf("\n\t\t\t\t::\t\t\t WELCOME TO\t\t\t::");
printf("\n\t\t\t\t::\t\t Wiki-Cricketer \t\t\t::");
printf("\n\t\t\t\t::::::::::::::::::::==================::::::::::::::::::::");
printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Make it Full Screen Please. Press any key to continue...");
getch(); // use to hold the screen
printf("\a");
system("cls"); //use to clear the screen
}
/* ============ Title Bar ============ */
void title(){
printf("\n\n\t\t::::::::::::::::::::::::::::======================::::::::::::::::::::::::::::::::");
printf("\n\t\t::\t\t\t\t Wiki-Cricketer \t\t\t\t::");
printf("\n\t\t::::::::::::::::::::::::::::======================::::::::::::::::::::::::::::::::");
}
/* ============ Registration Title Bar ============ */
void titleRegistration(){
printf("\n\n\t\t:::::::::::::::::::::::::::::======================:::::::::::::::::::::::");
printf("\n\t\t::\t\t\t Wiki-Cricketer ~ Registration \t\t\t::");
printf("\n\t\t:::::::::::::::::::::::::::::======================:::::::::::::::::::::::");
}
/* ============ Login Title Bar ============ */
void titleLogin(){
// Title bar message
printf("\n\n\t\t:::::::::::::::::::::::::::::======================:::::::::::::::::::::::");
printf("\n\t\t::\t\t\t Wiki-Cricketer ~ Login \t\t\t::");
printf("\n\t\t:::::::::::::::::::::::::::::======================:::::::::::::::::::::::");
}
/* ============ Changing Console Position ============ */
void positionXY(short x, short y){
COORD pos = {x,y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
/* ============ Sign Up ============ */
void signUp (){
// file declaration
FILE *signUpIn;
signUpIn = fopen("signUpIn.txt", "wb");
struct loginEntry registerr;
//printf("\n\n\n\n\t\t\t::::\tRegister into the system");
// first name enter
printf("\n\n\n\n\t\t\t::::\tEnter the first name : ");
fflush(stdin);
gets(registerr.firstName);
strupr(registerr.firstName);
// last name enter
printf("\n\t\t\t::::\tEnter the last name : ");
fflush(stdin);
gets(registerr.lastName);
strupr(registerr.lastName);
// username enter
printf("\n\t\t\t::::\tEnter the username : ");
fflush(stdin);
gets(®isterr.userName);
// password enter
printf("\n\t\t\t::::\tEnter the password : ");
fflush(stdin);
gets(registerr.password);
// file write
fwrite(®isterr, sizeof(struct loginEntry), 1, signUpIn);
// file close
fclose(signUpIn);
printf("\n\n\n\t\t::::::::::::\tYour registration is successful\t\t::::::::::::\a\n\n\n\n\t\tNow login Can login\n\t\tPress any key to login...");
getch();
system("CLS");
titleLogin();
signIn();
}
/* ============ Sign In ============ */
void signIn(){
int check = 0;
char userName[15], password[15];
FILE* signUpIn;
signUpIn = fopen("signUpIn.txt", "rb");
struct loginEntry login;
do{
printf("\n\n\n\t\t\t\tUsername : ");
fflush(stdin);
scanf("%s", &userName);
printf("\n\t\t\t\tPassword : ");
fflush(stdin);
scanf("%s", &password);
// read form file
fread(&login, sizeof(struct loginEntry), 1, signUpIn);
// compare user input with file
if(strcmp(userName, login.userName) == 0 && strcmp(password, login.password) == 0)
{
printf("\n\n\n\t\t::::::::::::\tYour login is successful\t::::::::::::\a\n\n\n\n\t\tPress any key to continue...\n\n\n");
getch(); // to hold the screen
system("cls");
menuAdmin();
break;
}else
{
printf("\n\n\n\n\t\t\t::::::::::::\tThe username and password is incorrect\t::::::::::::");
int checkYesNo = 0;
printf("\n\n\t\t\tWhat you want to do ?\n\n\t\t\t1. Enter username & passowrd again ?\n\t\t\t2. Exit\n\n\t\t\tEnter your choice : ");
fflush(stdin);
scanf("%d", &checkYesNo);
if(checkYesNo == 1)
{
check++;
}else {
exitProgram(); // exit function call
}
}
}while(check<=2);
if(check>2)
{
printf("\n\n\n\t\t\t::::::::::::\tYou have cross the login limit. You can't login.\t::::::::::::");
getch();
system("cls");
}
fclose(signUpIn);
}
/* ============ Whole Login ============ */
void login(){
int userChoice;
int checkYesNo = 0;
title(); // title bar call
printf("\n\n\n\n\t\t\tAdmin login & Registration portal\n\n\t\t\t::: 1 to login into the system\n\t\t\t::: 2 to registration into the system");
printf("\n\n\n\t\t\tEnter your choice here : ");
fflush(stdin);
scanf("%d", &userChoice);
if(userChoice == 1)
{
system("cls");
titleLogin(); // login title bar call
signIn();
}else if(userChoice == 2)
{
loginRepeat:
system("cls");
titleRegistration(); // registration title bar call
signUp();
}else
{
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid\t::::::::::::");
printf("\n\n\t\t\tWhat you want to do ?\n\t\t\t1. Go to registration & password again ?\n\t\t\t2. Exit\n\n\t\t\tEnter your choice here : ");
fflush(stdin);
scanf("%d", &checkYesNo);
if(checkYesNo == 1)
{
goto loginRepeat;
}else {
exitProgram(); // exit function call
}
};
}
//######################################### Master Login #########################################
void masterLogin(){
title(); // Title function
int userChoice = 0;
loginRepeat:
printf("\n\n\n\t\t\tYou can login as a\n\n\t\t\t::: Enter 1 to Login in a Viewer\n\t\t\t::: Enter 2 to login a Admin\n\n\t\t\tEnter your choice here : ");
fflush(stdin);
scanf("%d", &userChoice);
if(userChoice == 1)
{
menuViewer(); // user panel call
printf("\a");
}else if(userChoice == 2)
{
system("cls");
printf("\a");
login(); // login system call
}
else
{
system("cls");
title(); // call title function
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid\t::::::::::::");
printf("\n\n\t\t\tWhat you want to do ?\n\t\t\t1. Login in again\n\t\t\t2. Exit\n\n\t\t\tEnter your choice here : ");
userChoice = 0;
fflush(stdin);
scanf("%d", &userChoice);
if(userChoice == 1)
{
goto loginRepeat;
}else {
exitProgram(); // exit function call
}
}
}
/* ============ Admin menu ============ */
void menuAdmin(){
adminMenu:
system("cls");
int choice = 0;
title(); // title call
printf("\n\n\n\t\t\t::: 1. Enter New Cricketer Information");
printf("\n\t\t\t::: 2. Update Cricketer Information");
printf("\n\t\t\t::: 3. Search Cricketer information");
printf("\n\t\t\t::: 4. View all Players information");
printf("\n\t\t\t::: 5. Delete Players information");
printf("\n\t\t\t::: 6. Back to the main menu");
printf("\n\t\t\t::: 7. Go to the user panel");
printf("\n\t\t\t::: 8. Remove Whole Database");
printf("\n\t\t\t::: 9. Exit");
printf("\n\n\n\t\t\t::: Enter what you want to do! : ");
fflush(stdin);
scanf("%d", &choice);
system("cls");
switch(choice)
{
case 1:
printf("Enter New Cricketer Information");
cricketerInformation(); // add player information call
break;
case 2:
editInfo(); // update cricketer information
break;
case 3:
searchInfo(); // search information by name:
break;
case 4:
title(); // title bar call
printf("\n\n\n\t\t\t================ View All Cricketer Information ================\n\n");
printf("View all Players information");
viewAllInfo(); // view function
goto adminMenu;
break;
case 5:
removeInfo(); // REMOVE PLAYER INFORMATION
break;
case 6:
title();
masterLogin(); // master login panel function
break;
case 7:
menuViewer(); // user panel function
break;
case 8:
remove("playerInformation.txt");
printf("\n\n\n\t\t\t================ Whole Database Remove Successful ================\n\n");
getch();
menuAdmin();
case 9:
exitProgram(); // exit function call
break;
getch();
default:
choice = 0;
system("cls");
title(); // title bar call
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid\t::::::::::::");
printf("\n\n\t\t\tWhat you want to do ?\n\t\t\t1. Input again ?\n\t\t\t2. Exit\n\n\t\t\tEnter your choice here : ");
scanf("%d", &choice);
if(choice == 1)
{
goto adminMenu;
}else
{
exitProgram(); // exit function call
}
}
}
/* ============ Viewer Menu ============ */
void menuViewer(){
int choice = 0;
system("cls");
title(); // title call
printf("\n\n\n\t\t\t::: 1. View all Player Information");
printf("\n\t\t\t::: 2. Search player by name");
printf("\n\t\t\t::: 3. View the various statistics of a cricketer");
printf("\n\t\t\t::: 4. View country wise player statistics");
printf("\n\t\t\t::: 5. Go to admin panel");
printf("\n\t\t\t::: 6. Back to the main menu");
printf("\n\t\t\t::: 7. Exit");
printf("\n\n\n\t\t\t::: Enter what you want to do! : ");
fflush(stdin);
scanf("%d", &choice);
system("cls");
switch(choice)
{
case 1:
viewAllInfo(); // view player information call
menuViewer();
break;
case 2:
searchInfo(); // search information by name function
break;
case 3:
searchRole(); // search information by role
break;
case 4:
searchCountry(); // country search
break;
case 5:
login(); // admin login function call
break;
case 6:
masterLogin(); // login function call
break;
case 7:
exitProgram(); // exit function call
break;
getch();
default:
choice = 0;
system("cls");
title(); // title bar call
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid\t::::::::::::");
printf("\n\n\t\t\tWhat you want to do ?\n\t\t\t1. Input again ?\n\t\t\t2. Exit\n\n\t\t\tEnter your choice here : ");
scanf("%d", &choice);
if(choice == 1)
{
menuViewer(); // call the same function ~ means userpannel function
}else
{
exitProgram(); // exit function call
}
}
}
/* ============ Input Information ============ */
void cricketerInformation(){
system("cls");
title(); // title bar call
printf("\n\n\n\t\t\t================ Add Batsman/Bowler Information ================\n\n");
// players name input form user
printf("\n\n\t\tPlayer Name\t\t: ");
fflush(stdin);
gets(crInfo.name);
strupr(crInfo.name);
// players age input form user
printf("\t\tPlayer Age (DD-MM-YEAR)\t: ");
fflush(stdin);
gets(crInfo.age);
// player country input form user
printf("\t\tPlayer Country\t\t: ");
fflush(stdin);
gets(crInfo.country);
strupr(crInfo.country);
// ICC ranking
printf("\t\tICC Ranking\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.iccRank);
// match type
printf("\t\tMatch Type\t\t: ");
fflush(stdin);
gets(crInfo.matchType);
// match played
printf("\t\tMatch Played\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.matchPlayed);
// innings played
printf("\t\tInnings Played\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.innings);
// player role
printf("\t\tPlayer Role\t\t: Batsman//Bowler//AllRounder : ");
fflush(stdin);
gets(crInfo.role);
strupr(crInfo.role);
printf("\n\t\tIf you player is a batsman then give '0' of\nall bowler information, however if your player is a \nall rounder then input both otherwise do opposite.\n\n");
// batting Style role
printf("\t\tBatting Style\t\t: ");
fflush(stdin);
gets(crInfo.battingStyle);
// total not-out
printf("\t\tTotal Not Out\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.notOut);
// total run
printf("\t\tTotal Run\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.totalRun);
// highest score
printf("\t\tHighest Score\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.heigestScore);
// Over score
printf("\n\t\tOver / balls faced ~ you can enter via 2 way\t: ");
printf("\n\t\t\t1. Over Faced\n\t\t\t2. Total Balled Faced\n\t\tEnter your choice here : ");
overRepeat:
uCheck = 0;
fflush(stdin);
scanf("%d", &uCheck);
if(uCheck == 1)
{
printf("\t\tOver Played\t\t: ");
double fractional, integer; // fractional number (30.5) it count '30' ~ integer count '.5' value
fflush(stdin);
scanf("%lf", &crInfo.over);
// over counting system
fractional = modf(crInfo.over, &integer);
int firstHalf = (integer * 6);
int pointValue = (fractional * 10);
// store over a balls
crInfo.balls = (firstHalf + pointValue);
}else if(uCheck == 2)
{
printf("\t\tBalls Played\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.balls);
}else
{
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid\t::::::::::::");
printf("\n\n\t\t\tWhat you want to do ?\n\t\t\t1. Input again ?\n\t\t\t2. Exit\n\t\tEnter your choice here : ");
fflush(stdin);
scanf("%d", &uCheck);
if(uCheck == 1)
{
goto overRepeat;
}else
{
exitProgram(); // exit function call
}
}
// total 4s form user
printf("\t\tTotal 4s\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.total4);
// total 6s form user
printf("\t\tTotal 6s\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.total6);
// total 50s form user
printf("\t\tTotal 50\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.total50);
// total 100s form user
printf("\t\tTotal 100\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.total100);
printf("\n===== Bowlers Info =====\n");
// total run given
printf("\t\tTotal run given\t\t: ");
fflush(stdin);
scanf("%d", &crInfo.runGiven);
// total wicket taken
printf("\t\tTotal wicket taken\t: ");
fflush(stdin);
scanf("%d", &crInfo.wicketTaken);
// total ball bowled
printf("\t\tTotal ball bowled\t: ");
fflush(stdin);
scanf("%d", &crInfo.ballBowled);
saveInfo(crInfo, cricketerFile); // save in file
moreInforAdd:
printf("\n\n\t\tDo you want to add another player information [1 = yes/2 = no] : ");
fflush(stdin);
scanf("%d", &okay);
if(okay == 1)
{
cricketerInformation();
}else if(okay == 2)
{
printf("\n\n\t\tThank you :) :)...\n\t\tNow back to the main menu : ");
getch();
menuAdmin();
}else
{
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid - Input again\t::::::::::::");
goto moreInforAdd;
}
}
/* ============ Save into File ============ */
void saveInfo(struct payerInformation crInfo, FILE *cricketerFile){
cricketerFile = fopen("playerInformation.txt","a");
fwrite(&crInfo,sizeof(struct payerInformation),1,cricketerFile);
if(fwrite !=0){
printf("\a\n\n\n\t\t\t================ Information Successfully Saved ================\n\n");
}else{
printf("\a\n\n\n\t\t\t================ Something went wrong ================\n\n");
}
fclose(cricketerFile);
}
/* ============ View all information ============ */
void viewAllInfo() {
int rowCount = 1;
system("cls");
title(); // title bar call
printf("\n\n\n\t\t\t================ View All Player Information ================\n\n");
cricketerFile = fopen("playerInformation.txt", "r"); // open the file
while(fread(&crInfo,sizeof(struct payerInformation),1,cricketerFile))
{
// actual value shown
printf("=================================================\n");
printf("= :::::: \tBatting Information\t :::::: =\n");
printf("=\t\t\t\t\t\t=\n");
printf("= Name\t\t\t: ");
printf("%s\t\t=\n", crInfo.name);
printf("= Country\t\t: ");
printf("%s\t\t=\n", crInfo.country);
printf("= Role\t\t\t: ");
printf("%s\t\t=\n", crInfo.role);
printf("= Match Played\t\t: ");
printf("%d\t\t\t=\n", crInfo.matchPlayed);
printf("= Innings\t\t: ");
printf("%d\t\t\t=\n", crInfo.innings);
printf("= Total Runs\t\t: ");
printf("%d\t\t\t=\n", crInfo.totalRun);
printf("= Batting Average\t: ");
if(crInfo.totalRun==0 && crInfo.innings==0 && crInfo.notOut==0)
printf("0.00\t\t=\n");
else
{
float batAvg = crInfo.totalRun / (crInfo.innings - crInfo.notOut);
printf("%.2f%\t\t\t=\n", batAvg);
}
printf("= Strike Rate\t\t: ");
float batStrike = (crInfo.totalRun * 100)/crInfo.balls;
printf("%.2f\t\t=\n", batStrike);
printf("\n= :::::: \tBowling Information\t :::::: =\n\n");
printf("= ICC Ranking\t\t: ");
printf("%d\t\t\t=\n", crInfo.iccRank);
printf("= Run Given\t\t: ");
printf("%d\t\t\t=\n", crInfo.runGiven);
printf("= Wicket Taken\t\t: ");
printf("%d\t\t\t=\n", crInfo.wicketTaken);
printf("= Ball Bowled\t\t: ");
printf("%d\t\t\t=\n", crInfo.ballBowled);
printf("= Bowling Avg\t\t: ");
if(crInfo.runGiven==0 && crInfo.wicketTaken==0)
printf("0.00\t\t\t=\n");
else
{
float bowlingAvg = crInfo.runGiven / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingAvg);
}
printf("= Bowling Strike Rate\t: ");
if(crInfo.ballBowled==0 && crInfo.wicketTaken==0)
printf("0.00\t\t=\n");
else
{
float bowlingStrike = crInfo.ballBowled / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingStrike);
}
printf("= Economy Rate\t\t: ");
if(crInfo.runGiven==0 && crInfo.ballBowled==0)
printf("0.00\t\t=\n");
else
{
float bowlingEconomy = (crInfo.runGiven * 6) / crInfo.ballBowled;
printf("%.2f\t\t\t=\n", bowlingEconomy);
}
printf("=================================================\n\n\n");
}
fclose(cricketerFile); // close the file
getch();
}
/* ============ Search information by name ============ */
void searchInfo(){
char searchName[24];
int rowCount = 1;
system("cls");
title();
cricketerFile = fopen("playerInformation.txt", "r"); // open the file
printf("\n\n\t\t======================\tSearch Player By name\t======================");
printf("\n\n\t\t\tEnter the player name : ");
fflush(stdin);
gets(searchName);
int found = 0;
while(fread(&crInfo,sizeof(struct payerInformation),1,cricketerFile))
{
//printf("The name is: %s\n", &crInfo.name);
if(strcmp(strupr(searchName), crInfo.name) == 0)
{
found = 1;
printf("\n\n=================================================\n");
printf("= :::::: \tBatting Information\t :::::: =\n");
printf("=\t\t\t\t\t\t=\n");
printf("= Name\t\t\t: ");
printf("%s\t\t=\n", crInfo.name);
printf("= Country\t\t: ");
printf("%s\t\t=\n", crInfo.country);
printf("= Role\t\t\t: ");
printf("%s\t\t=\n", crInfo.role);
printf("= Match Played\t\t: ");
printf("%d\t\t\t=\n", crInfo.matchPlayed);
printf("= Innings\t\t: ");
printf("%d\t\t\t=\n", crInfo.innings);
printf("= Total Runs\t\t: ");
printf("%d\t\t\t=\n", crInfo.totalRun);
printf("= Batting Average\t: ");
if(crInfo.totalRun==0 && crInfo.innings==0 && crInfo.notOut==0)
printf("0.00\t\t=\n");
else
{
float batAvg = crInfo.totalRun / (crInfo.innings - crInfo.notOut);
printf("%.2f%\t\t\t=\n", batAvg);
}
printf("= Strike Rate\t\t: ");
float batStrike = (crInfo.totalRun * 100)/crInfo.balls;
printf("%.2f\t\t=\n", batStrike);
printf("\n= :::::: \tBowling Information\t :::::: =\n\n");
printf("= ICC Ranking\t\t: ");
printf("%d\t\t\t=\n", crInfo.iccRank);
printf("= Run Given\t\t: ");
printf("%d\t\t\t=\n", crInfo.runGiven);
printf("= Wicket Taken\t\t: ");
printf("%d\t\t\t=\n", crInfo.wicketTaken);
printf("= Ball Bowled\t\t: ");
printf("%d\t\t\t=\n", crInfo.ballBowled);
printf("= Bowling Avg\t\t: ");
if(crInfo.runGiven==0 && crInfo.wicketTaken==0)
printf("0.00\t\t\t=\n");
else
{
float bowlingAvg = crInfo.runGiven / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingAvg);
}
printf("= Bowling Strike Rate\t: ");
if(crInfo.ballBowled==0 && crInfo.wicketTaken==0)
printf("0.00\t\t=\n");
else
{
float bowlingStrike = crInfo.ballBowled / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingStrike);
}
printf("= Economy Rate\t\t: ");
if(crInfo.runGiven==0 && crInfo.ballBowled==0)
printf("0.00\t\t=\n");
else
{
float bowlingEconomy = (crInfo.runGiven * 6) / crInfo.ballBowled;
printf("%.2f\t\t\t=\n", bowlingEconomy);
}
printf("=================================================\n\n\n");
}
}
if(found == 0)
{
printf("\n\n\n\n\t\t\t::::::::::::\tFile Not Found\t::::::::::::");
}
fclose(cricketerFile); // close the file
searchPlayer:
getch();
printf("\n\n\n\t\t\t================\tDO you want to search agina [ 1 = Yes & 2 = No] ? : ");
fflush(stdin);
scanf("%d", &okay);
if(okay == 1)
{
searchInfo();
}else if(okay == 2)
{
printf("\n\n\t\tThank you :) :)...\n\t\tNow back to the main menu : ");
getch();
menuViewer();
}else
{
printf("\n\n\n\n\t\t\t::::::::::::\tYour input is invalid - Input again\t::::::::::::");
goto searchPlayer;
}
}
/* ============ Search information by Country ============ */
void searchCountry() {
char searchCountryy[24];
int rowCount = 1;
system("cls");
title();
cricketerFile = fopen("playerInformation.txt", "r"); // open the file
printf("\n\n\t\t======================\tSearch Player By Country\t======================");
printf("\n\n\t\t\tEnter the player country : ");
fflush(stdin);
gets(searchCountryy);
while(fread(&crInfo,sizeof(struct payerInformation),1,cricketerFile))
{
if(strcmpi(strupr(searchCountryy), crInfo.country) == 0)
{
printf("\n\n=================================================\n");
printf("= :::::: \tBatting Information\t :::::: =\n");
printf("=\t\t\t\t\t\t=\n");
printf("= Name\t\t\t: ");
printf("%s\t\t=\n", crInfo.name);
printf("= Country\t\t: ");
printf("%s\t\t=\n", crInfo.country);
printf("= Role\t\t\t: ");
printf("%s\t\t=\n", crInfo.role);
printf("= Match Played\t\t: ");
printf("%d\t\t\t=\n", crInfo.matchPlayed);
printf("= Innings\t\t: ");
printf("%d\t\t\t=\n", crInfo.innings);
printf("= Total Runs\t\t: ");
printf("%d\t\t\t=\n", crInfo.totalRun);
printf("= Batting Average\t: ");
if(crInfo.totalRun==0 && crInfo.innings==0 && crInfo.notOut==0)
printf("0.00\t\t=\n");
else
{
float batAvg = crInfo.totalRun / (crInfo.innings - crInfo.notOut);
printf("%.2f%\t\t\t=\n", batAvg);
}
printf("= Strike Rate\t\t: ");
float batStrike = (crInfo.totalRun * 100)/crInfo.balls;
printf("%.2f\t\t=\n", batStrike);
printf("\n= :::::: \tBowling Information\t :::::: =\n\n");
printf("= ICC Ranking\t\t: ");
printf("%d\t\t\t=\n", crInfo.iccRank);
printf("= Run Given\t\t: ");
printf("%d\t\t\t=\n", crInfo.runGiven);
printf("= Wicket Taken\t\t: ");
printf("%d\t\t\t=\n", crInfo.wicketTaken);
printf("= Ball Bowled\t\t: ");
printf("%d\t\t\t=\n", crInfo.ballBowled);
printf("= Bowling Avg\t\t: ");
if(crInfo.runGiven==0 && crInfo.wicketTaken==0)
printf("0.00\t\t\t=\n");
else
{
float bowlingAvg = crInfo.runGiven / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingAvg);
}
printf("= Bowling Strike Rate\t: ");
if(crInfo.ballBowled==0 && crInfo.wicketTaken==0)
printf("0.00\t\t=\n");
else
{
float bowlingStrike = crInfo.ballBowled / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingStrike);
}
printf("= Economy Rate\t\t: ");
if(crInfo.runGiven==0 && crInfo.ballBowled==0)
printf("0.00\t\t=\n");
else
{
float bowlingEconomy = (crInfo.runGiven * 6) / crInfo.ballBowled;
printf("%.2f\t\t\t=\n", bowlingEconomy);
}
printf("=================================================\n\n\n");
}
}
fclose(cricketerFile);
repeatCountry:
uCheck = 0;
getch();
printf("\n\t\t\tWant to search another ? \n\t\t\t1. yes\n\t\t\t2. No\n\t\t\tEnter your choice here: ");
fflush(stdin);
scanf("%d", &uCheck);
if(uCheck == 1)
{
searchCountry(); // call country function for another search
}
else if(uCheck == 2)
{
menuViewer(); // call viewer menu to back
}
else
{
printf("\n\t\t\t===== Your input is invalid Retype again: ");
goto repeatCountry;
}
}
/* ============ Search information by Role ============ */
void searchRole() {
char searchRolee[24];
int rowCount = 1;
system("cls");
title();
cricketerFile = fopen("playerInformation.txt", "r"); // open the file
printf("\n\n\t\t======================\tSearch Player By Role ~ batting/bowling/allrounder\t======================");
printf("\n\n\t\t\tEnter the player role : ");
fflush(stdin);
gets(searchRolee);
while(fread(&crInfo,sizeof(struct payerInformation),1,cricketerFile))
{
if(strcmpi(strupr(searchRolee), crInfo.role) == 0)
{
printf("\n\n=================================================\n");
printf("= :::::: \tBatting Information\t :::::: =\n");
printf("=\t\t\t\t\t\t=\n");
printf("= Name\t\t\t: ");
printf("%s\t\t=\n", crInfo.name);
printf("= Country\t\t: ");
printf("%s\t\t=\n", crInfo.country);
printf("= Role\t\t\t: ");
printf("%s\t\t=\n", crInfo.role);
printf("= Match Played\t\t: ");
printf("%d\t\t\t=\n", crInfo.matchPlayed);
printf("= Innings\t\t: ");
printf("%d\t\t\t=\n", crInfo.innings);
printf("= Total Runs\t\t: ");
printf("%d\t\t\t=\n", crInfo.totalRun);
printf("= Batting Average\t: ");
if(crInfo.totalRun==0 && crInfo.innings==0 && crInfo.notOut==0)
printf("0.00\t\t=\n");
else
{
float batAvg = crInfo.totalRun / (crInfo.innings - crInfo.notOut);
printf("%.2f%\t\t\t=\n", batAvg);
}
printf("= Strike Rate\t\t: ");
float batStrike = (crInfo.totalRun * 100)/crInfo.balls;
printf("%.2f\t\t=\n", batStrike);
printf("\n= :::::: \tBowling Information\t :::::: =\n\n");
printf("= ICC Ranking\t\t: ");
printf("%d\t\t\t=\n", crInfo.iccRank);
printf("= Run Given\t\t: ");
printf("%d\t\t\t=\n", crInfo.runGiven);
printf("= Wicket Taken\t\t: ");
printf("%d\t\t\t=\n", crInfo.wicketTaken);
printf("= Ball Bowled\t\t: ");
printf("%d\t\t\t=\n", crInfo.ballBowled);
printf("= Bowling Avg\t\t: ");
if(crInfo.runGiven==0 && crInfo.wicketTaken==0)
printf("0.00\t\t\t=\n");
else
{
float bowlingAvg = crInfo.runGiven / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingAvg);
}
printf("= Bowling Strike Rate\t: ");
if(crInfo.ballBowled==0 && crInfo.wicketTaken==0)
printf("0.00\t\t=\n");
else
{
float bowlingStrike = crInfo.ballBowled / crInfo.wicketTaken;
printf("%.2f\t\t=\n", bowlingStrike);
}