We'll cover the following:
Cricinfo is a sports news website exclusively for the game of cricket. The site features live coverage of cricket matches containing ball-by-ball commentary and a database for all the historic matches. The site also provides news and articles about cricket.
We will focus on the following set of requirements while designing Cricinfo:
- The system should keep track of all cricket-playing teams and their matches.
- The system should show live ball-by-ball commentary of cricket matches.
- All international cricket rules should be followed.
- Any team playing a tournament will announce a squad (a set of players) for the tournament.
- For each match, both teams will announce their playing-eleven from the tournament squad.
- The system should be able to record stats about players, matches, and tournaments.
- The system should be able to answer global stats queries like, “Who is the highest wicket taker of all time?”, “Who has scored maximum numbers of 100s in test matches?”, etc.
- The system should keep track of all ODI, Test and T20 matches.
We have two main Actors in our system:
- Admin: An Admin will be able to add/modify players, teams, tournaments, and matches, and will also record ball-by-ball details of each match.
- Commentator: Commentators will be responsible for adding ball-by-ball commentary for matches.
Here are the top use cases of our system:
- Add/modify teams and players: An Admin will add players to teams and keeps up-to-date information about them in the system.
- Add tournaments and matches: Admins will add tournaments and matches in the system.
- Add ball: Admins will record ball-by-ball details of a match.
- Add stadium, umpire, and referee: The system will keep track of stadiums as well as of the umpires and referees managing the matches.
- Add/update stats: Admins will add stats about matches and tournaments. The system will generate certain stats.
- Add commentary: Add ball-by-ball commentary of matches.
Here is the use case diagram of Cricinfo:
Here are the main classes of the Cricinfo system:
- Player: Keeps a record of a cricket player, their basic profile and contracts.
- Team: This class manages cricket teams.
- Tournament: Manages cricket tournaments and keeps track of the points table for all playing teams.
- TournamentSquad: Each team playing a tournament will announce a set of players who will be playing the tournament. TournamentSquad will encapsulate that.
- Playing11: Each team playing a match will select 11 players from their announced tournaments squad.
- Match: Encapsulates all information of a cricket match. Our system will support three match types: 1) ODI, 2) T20, and 3) Test
- Innings: Records all innings of a match.
- Over: Records details about an Over.
- Ball: Records every detail of a ball, such as the number of runs scored, if it was a wicket-taking ball, etc.
- Run: Records the number and type of runs scored on a ball. The different run types are: Wide, LegBy, Four, Six, etc.
- Commentator and Commentary: The commentator adds ball-by-ball commentary.
- Umpire and Referee: These classes will store details about umpires and referees, respectively.
- Stat: Our system will keep track of the stats for every player, match and tournament.
- StatQuery: This class will encapsulate general stat queries and their answers, like “Who has scored the maximum number of 100s in ODIs?” or, “Which bowler has taken the most wickets in test matches?”, etc.
Record a Ball of an Over: Here are the steps to record a ball of an over in the system:
Here is the high-level definition for the classes described above.
Enums, data types, and constants: Here are the required enums, data types, and constants:
from enum import Enum
class Address:
def __init__(self, street, city, state, zip_code, country):
self.__street_address = street
self.__city = city
self.__state = state
self.__zip_code = zip_code
self.__country = country
class Person():
def __init__(self, name, address, email, phone):
self.__name = name
self.__address = address
self.__email = email
self.__phone = phone
class MatchFormat(Enum):
ODI, T20, TEST = 1, 2, 3
class MatchResult(Enum):
LIVE, FINISHED, DRAWN, CANCELLED = 1, 2, 3, 4
class UmpireType(Enum):
FIELD, RESERVED, TV = 1, 2, 3
class WicketType(Enum):
BOLD, CAUGHT, STUMPED, RUN_OUT, LBW, RETIRED_HURT, HIT_WICKET, OBSTRUCTING = 1, 2, 3, 4, 5, 6, 7, 8
class BallType(Enum):
NORMAL, WIDE, WICKET, NO_BALL = 1, 2, 3, 4
class RunType(Enum):
NORMAL, FOUR, SIX, LEG_BYE, BYE, NO_BALL, OVERTHROW = 1, 2, 3, 4, 5, 6, 7
Admin, Player, Umpire, Referee, and Commentator: These classes represent the different people that interact with our system:
# For simplicity, we are not defining getter and setter functions. The reader can
# assume that all class attributes are private and accessed through their respective
# public getter methods and modified only through their public methods function.
class Player:
def __init__(self, person):
self.__person = person
self.__contracts = []
def add_contract(self, contract):
None
class Admin:
def __init__(self, person):
self.__person = person
def add_match(self, match):
None
def add_team(self, team):
None
def add_tournament(self, tournament):
None
class Umpire:
def __init__(self, person):
self.__person = person
def assign_match(self, match):
None
class Referee:
def __init__(self, person):
self.__person = person
def assign_match(self, match):
None
class Commentator:
def __init__(self, person):
self.__person = person
def assign_match(self, match):
None
Team, TournamentSquad, and Playing11: Team will announce a squad for a tournament, out of which, the playing 11 will be chosen:
class Team:
def __init__(self, name, coach):
self.__name = name
self.__players = []
self.__news = []
self.__coach = coach
def add_tournament_squad(self, tournament_squad):
None
def add_player(self, player):
None
def add_news(self, news):
None
class TournamentSquad:
def __init__(self):
self.__players = []
self.__tournament_stats = []
def add_player(self, player):
None
class Playing11:
def __init__(self):
self.__players = []
self.__twelfth_man = None
def add_player(self, player):
None
Over, Ball, Wicket, Commentary, Inning, and Match: Match will be an abstract class, extended by ODI, Test, and T20:
from datetime import datetime
from abc import ABC
from .constants import MatchResult
class Over:
def __init__(self, number):
self.__number = number
self.__balls = []
def add_ball(self, ball):
None
class Ball:
def __init__(self, balled_by, played_by, ball_type, wicket, runs, commentary):
self.__balled_by = balled_by
self.__played_by = played_by
self.__type = ball_type
self.__wicket = wicket
self.__runs = runs
self.__commentary = commentary
class Wicket:
def __init__(self, wicket_type, player_out, caught_by, runout_by, stumped_by):
self.__wicket_type = wicket_type
self.__player_out = player_out
self.__caught_by = caught_by
self.__runout_by = runout_by
self.__stumped_by = stumped_by
class Commentary:
def __init__(self, text, commentator):
self.__text = text
self.__created_at = datetime.date.today()
self.__created_by = commentator
class Inning:
def __init__(self, number, start_time):
self.__number = number
self.__start_time = start_time
self.__overs = []
def add_over(self, over):
None
# from abc import ABC, abstractmethod
class Match(ABC):
def __init__(self, number, start_time, referee):
self.__number = number
self.__start_time = start_time
self.__result = MatchResult.LIVE
self.__teams = []
self.__innings = []
self.__umpires = []
self.__referee = referee
self.__commentators = []
self.__match_stats = []
def assign_stadium(self, stadium):
None
def assign_referee(self, referee):
None
class ODI(Match):
# ...
pass
class Test(Match):
# ...
pass