Exemplo n.º 1
0
        public void AutoStep(AutoPlayer clintons, int[,] point, ref char turn, ref GameBoard gameboard, ref Button[,] buttons, out bool message)
        {
            point = clintons.Huff(gameboard, 1, 2);
            if (point[0, 0] == -1 && point[0, 1] == -1)
            {
                turn         = 't';
                int[,] coins = clintons.Step(gameboard);


                buttons[coins[0, 0], coins[0, 1]].BackgroundImage = null;
                if (coins[1, 1] == 7 && gameboard[coins[0, 0], coins[0, 1]] == 1)
                {
                    gameboard[coins[0, 0], coins[0, 1]] = 0;
                    gameboard[coins[1, 0], coins[1, 1]] = 10;
                    buttons[coins[1, 0], coins[1, 1]].BackgroundImage = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                }
                else
                {
                    gameboard[coins[0, 0], coins[0, 1]] = 0;
                    gameboard[coins[1, 0], coins[1, 1]] = 1;
                    buttons[coins[1, 0], coins[1, 1]].BackgroundImage = ((System.Drawing.Image)(Properties.Resources.clinton));
                }
            }
            else
            {
                turn = 't';

                if ((point[1, 1] == 6 && gameboard[point[0, 0], point[0, 1]] == 1) || gameboard[point[0, 0], point[0, 1]] == 10)
                {
                    gameboard[point[0, 0], point[0, 1]] = 0;
                    gameboard[point[1, 0], point[1, 1]] = 0;
                    gameboard[point[2, 0], point[2, 1]] = 10;

                    buttons[point[0, 0], point[0, 1]].BackgroundImage = null;
                    buttons[point[1, 0], point[1, 1]].BackgroundImage = null;
                    buttons[point[2, 0], point[2, 1]].BackgroundImage = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                }
                else
                {
                    gameboard[point[0, 0], point[0, 1]] = 0;
                    gameboard[point[1, 0], point[1, 1]] = 0;
                    gameboard[point[2, 0], point[2, 1]] = 1;

                    buttons[point[0, 0], point[0, 1]].BackgroundImage = null;
                    buttons[point[1, 0], point[1, 1]].BackgroundImage = null;
                    buttons[point[2, 0], point[2, 1]].BackgroundImage = ((System.Drawing.Image)(Properties.Resources.clinton));
                }
            }
            message = this.message;
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, System.EventArgs e)
        {
            BackgroundImage = ((System.Drawing.Image)(Properties.Resources.gamecover1));
            bool auto;
            char turn = 't';
            char previous = 'n', current = 'n';
            int  previous_i = 0, previous_j = 0;
            int  current_i, current_j;
            byte count1, count2;
            bool message = false;

            Button[,] buttons = new Button[8, 8];
            int[,] point2     = new int[3, 2];


            button1.Hide();
            startCombo.Hide();
            choosestart.Hide();



            GameBoard  gameboard = new GameBoard();
            AutoPlayer clinton   = new AutoPlayer();

            Player clintons = new Player();
            Player trumps   = new Player();



            if (startCombo.SelectedIndex == 1)
            {
                auto = false;
            }
            else
            {
                auto = true;
            }


            for (int i = 0; i < 8; i++)
            {
                for (int j = 0; j < 8; j++)
                {
                    Button button = new Button();
                    button.Height   = 50;
                    button.Width    = 50;
                    button.Location = new Point(200 + 50 * i, 50 * j);
                    if ((i + j) % 2 == 1)
                    {
                        button.BackColor = Color.Black;
                        button.FlatStyle = FlatStyle.Flat;
                        button.FlatAppearance.BorderColor = Color.Black;
                        if (j < 3)
                        {
                            button.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.clinton));
                        }
                        else if (j > 4 && j < 8)
                        {
                            button.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.trump1));
                        }
                        else
                        {
                            button.BackgroundImage = null;
                        }
                    }

                    if ((i + j) % 2 == 1)
                    {
                        button.Click += (s, ea) =>
                        {
                            if (auto)
                            {
                                current_i = (button.Location.X - 200) / 50;
                                current_j = button.Location.Y / 50;
                                switch (gameboard[current_i, current_j])
                                {
                                case 2:
                                case 20: current = 't'; break;

                                case 0: current = 'n'; break;
                                }
                                //Trump's step
                                if (turn == 't' && trumps.Step(turn, previous, current, current_i, current_j, previous_i, previous_j) && gameboard[previous_i, previous_j] == 2)
                                {
                                    point2 = trumps.Huff(gameboard, 2, 1);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 'c';
                                        buttons[previous_i, previous_j].BackgroundImage = null;

                                        if (current_j == 0 && gameboard[previous_i, previous_j] == 2)
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 20;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                        }
                                        else
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 2;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.trump1));
                                        }
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 'c';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                    Thread.Sleep(500);
                                    clinton.AutoStep(clinton, point2, ref turn, ref gameboard, ref buttons, out message);
                                }

                                //Trump's eat
                                if (previous == 't' && trumps.Eating(current, current_i, current_j, previous_i, previous_j, gameboard, 1) && gameboard[previous_i, previous_j] == 2)
                                {
                                    turn = 'c';
                                    buttons[previous_i, previous_j].BackgroundImage = null;

                                    if (current_j == 0 && gameboard[previous_i, previous_j] == 2)
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 20;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                    }
                                    else
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 2;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.trump1));
                                    }
                                    gameboard[(previous_i + current_i) / 2, (previous_j + current_j) / 2] = 0;
                                    buttons[(previous_i + current_i) / 2, (previous_j + current_j) / 2].BackgroundImage = null;


                                    Thread.Sleep(500);
                                    clinton.AutoStep(clinton, point2, ref turn, ref gameboard, ref buttons, out message);
                                }

                                //Trump's dama step
                                if (turn == 't' && previous == 't' && current == 'n' && trumps.Clean(current_i, current_j, previous_i, previous_j, gameboard) && gameboard[previous_i, previous_j] == 20)
                                {
                                    point2 = trumps.Huff(gameboard, 2, 1);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 'c';
                                        buttons[previous_i, previous_j].BackgroundImage = null;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 20;
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 'c';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                    Thread.Sleep(500);
                                    clinton.AutoStep(clinton, point2, ref turn, ref gameboard, ref buttons, out message);
                                }

                                //Trump dama eat
                                if (previous == 't' && current == 'n' && trumps.DamaEat(current_i, current_j, previous_i, previous_j, gameboard, 2, 1) && gameboard[previous_i, previous_j] == 20)
                                {
                                    turn = 'c';
                                    trumps.RemoveCoin(gameboard, ref buttons);
                                    gameboard[previous_i, previous_j] = 0;
                                    gameboard[current_i, current_j]   = 20;
                                    buttons[previous_i, previous_j].BackgroundImage = null;
                                    button.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.damatrump));

                                    Thread.Sleep(500);
                                    clinton.AutoStep(clinton, point2, ref turn, ref gameboard, ref buttons, out message);
                                }



                                previous   = current;
                                previous_i = current_i;
                                previous_j = current_j;


                                Calculations.CoinsCount(gameboard, out count1, out count2);
                                if (count2 == 0)
                                {
                                    RemoveButtons(buttons);
                                    button1.Show();
                                    choosestart.Show();
                                    startCombo.Show();
                                    MessageBox.Show("Congratulations! The winner is Hillary Clinton.");
                                }
                                else
                                if (count1 == 0 || message)
                                {
                                    RemoveButtons(buttons);
                                    button1.Show();
                                    choosestart.Show();
                                    startCombo.Show();
                                    MessageBox.Show("Congratulations! The winner is Donald Trump.");
                                }
                            }
                            else
                            {
                                current_i = (button.Location.X - 200) / 50;
                                current_j = button.Location.Y / 50;

                                switch (gameboard[current_i, current_j])
                                {
                                case 2:
                                case 20: current = 't'; break;

                                case 1:
                                case 10: current = 'c'; break;

                                case 0: current = 'n'; break;
                                }

                                //Trump's step
                                if (turn == 't' && trumps.Step(turn, previous, current, current_i, current_j, previous_i, previous_j) && gameboard[previous_i, previous_j] == 2)
                                {
                                    point2 = trumps.Huff(gameboard, 2, 1);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 'c';
                                        buttons[previous_i, previous_j].BackgroundImage = null;

                                        if (current_j == 0 && gameboard[previous_i, previous_j] == 2)
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 20;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                        }
                                        else
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 2;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.trump1));
                                        }
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 'c';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                }

                                //Trump's eat
                                if (previous == 't' && trumps.Eating(current, current_i, current_j, previous_i, previous_j, gameboard, 1) && gameboard[previous_i, previous_j] == 2)
                                {
                                    turn = 'c';
                                    buttons[previous_i, previous_j].BackgroundImage = null;

                                    if (current_j == 0 && gameboard[previous_i, previous_j] == 2)
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 20;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                    }
                                    else
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 2;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.trump1));
                                    }
                                    gameboard[(previous_i + current_i) / 2, (previous_j + current_j) / 2] = 0;
                                    buttons[(previous_i + current_i) / 2, (previous_j + current_j) / 2].BackgroundImage = null;
                                }

                                //Trump's dama step
                                if (turn == 't' && previous == 't' && current == 'n' && trumps.Clean(current_i, current_j, previous_i, previous_j, gameboard) && gameboard[previous_i, previous_j] == 20)
                                {
                                    point2 = trumps.Huff(gameboard, 2, 1);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 'c';
                                        buttons[previous_i, previous_j].BackgroundImage = null;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 20;
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 'c';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                }

                                //Trump dama eat
                                if (previous == 't' && current == 'n' && trumps.DamaEat(current_i, current_j, previous_i, previous_j, gameboard, 2, 1) && gameboard[previous_i, previous_j] == 20)
                                {
                                    turn = 'c';
                                    trumps.RemoveCoin(gameboard, ref buttons);
                                    gameboard[previous_i, previous_j] = 0;
                                    gameboard[current_i, current_j]   = 20;
                                    buttons[previous_i, previous_j].BackgroundImage = null;
                                    button.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.damatrump));
                                }

                                //Clinton's step
                                if (turn == 'c' && clintons.Step(turn, previous, current, current_i, current_j, previous_i, previous_j) && gameboard[previous_i, previous_j] == 1)
                                {
                                    point2 = clintons.Huff(gameboard, 1, 2);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 't';
                                        buttons[previous_i, previous_j].BackgroundImage = null;

                                        if (current_j == 7 && gameboard[previous_i, previous_j] == 1)
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 10;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                                        }
                                        else
                                        {
                                            gameboard[previous_i, previous_j] = 0;
                                            gameboard[current_i, current_j]   = 1;
                                            button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.clinton));
                                        }
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 't';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                }

                                //Clintons's eat
                                if (previous == 'c' && clintons.Eating(current, current_i, current_j, previous_i, previous_j, gameboard, 2) && gameboard[previous_i, previous_j] == 1)
                                {
                                    turn = 't';
                                    buttons[previous_i, previous_j].BackgroundImage = null;

                                    if (current_j == 7 && gameboard[previous_i, previous_j] == 1)
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 10;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                                    }
                                    else
                                    {
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 1;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.clinton));
                                    }
                                    gameboard[(previous_i + current_i) / 2, (previous_j + current_j) / 2] = 0;
                                    buttons[(previous_i + current_i) / 2, (previous_j + current_j) / 2].BackgroundImage = null;
                                }

                                //Clinton Dama step
                                if (turn == 'c' && previous == 'c' && current == 'n' && clintons.Clean(current_i, current_j, previous_i, previous_j, gameboard) && gameboard[previous_i, previous_j] == 10)
                                {
                                    point2 = clintons.Huff(gameboard, 1, 2);
                                    if (point2[0, 0] == -1 && point2[0, 1] == -1)
                                    {
                                        turn = 't';
                                        buttons[previous_i, previous_j].BackgroundImage = null;
                                        gameboard[previous_i, previous_j] = 0;
                                        gameboard[current_i, current_j]   = 10;
                                        button.BackgroundImage            = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                                    }
                                    else
                                    {
                                        int x = point2[0, 0];
                                        int y = point2[0, 1];
                                        turn = 't';
                                        buttons[x, y].BackgroundImage = null;
                                        gameboard[x, y] = 0;
                                    }
                                }

                                //Clinton Dama eat
                                if (previous == 'c' && current == 'n' && clintons.DamaEat(current_i, current_j, previous_i, previous_j, gameboard, 1, 2) && gameboard[previous_i, previous_j] == 10)
                                {
                                    turn = 't';
                                    clintons.RemoveCoin(gameboard, ref buttons);
                                    gameboard[previous_i, previous_j] = 0;
                                    gameboard[current_i, current_j]   = 10;
                                    buttons[previous_i, previous_j].BackgroundImage = null;
                                    button.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.damaclinton));
                                }


                                previous   = current;
                                previous_i = current_i;
                                previous_j = current_j;
                                Calculations.CoinsCount(gameboard, out count1, out count2);
                                if (count2 == 0)
                                {
                                    RemoveButtons(buttons);
                                    button1.Show();
                                    choosestart.Show();
                                    startCombo.Show();
                                    MessageBox.Show("Congratulations! The winner is Hillary Clinton.");
                                }
                                else
                                if (count1 == 0)
                                {
                                    RemoveButtons(buttons);
                                    button1.Show();
                                    choosestart.Show();
                                    startCombo.Show();
                                    MessageBox.Show("Congratulations! The winner is Donald Trump.");
                                }
                            }
                        };
                        button.MouseDown += (s, ea) => { button.FlatAppearance.BorderColor = Color.Silver; };
                        button.MouseUp   += (s, ea) => { button.FlatAppearance.BorderColor = Color.Black; };
                    }
                    buttons[i, j] = button;
                    this.Controls.Add(button);
                }
            }
        }