Ejemplo n.º 1
0
 private void AdjustGameList(Game[] games)
 {
     foreach (Game game in games)
     {
         if (!gamesToolStripMenuItem.DropDownItems.ContainsKey(game.ToString()))
         {
             ToolStripMenuItem item = new ToolStripMenuItem();
             item.Text = game.ToString();
             item.CheckOnClick = true;
             item.CheckedChanged += item_CheckedChanged;
             item.Name = game.ToString();
             gamesToolStripMenuItem.DropDownItems.Add(item);
         }
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Renders the data from the Game object visually into a Bitmap object and then saves it
        /// </summary>
        /// <param name="path">The path to save the bitmap</param>
        /// <param name="game">The Game object that has all the data we need to render</param>
        public static void RenderGame(string path,Game game)
        {
            using (Bitmap bitmap = new Bitmap(DEFAULT_WIDTH, DEFAULT_HEIGHT))
            {
                using (Graphics graphics = Graphics.FromImage(bitmap))
                {

                    graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
                    graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit;
                    graphics.CompositingQuality = CompositingQuality.HighQuality;
                    graphics.SmoothingMode = SmoothingMode.HighQuality;

                    graphics.Clear(Color.Black);

                    using (Image homeLogo = Util.DownloadImage(game.HomeTeam.Logo.Large),
                                 awayLogo = Util.DownloadImage(game.AwayTeam.Logo.Large))
                    {
                        PointF imgPoint = new PointF();
                        int centerX = (DEFAULT_WIDTH / 2);
                        int centerY = (DEFAULT_HEIGHT / 2);
                        int homeLogoX = (centerX - (homeLogo.Width / 2)) + homeLogo.Width;
                        int homeLogoY = (centerY - (homeLogo.Height / 2));
                        imgPoint.X = homeLogoX;
                        imgPoint.Y = homeLogoY;
                        graphics.DrawImage(homeLogo, imgPoint);

                        int awayLogoX = (centerX - (awayLogo.Width / 2)) - awayLogo.Width;
                        int awayLogoY = (centerY - (awayLogo.Height / 2));
                        imgPoint.X = awayLogoX;
                        imgPoint.Y = awayLogoY;
                        graphics.DrawImage(awayLogo, imgPoint);
                        using (Font font = new Font("Impact", 50.0f, FontStyle.Regular))
                        {
                            using (SolidBrush brush = new SolidBrush(Color.White))
                            {
                                PointF point = new PointF();
                                SizeF size = graphics.MeasureString(game.ToString(), font);
                                point.X = centerX - (size.Width / 2);
                                point.Y = size.Height + 100;
                                graphics.DrawString(game.ToString(), font, brush, point);

                                size =  graphics.MeasureString("vs", font);
                                point.Y = centerY + (size.Height / 2);
                                point.X = centerX;
                                graphics.DrawString("vs", font, brush, point);

                                string homeScore = string.Format("{0}",game.BoxScore != null ? game.BoxScore.Score.Home.Score : 0);
                                size = graphics.MeasureString(homeScore,font);
                                point.X = homeLogoX + (homeLogo.Width / 2);
                                point.Y = homeLogoY + (homeLogo.Height) + 100;
                                graphics.DrawString(homeScore, font, brush, point);

                                string awayScore = string.Format("{0}", game.BoxScore != null ? game.BoxScore.Score.Away.Score : 0);
                                size = graphics.MeasureString(awayScore, font);
                                point.X = awayLogoX + (awayLogo.Width / 2);
                                point.Y = awayLogoY + (awayLogo.Height) + 100;
                                graphics.DrawString(awayScore, font, brush, point);

                            }
                        }
                    }
                    bitmap.Save(path, ImageFormat.Bmp);
                }
            }
        }
Ejemplo n.º 3
0
 public NHLGameView(Game nhlGame)
 {
     InitializeComponent();
     Game = nhlGame;
 }
Ejemplo n.º 4
0
 static void monitor_GameUpdated(Game game)
 {
     string path = Path.Combine(Application.StartupPath,string.Format("{0}.bmp", game.ToString()));
     Renderer.RenderGame(path,game);
     DesktopWallpaper.Change(path);
 }