venkateswaran2010[scorebook final]

22
Welc ome To All

Upload: venkateswaranmz

Post on 12-May-2015

89 views

Category:

Education


0 download

DESCRIPTION

venkateswaran2010,venkateswaran2010,venkateswaran2010,venkateswaran2010,venkateswaran2010,venkateswaran2010,venkateswaran2010

TRANSCRIPT

Page 1: venkateswaran2010[Scorebook final]

Welcome

To

All

Page 2: venkateswaran2010[Scorebook final]

Abstract

We can store the scores by using score book for all matches

This Cricket score book has many details of play from batsman runs to bowler stats

This book is designed to include every minute stats of the match.

Page 3: venkateswaran2010[Scorebook final]

Front End

C++

Back End

Notepad

Page 4: venkateswaran2010[Scorebook final]

Modules1.Play in progress 7. Fall of the Wicket2.Match Summary 8.Adjust the Over3.Current Batsman’s Details 9.At this Stage4.Bowler’s Detail’s 10.New Match5.Extra’s Detail’s 11.Exit6. All Batsman Detail’s

Page 5: venkateswaran2010[Scorebook final]

Play in ProgressIt is very important part of this softwareYou should give the runs for ball by ballIt is include out,run,wide,noball,dotball,legbye,bye,etcAll detail’s will silently updateAfter the runs added , the Batsman’s will be changing and updating detail’s automatically

Match summaryIt show’s the detail’s about the Match informationIt is display the score , current batsman’s details , wicket , Over , Runrate ,Required Rate ,total 4’s and 6’s etc…

Current Batsman Detail’sIt is display the detail’s about Playing current batsman’sIt shows the Batsman name ,Run ,Balls ,total of 6’s ,4’s ,3’s, 2’s, 1’s, dot balls , Strike Rate.These are automatically calculated

Page 6: venkateswaran2010[Scorebook final]

Bowler’s Details It is display the detail’s about the bowler’s It shows the Bowler name ,Over, Run ,Wicket ,Maiden , extra’s ,economyThese are automatically calculated

Extra’s Details It is display the total extra’s in innings It’s display the detail’s about wide , noball ,leg bye ,bye

All Batsman DetailsIt is display the detail’s about All batsman’sIt shows the Batsman name ,Run ,Balls ,total of 6’s ,4’s ,3’s, 2’s, 1’s, dot balls , Strike Rate , How to out.

Fall of the WicketIt displays the details about the wickets fall at the runs for an innings.

Page 7: venkateswaran2010[Scorebook final]

Adjust the Over When the Weather is bad , we can adjust the over size. It can adjust the over in the 1st innings only.

At this stage It displays the run comparison between the two teams according to their over’s.

New Match The process begins with the new match.

Exit After match completed , if you want to finish the program , just select the exit.

Page 8: venkateswaran2010[Scorebook final]

Introduction

Over View of the Project

Cricket Score Book is a easy to handle the scoreinformation . It is the quickest, easiest and most

comprehensivemethod of cricket scoring. It has been designed to cater For

theneeds of both novice and experienced scorers.

By utilising the flexibility and ease of use of the Microsoft

Windows environment the Willow Cricket Scorebook providesfeatures not found in any other computer based scoring

package.

Page 9: venkateswaran2010[Scorebook final]

Organization ProfileOrganization Name : Suryabala Cricket

ClubOwner : Mr . Thiruppathi

moorthi

Suryabala cricket club is One of the best Cricket club in Coimbatore . It is very famous Cricket club. It is gone to Lot of trophy match in Coimbatore . It has more than 30 players in Suryabala cc.

Suryabala cricket club is started by Mr . Thiruppathi moorthi in 2006.He is giving many more money for games kits and players.

Page 10: venkateswaran2010[Scorebook final]

System AnalysisExisting System

The Existing system is done by manually . This is very confused for

Scorer . It isn’t get the all information quickly. This cricket score sheet has room

for many details of play, from batsman runs (and a cumulative run tally) to

bowler stats.

DisadvantageThe disadvantages of an handwritten score book is, It makes confusion to note the score during the time of match. It will lead to tension for the scorer who notes the score. It is a time consuming process.

Page 11: venkateswaran2010[Scorebook final]

Proposed SystemThe proposed system seeks to eliminate the

drawbacks of theexisting system . The proposed system is highly user

interactive. CricketScorebook is very flexible. It supports limited and unlimited

over Cricket,One & Two Inning matches.

AdvantageIt is User Friendly.It will inform to scorer automatically, when a Team or batsman hit a centuries or half centuries.It automatically calculate Runrate, Strike rate, Required rate, Bowler economy. It will give the clear information to the scorer

Page 12: venkateswaran2010[Scorebook final]

System ConfigurationHardware Requirements

Processor : Intel Pentium 4

RAM : 512 MB

Hard disk : 80 GB HD

Keyboard : 104 Keys

Mouse : logitech mouse

Monitor : 15” digital color monitor

Display type : VGA

Software RequirementsOperating System : Windows XPProgramming Language : C++Backend : Word pad

Page 13: venkateswaran2010[Scorebook final]

System DesignData Flow Diagram

False

False True Return

True

New

End

StartGene

ralInput

Menu 1Check

Go to 2nd Innings

Save Scores in Word pad

Menu 2Check

New / Exit

Exit

Page 14: venkateswaran2010[Scorebook final]

Conclusion

The application developed is designed in such a way that

any further enhancements can be done with ease. The system has the

capability for easy integration with other systems. New modules can be

added to the existing system with less effort.

Page 15: venkateswaran2010[Scorebook final]

Future EnhancementI will develop my project to add the

New information.I will make my Score book Colorfully. I will Insert a

New tools.

Next Version:1.Autometically to store the Score2.Display the Batsman details Orderly3.Patnership4.Come to like as a 3D Effect etc…,

Page 16: venkateswaran2010[Scorebook final]

Sample Coding//Scorebook menucout<<"\n\n";cout<<"\n\t\t\t *..Score Book Menu..*";cout<<"\n\t 1.Play in progress 6.All

Batsman details";cout<<"\n\t 2.Match Summary 7.Fall Of

The Wickets";cout<<"\n\t 3.Current Batsman Details

8.Adjust the Over";cout<<"\n\t 4.Bowler Details 9.New

Match";cout<<"\n\t 5.Extras Details 10.Exit";cout<<"\nEnter your choice:";cin>>sa;

Page 17: venkateswaran2010[Scorebook final]

switch(sa){

case 1:op.bow();op.play();op.ooo();break;case 2:clrscr();op.dis();break;case 3:op.batd();break;case 4:op.bowld();break;

Page 18: venkateswaran2010[Scorebook final]

case 5:op.extraa();break;case 6:op.allbatd();break;case 8:op.adj();break;case 7:op.falldis();break;case 9:goto ne;case 10:return;default:cout<<"try again...";

}

Page 19: venkateswaran2010[Scorebook final]

Sample Screen

Page 20: venkateswaran2010[Scorebook final]
Page 21: venkateswaran2010[Scorebook final]
Page 22: venkateswaran2010[Scorebook final]

Thank you