Skip to content

Aaroh1/HandCricket

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OOPL Project :


| | | | / \ | \ | | _ \ / | _ | / | |/ / | | | || | / _ \ | | | | | | | | | |) || | | | ' /| | | |
| _ |/ ___ | |\ | |
| | | |
| _ < | | |
| . | |
_ | |
|| |// __| _|/ _|| ___||____| ||

Assumptions

  1. There are only two teams in the series.
  2. The series is of 3 matches.
  3. There are 5 players in each team.
  4. There are 3 batsman and 2 bowlers in each team.
  5. The team which wins the toss will bat first.
  6. You can decide which team you want to play for.
  7. Each inning will have 4 overs and a team will be all out after 3 wickets.

HOW TO PLAY

  1. First you have to choose the team you want to play for.
  2. If you are batting, you have to choose a number between 1-6.
  3. If the number you choose is same as the number the bowler chooses, you will be out.
  4. If the number you choose is different from the number the bowler chooses, the runs will be added to your score.
  5. If you are bowling, you have to choose a number between 1-6.
  6. If the number you choose is same as the number the batsman chooses, the batsman will be out.
  7. If the number you choose is different from the number the batsman chooses, the runs will be added to the batsman's score.
  8. The team which scores more runs wins the match.
  9. The team which wins more matches wins the series.
  10. You can also view the stats of the series, team, match and players.

Classes defined :

  1. Match
  2. Team
  3. Series
  4. Bowler
  5. Batsman
  6. Match Terminal

1. Match class :

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():

2. Batsman :

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.

3. Bowler :

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.

4. Series :

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():

5. Team :

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 .

Conclusions:

The above HandCricket game is easy and user friendly to play .

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages