-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCode.cpp
574 lines (479 loc) · 15.6 KB
/
Code.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
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
// This Code is Wriiten by: Vivek
#include <bits/stdc++.h>
using namespace std;
class cric
{
public:
string name;
int id;
int runsScored;
int ballsPlayed;
int ballsBowled;
int runsGiven;
int wicketsTaken;
// Constructor for cric class
cric()
{
runsScored = 0;
ballsPlayed = 0;
ballsBowled = 0;
runsGiven = 0;
wicketsTaken = 0;
}
};
class group
{
public:
string name;
int totalRunsScored;
int wicketsLost;
int totalBallsBowled;
vector<cric> players;
// Constructor for group class
group()
{
totalRunsScored = 0;
wicketsLost = 0;
totalBallsBowled = 0;
}
};
class Game
{
public:
Game();
int playersPerTeam;
int maxBalls;
int totalPlayers;
string players[22];
bool isFirstInnings;
group teamA, teamB;
group *battingTeam, *bowlingTeam;
cric *batsman, *bowler;
void welcome();
void showAllPlayers();
int takeIntegerInput();
void selectPlayers();
bool validateSelectedPlayer(int);
void showTeamPlayers();
void toss();
void tossChoice(group);
void startFirstInnings();
void initializePlayers();
void playInnings();
void bat();
bool validateInningsScore();
void showGameScorecard();
void startSecondInnings();
void showMatchSummary();
};
void Game::welcome()
{
cout << "---------------------------------------" << endl;
cout << "|=========== GULLY-CRICKET ===========|" << endl;
cout << "| |" << endl;
cout << "| Welcome to our GULLY CRICKET..! |" << endl;
cout << "---------------------------------------" << endl;
cout << endl
<< endl;
cout << "----------------------------------------------------" << endl;
cout << "|================== Instructions ==================|" << endl;
cout << "----------------------------------------------------" << endl;
cout << "| |" << endl;
cout << "| 1. Create 2 teams (Team-A and Team-B with 4 |" << endl;
cout << "| players each) from a given pool of 22 players.|" << endl;
cout << "| 2. Lead the toss and decide the choice of play. |" << endl;
cout << "| 3. Each innings will be of 6 balls. |" << endl;
cout << "| 4. This is a 1 over match and each over |" << endl;
cout << "| contains 6 balls |" << endl;
cout << "----------------------------------------------------" << endl;
}
Game::Game()
{
playersPerTeam = 4;
maxBalls = 6;
totalPlayers = 22;
players[0] = "Virat";
players[1] = "Rohit";
players[2] = "Dhawan";
players[3] = "Pant";
players[4] = "Karthik";
players[5] = "KLRahul";
players[6] = "Jadeja";
players[7] = "Hardik";
players[8] = "Bumrah";
players[9] = "BKumar";
players[10] = "Mdhoni";
players[11] = "Rahul";
players[12] = "Sourav";
players[13] = "Ravishankar";
players[14] = "Sachin";
players[15] = "Kapil";
players[16] = "Anil";
players[17] = "Zaheer";
players[18] = "Harbhajan";
players[19] = "Yuvraj";
players[20] = "Imran";
players[21] = "Brian";
isFirstInnings = false;
teamA.name = "Team-A";
teamB.name = "Team-B";
}
void Game::showAllPlayers()
{
cout << endl;
cout << "---------------------------------------" << endl;
cout << "|========== Pool of Players ==========|" << endl;
cout << "---------------------------------------" << endl;
cout << endl;
for (int i = 0; i < totalPlayers; i++)
{
cout << "\t\t[" << i << "] " << players[i] << endl;
}
}
int Game::takeIntegerInput()
{
int n;
while (!(cin >> n))
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "Invalid input! Please try again with valid input: ";
}
return n;
}
bool Game::validateSelectedPlayer(int index)
{
int n;
vector<cric> players;
players = teamA.players;
n = players.size();
for (int i = 0; i < n; i++)
{
if (players[i].id == index)
{
return false;
}
}
players = teamB.players;
n = players.size();
for (int i = 0; i < n; i++)
{
if (players[i].id == index)
{
return false;
}
}
return true;
}
void Game::selectPlayers()
{
cout << endl;
cout << "------------------------------------------------" << endl;
cout << "|========== Create Team-A and Team-B ==========|" << endl;
cout << "------------------------------------------------" << endl;
for (int i = 0; i < playersPerTeam; i++)
{
// Add player to team A
teamASelection:
cout << endl << "Select player " << i + 1 << " of Team A (-: only numbers :-) - ";
int playerIndexTeamA = takeIntegerInput();
if (playerIndexTeamA < 0 || playerIndexTeamA > 22)
{
cout << endl
<< "Please select from the given players" << endl;
goto teamASelection;
}
else if (!validateSelectedPlayer(playerIndexTeamA))
{
cout << endl << "Player has been already selected. Please select other player" << endl;
goto teamASelection;
}
else
{
cric teamAPlayer;
teamAPlayer.id = playerIndexTeamA;
teamAPlayer.name = players[playerIndexTeamA];
teamA.players.push_back(teamAPlayer);
}
// Add player to team B
teamBSelection:
cout << endl << "Select player " << i + 1 << " of Team B (-: only numbers :-) -";
int playerIndexTeamB = takeIntegerInput();
if (playerIndexTeamB < 0 || playerIndexTeamB > 22)
{
cout << endl << "Please select from the given players" << endl;
goto teamBSelection;
}
else if (!validateSelectedPlayer(playerIndexTeamB))
{
cout << endl << "Player has been already selected. Please select other player" << endl;
goto teamBSelection;
}
else
{
cric teamBPlayer;
teamBPlayer.name = players[playerIndexTeamB];
teamB.players.push_back(teamBPlayer);
}
}
}
void Game::showTeamPlayers()
{
vector<cric> teamAPlayers = teamA.players;
vector<cric> teamBPlayers = teamB.players;
cout << endl << endl;
cout << "--------------------------\t\t--------------------------" << endl;
cout << "|======= Team-A =======|\t\t|======= Team-B =======|" << endl;
cout << "--------------------------\t\t--------------------------" << endl;
for (int i = 0; i < playersPerTeam; i++)
{
cout << "|\t" << "[" << i << "] " << teamAPlayers[i].name << "\t |"
<< "\t\t" << "|\t" << "[" << i << "] " << teamBPlayers[i].name << "\t |" << endl;
}
cout << "--------------------------\t\t--------------------------" << endl << endl;
}
void Game::toss()
{
cout << endl;
cout << "-----------------------------------" << endl;
cout << "|========== Let's Toss ==========|" << endl;
cout << "-----------------------------------" << endl << endl;
cout << "Tossing the coin..." << endl << endl;
srand(time(NULL));
int randomValue = rand() % 2; // 0 or 1
switch (randomValue)
{
case 0:
cout << "Team-A won's the toss!!!!!!!!" << endl << endl;
tossChoice(teamA);
break;
case 1:
cout << "Team-B won's the toss!!!!!!!!" << endl << endl;
tossChoice(teamB);
break;
}
}
void Game::tossChoice(group tossWinnerTeam)
{
cout << "Enter 1 to bat or 2 to bowl first. " << endl << "1. Bat" << endl
<< "2. Bowl " << endl;
int tossInput = takeIntegerInput();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
switch (tossInput)
{
case 1:
cout << endl << tossWinnerTeam.name << " won the toss and elected to bat first" << endl
<< endl;
if (tossWinnerTeam.name.compare("Team-A") == 0)
{ // if Team-A is the toss winner
battingTeam = &teamA;
bowlingTeam = &teamB;
}
else
{ // else Team-B is the toss winner
battingTeam = &teamB;
bowlingTeam = &teamA;
}
break;
case 2:
cout << endl
<< tossWinnerTeam.name << " won the toss and choose to bowl first" << endl
<< endl;
if (tossWinnerTeam.name.compare("Team-A") == 0)
{ // if Team-A is the toss winner
bowlingTeam = &teamA;
battingTeam = &teamB;
}
else
{ // else Team-B is the toss winner
bowlingTeam = &teamB;
battingTeam = &teamA;
}
break;
default:
cout << endl
<< "Invalid input. Enter a valid input Please try again:" << endl
<< endl;
tossChoice(tossWinnerTeam);
break;
}
}
void Game::startFirstInnings()
{
cout << "\t\t ||| FIRST INNINGS STARTS ||| " << endl
<< endl;
isFirstInnings = true;
initializePlayers();
playInnings();
}
void Game::startSecondInnings()
{
cout << "\t\t ||| SECOND INNINGS STARTS ||| " << endl
<< endl;
isFirstInnings = false;
// Swap battingTeam and bowlingTeam pointers
group tempTeam = *battingTeam;
*battingTeam = *bowlingTeam;
*bowlingTeam = tempTeam;
// Select the batsman and the bowler for 2nd Innings
initializePlayers();
playInnings();
}
void Game::initializePlayers()
{
// Choose batsman and bowler: Initialize *batsman and *bowler
batsman = &battingTeam->players[0];
bowler = &bowlingTeam->players[0];
cout << battingTeam->name << " - " << batsman->name << " is batting " << endl;
cout << bowlingTeam->name << " - " << bowler->name << " is bowling " << endl
<< endl;
}
void Game::playInnings()
{
for (int i = 0; i < maxBalls; i++)
{
cout << "Press Enter to bowl...";
getchar();
cout << "Bowling.............." << endl;
bat();
if (!validateInningsScore())
{
break;
}
}
}
void Game::bat()
{
srand(time(NULL));
int runsScored = rand() % 6; // u increse this count
// Update batting team and batsman score
batsman->runsScored = batsman->runsScored + runsScored;
battingTeam->totalRunsScored = battingTeam->totalRunsScored + runsScored;
batsman->ballsPlayed = batsman->ballsPlayed + 1;
// Update bowling team and bowler score
bowler->ballsBowled = bowler->ballsBowled + 1;
bowlingTeam->totalBallsBowled = bowlingTeam->totalBallsBowled + 1;
bowler->runsGiven = bowler->runsGiven + runsScored;
if (runsScored != 0)
{ // if runsScored = 1, 2, 3, 4, 5, or 6
cout << endl
<< bowler->name << " to " << batsman->name << " " << runsScored << " runs!" << endl
<< endl;
showGameScorecard();
}
else
{ // else runScored = 0 and the batsman is ‘OUT’
cout << endl
<< bowler->name << " to " << batsman->name << " OUT!" << endl
<< endl;
battingTeam->wicketsLost = battingTeam->wicketsLost + 1;
bowler->wicketsTaken = bowler->wicketsTaken + 1;
showGameScorecard();
int nextPlayerIndex = battingTeam->wicketsLost;
batsman = &battingTeam->players[nextPlayerIndex];
}
}
bool Game::validateInningsScore()
{
if (isFirstInnings)
{
if (battingTeam->wicketsLost == playersPerTeam || bowlingTeam->totalBallsBowled == maxBalls)
{
cout << "\t\t ||| FIRST INNINGS ENDS ||| " << endl << endl;
cout << battingTeam->name << " " << battingTeam->totalRunsScored << " - "
<< battingTeam->wicketsLost << " (" << bowlingTeam->totalBallsBowled
<< ")" << endl;
cout << bowlingTeam->name << " needs " << battingTeam->totalRunsScored + 1
<< " runs to win the match" << endl << endl;
return false;
}
}
else
{ // Else 2nd innings
if (battingTeam->totalRunsScored > bowlingTeam->totalRunsScored)
{ // Case1: If batting team score > bowling team score
cout << battingTeam->name << " WON THE MATCH" << endl
<< endl;
return false;
// Case2: Batting team is all OUT OR Bowling team is done bowling
}
else if (battingTeam->wicketsLost == playersPerTeam || bowlingTeam->totalBallsBowled == maxBalls)
{
if (battingTeam->totalRunsScored < bowlingTeam->totalRunsScored)
{
cout << bowlingTeam->name << " WON THE MATCH" << endl
<< endl;
}
else
{
cout << "MATCH DRAW" << endl
<< endl;
}
return false;
}
}
return true;
}
int main()
{
Game game;
game.welcome();
cout << "\nPress Enter to continue";
getchar();
game.showAllPlayers();
cout << "\nPress Enter to continue";
getchar();
game.selectPlayers();
game.showTeamPlayers();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
cout << "\nPress Enter to toss";
getchar();
game.toss();
game.startFirstInnings();
game.startSecondInnings();
game.showMatchSummary();
return 0;
}
void Game::showGameScorecard()
{
cout << "--------------------------------------------------------------------------" << endl;
cout << "\t" << battingTeam->name << " " << battingTeam->totalRunsScored << " - "
<< battingTeam->wicketsLost << " (" << bowlingTeam->totalBallsBowled << ") | " << batsman->name
<< " " << batsman->runsScored << " (" << batsman->ballsPlayed << ") \t" << bowler->name << " "
<< bowler->ballsBowled << " - " << bowler->runsGiven << " - " << bowler->wicketsTaken << "\t" << endl;
cout << "--------------------------------------------------------------------------" << endl
<< endl;
}
void Game::showMatchSummary()
{
cout << "\t\t ||| MATCH ENDS ||| " << endl
<< endl;
cout << battingTeam->name << " " << battingTeam->totalRunsScored << "-" << battingTeam->wicketsLost << " (" << bowlingTeam->totalBallsBowled << ")" << endl;
cout << "==========================================" << endl;
cout << "| PLAYER \t BATTING \t BOWLING |" << endl;
for (int j = 0; j < playersPerTeam; j++)
{
cric cric = battingTeam->players[j];
cout << "|----------------------------------------|" << endl;
cout << "| "
<< "[" << j << "] " << cric.name << " \t "
<< cric.runsScored << "(" << cric.ballsPlayed << ") \t\t "
<< cric.ballsBowled << "-" << cric.runsGiven << "-"
<< cric.wicketsTaken << "\t |" << endl;
}
cout << "==========================================" << endl << endl;
cout << bowlingTeam->name << " " << bowlingTeam->totalRunsScored << "-" << bowlingTeam->wicketsLost << " (" << battingTeam->totalBallsBowled << ")" << endl;
cout << "==========================================" << endl;
cout << "| PLAYER \t BATTING \t BOWLING |" << endl;
for (int i = 0; i < playersPerTeam; i++)
{
cric cric = bowlingTeam->players[i];
cout << "|----------------------------------------|" << endl;
cout << "| "
<< "[" << i << "] " << cric.name << " \t "
<< cric.runsScored << "(" << cric.ballsPlayed << ") \t\t "
<< cric.ballsBowled << "-" << cric.runsGiven << "-"
<< cric.wicketsTaken << "\t |" << endl;
}
cout << "==========================================" << endl << endl;
}