static void Main(string[] args) { Console.WriteLine("Start"); Ball ball = new Ball(); Ball ball2 = new Ball(); Bat bat = ball.GetNewBat(); bat = ball.GetNewBat(); Pitcher pitcher = new Pitcher(ball); Catcher cathcer = new Catcher(ball); Batter batter = new Batter(ball); FirstBaseman firstBaseman = new FirstBaseman(ball); SecondBaseman secondBaseman = new SecondBaseman(ball); ThirdBaseman thirdBaseman = new ThirdBaseman(ball); Fan energeticFan = new Fan(ball); Umpire goodUmpire = new Umpire(ball); bat.HitTheBall(new BallEventArgs(50, 80)); bat.HitTheBall(new BallEventArgs(50, 80)); //int[][] parmas = new int[][]; ball.OnBallInPlayTest(new BallEventArgs(50, 80)); bat.HitTheBall(new BallEventArgs(40, 200)); bat.HitTheBall(new BallEventArgs(40, 200)); Console.WriteLine(); bat.HitTheBall(new BallEventArgs(40, 200)); //Add listener many times: goodUmpire.StartLookingAtBall(ball); goodUmpire.StartLookingAtBall(ball); bat.HitTheBall(new BallEventArgs(30, 910)); Console.WriteLine(); goodUmpire.StopLookingAtBall(); bat.HitTheBall(new BallEventArgs(30, 910)); goodUmpire.StopLookingAtBall(); goodUmpire.StopLookingAtBall(); Console.WriteLine(); bat.HitTheBall(new BallEventArgs(50, 80)); Console.WriteLine(); goodUmpire.StartWaitgingForHit(bat); goodUmpire.StartWaitgingForHit(bat); bat.HitTheBall(new BallEventArgs(50, 80)); bat.HitTheBall(new BallEventArgs(50, 80)); Console.ReadKey(); }
public BaseballSimulator() { pitcher = new Pitcher(ball); fan = new Fan(ball); }
public Form1() { InitializeComponent(); pitcher = new Pitcher(ball); fan = new Fan(ball); }