| | | | / \ | \ | | _ \ / | _ | / | |/ / | |
| || | / _ \ | | | | | | | | | |) || | | | ' /| | | |
| _ |/ ___ | |\ | || | | || _ < | | || . | |_ | |
|| |// __| _|/ _|| ___||____| ||
- There are only two teams in the series.
- The series is of 3 matches.
- There are 5 players in each team.
- There are 3 batsman and 2 bowlers in each team.
- The team which wins the toss will bat first.
- You can decide which team you want to play for.
- Each inning will have 4 overs and a team will be all out after 3 wickets.
- First you have to choose the team you want to play for.
- If you are batting, you have to choose a number between 1-6.
- If the number you choose is same as the number the bowler chooses, you will be out.
- If the number you choose is different from the number the bowler chooses, the runs will be added to your score.
- If you are bowling, you have to choose a number between 1-6.
- If the number you choose is same as the number the batsman chooses, the batsman will be out.
- If the number you choose is different from the number the batsman chooses, the runs will be added to the batsman's score.
- The team which scores more runs wins the match.
- The team which wins more matches wins the series.
- You can also view the stats of the series, team, match and players.
- Match
- Team
- Series
- Bowler
- Batsman
- Match Terminal
Class variables :
Private
- target: It is an int variable which holds the target for the match.
- currentscore: It is an int variable which holds the current score of the team at a particular match.
- wickets: It is an int containing the total number of wickets lost for the team which is batting.
Protected
Class functions :
Private
- Toss(): It is a private function for tossing . It returns either 1 or 0.
- Bat(): It is a private function which contains the logic for batting.
- Bowl(): It is a private function which contains the logic for bowling.
- setTarget():
- setCurrentScore():
- setWickets():
- getTarget():
- getCurrentScore():
- getWickets():
Protected
- ScoreCard():
- Playmatch():
Class variables :
Private
- runs_scored: Variable that stores the runs scored by batsman in each match.
- strike_rate: Variable that stores the strike rate of the batsman in each match.
- batting_avg: Variable that stores the batting avg of the bastman.
- balls_faced: Total balls faced in by the batsman in each match.
Class functions :
Private
- setStrikeRate(): It displays the intro banner for the program.
- setBattingAvg(): This function sets the username of the player in the userObj object.
- setHighestScore(): This function displays the application menu and allows the user to select the mode, view user data or quit.
Public
- Batsman(): A constructor to initialise all the values to 0.
- setRuns(): Function to store the runs scored by batsman + the number of balls the batsman has played in each match
- getRuns(): Returns the runs scored by batsman in a match.
- getTotalRuns(): Returns the total runs scored by the batsman in all three matches.
- getStrikeRate(): Returns strike rate of the batsman in a match.
- getBattingAvg(): Returns the batting average of the batsman.
- HighestScore(): Returns the highest score of the batsman of all the three matches.
- displayMatchStats() : It displays runs scored , balls faced, strike rate , batting avg in a match.
Class variables :
Private
- runs_scored: Variable that stores the runs scored by batsman in each match.
- strike_rate: Variable that stores the strike rate of the batsman in each match.
- batting_avg: Variable that stores the batting avg of the bastman.
- balls_faced:
Class functions :
Private
- wickets(): It stores the number of wickets taken by the bowler in each match.
- runs_conceeded(): Returns the total number of runs conceeded by the bowler in a match.
- economy(): Returns the number of runs bowler has conceeded per over.
Public
- Bowler(): A constructor to initialise all the values of the variables to 0.
- setWickets(): Function to store the wickets taken by the bowler in a match.
- getWickets(): Function to get the wickets taken by the bowler in a match.
- getTotalWickets(): Returns the total wickets taken by the bowler in all the three matches.
- setRunsConceeded(): Function to store the total runs conceeded by the bowler in a match.
- getRunsConceeded():Returns the total runs conceeded by the bowler in a match.
- setEconomy(): Function to store the value of economy of a match.
- getEconomy() : Returns the value of economy of a match.
- displayBestFigures() : It displays the figure where min runs were made in ma balls.
Class variables :
Private
- matches_played: Static variable that stores the number of matches played .
- team1: An object for the team to store first team.
- team2: An object for the team second team.
- match: An object for Match that stores matches that is to be played in the series.
Class functions :
Public
- Series():
- getSeriesStats(): Function to display the stats of the series for both the teams. (LOGIC)
- displayLeaderboard():
- displayMatchScorecard(): Returns the scorecard of the Match.
- displayTeamStats(): Function to display the stats of the series for both the teams. (getSeriesStats() function call)
- displayPlayerStats():
Class variables :
Private
- name: Stores the name of the team
- no_of_Wins: Store the number of wins of the team.
- bestBatsman: Stores the best batsman of the team.
- bestBowler: Stores the best bowler of the team.
- batsmen: A pointer variable of batsman type which points to the current batsman.
- bowlers: A pointer variable of bowler type which points to the current bowler.
Class functions : Private
- setBestBatsman: A function to store the best batsman according to the runs scored by them.
- setBestBowler: A function to store the best bowler of the team.
Public
- Team():
- Team(name , batsman , bowler): A paramterised constructor to initialize the values of the variables.
- getNoOfWins(): Returns the number of wins.
- getTeamName(): Returns the name of the team.
- getBestBatsman(): Returns the best batsman.
- getBestBowler(): Returns the best bowler.
- displayTeam(): Displays all the members of the team.
- updateBatStats(): Function to update the runs of the batsman and update the best batsman according to it.
- updateBowlStats(): Function to update the runs conceeded, wickets,economy of the bowler and update the best bowler according to it.
- displayMatchStats():Displays the match stats of a particular match of the tea
- displayTeamStats(): Displays highest Run Scorer , highest wicket Taker .
The above HandCricket game is easy and user friendly to play .