Exemplo n.º 1
0
        private void menuOpen_Click(object sender, RoutedEventArgs e)
        {
            OpenFileDialog openFileDialog = new OpenFileDialog();

            openFileDialog.Filter           = "Text file (*.txt)|*.txt";
            openFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
            if (openFileDialog.ShowDialog() == true)
            {
                IFormatter formatter = new BinaryFormatter();
                Stream     stream    = new FileStream(openFileDialog.FileName, FileMode.Open, FileAccess.Read);
                try
                {
                    othelloBoard = (OthelloBoard)formatter.Deserialize(stream);

                    stream.Close();

                    this.DataContext = othelloBoard;

                    othelloBoard.Restore();

                    updateBoardDisplay(othelloBoard.GetBoard());
                    updatePlayableCellsDisplay(othelloBoard.getPlayableCells());
                }
                catch
                {
                    MessageBox.Show("Invalid File Type", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
                }
            }
        }
Exemplo n.º 2
0
        public MainWindow()
        {
            InitializeComponent();

            othelloBoard = new OthelloBoard();

            this.DataContext = othelloBoard;

            ellipses = new Ellipse[9, 7];

            for (int i = 0; i < 9; i++)
            {
                for (int j = 0; j < 11; j++)
                {
                    if (i > 0 && i < 8 && j > 0 && j < 10)
                    {
                        Rectangle rect = new Rectangle();
                        rect.Stroke = BLACK;
                        rect.Fill   = EMPTY;
                        Grid.SetRow(rect, i);
                        Grid.SetColumn(rect, j);
                        board.Children.Add(rect);

                        Ellipse ellipse = new Ellipse();
                        ellipse.Fill   = EMPTY;
                        ellipse.Margin = new Thickness(3);
                        Grid.SetRow(ellipse, i);
                        Grid.SetColumn(ellipse, j);
                        board.Children.Add(ellipse);

                        ellipses[j - 1, i - 1] = ellipse;

                        rect.MouseEnter          += new MouseEventHandler(r_MouseEnter);
                        rect.MouseLeave          += new MouseEventHandler(r_MouseLeave);
                        rect.MouseLeftButtonDown += new MouseButtonEventHandler(r_MouseClick);

                        ellipse.MouseEnter          += new MouseEventHandler(r_MouseEnter);
                        ellipse.MouseLeave          += new MouseEventHandler(r_MouseLeave);
                        ellipse.MouseLeftButtonDown += new MouseButtonEventHandler(r_MouseClick);

                        void r_MouseClick(object sender, MouseEventArgs e)
                        {
                            if (!othelloBoard.getIsOver())
                            {
                                var element = (UIElement)e.Source;

                                int c = Grid.GetColumn(element) - 1;
                                int r = Grid.GetRow(element) - 1;

                                othelloBoard.PlayMove(c, r, othelloBoard.WhiteTurn); //Play on the board at this position

                                updateBoardDisplay(othelloBoard.GetBoard());
                                updatePlayableCellsDisplay(othelloBoard.getPlayableCells());

                                if (othelloBoard.getIsOver())
                                {
                                    String message = "Game finished, ";
                                    if (othelloBoard.GetWhiteScore() > othelloBoard.GetBlackScore())
                                    {
                                        message += "white player won !";
                                    }
                                    else if (othelloBoard.GetWhiteScore() < othelloBoard.GetBlackScore())
                                    {
                                        message += "black player won !";
                                    }
                                    else
                                    {
                                        message += "you are tied !";
                                    }

                                    if (MessageBox.Show(message + "\nDo you want to play again?",
                                                        "GAME OVER", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
                                    {
                                        othelloBoard.NewGame();
                                        updateBoardDisplay(othelloBoard.GetBoard());
                                        updatePlayableCellsDisplay(othelloBoard.getPlayableCells());
                                    }
                                    else
                                    {
                                        this.Close();
                                    }
                                }
                            }
                            else
                            {
                                MessageBox.Show("To play again, open the menu and select \"new game\"");
                            }
                        }

                        void r_MouseLeave(object sender, MouseEventArgs e)
                        {
                            var element = (UIElement)e.Source;

                            this.Cursor = Cursors.Arrow;

                            int c = Grid.GetColumn(element) - 1;
                            int r = Grid.GetRow(element) - 1;

                            if (othelloBoard.isEmpty(c, r))
                            {
                                ellipse.Fill = EMPTY;
                            }
                            updatePlayableCellsDisplay(othelloBoard.getPlayableCells());
                        }

                        void r_MouseEnter(object sender, MouseEventArgs e)
                        {
                            var element = (UIElement)e.Source;

                            this.Cursor = Cursors.Hand;

                            int c = Grid.GetColumn(element) - 1;
                            int r = Grid.GetRow(element) - 1;

                            if (othelloBoard.IsPlayable(c, r, othelloBoard.WhiteTurn))
                            {
                                if (othelloBoard.WhiteTurn)
                                {
                                    ellipse.Fill = new SolidColorBrush(Color.FromArgb(128, 255, 255, 255));
                                }
                                else
                                {
                                    ellipse.Fill = new SolidColorBrush(Color.FromArgb(128, 0, 0, 0));
                                }
                            }
                        }
                    }
                    else
                    {
                        if (i == 0 && j > 0 && j < 10)
                        {
                            TextBlock tb = new TextBlock();
                            tb.Inlines.Add(((char)(j + 64)).ToString());
                            tb.TextAlignment     = TextAlignment.Center;
                            tb.VerticalAlignment = VerticalAlignment.Center;
                            tb.FontSize          = 22;
                            tb.FontWeight        = FontWeights.Bold;
                            Grid.SetRow(tb, i);
                            Grid.SetColumn(tb, j);
                            board.Children.Add(tb);
                        }
                        else if (j == 0 && i > 0 && i < 8)
                        {
                            TextBlock tb = new TextBlock();
                            tb.Inlines.Add((i).ToString());
                            tb.TextAlignment     = TextAlignment.Center;
                            tb.VerticalAlignment = VerticalAlignment.Center;
                            tb.FontSize          = 22;
                            tb.FontWeight        = FontWeights.Bold;
                            Grid.SetRow(tb, i);
                            Grid.SetColumn(tb, j);
                            board.Children.Add(tb);
                        }
                    }
                }
            }

            updateBoardDisplay(othelloBoard.GetBoard());
            updatePlayableCellsDisplay(othelloBoard.getPlayableCells());
        }