Example #1
0
        //Constructors
        public Grid(int Rows, int Columns)
        {
            mRows      = Rows;
            mColumns   = Columns;
            mGrid      = new Sqaure[mRows, mColumns];
            mColorGrid = new Sqaure[mRows, mColumns];

            //create each cell in the grid
            mSize = 85;
            for (int i = 0; i < mRows; i++)
            {
                for (int j = 0; j < mColumns; j++)
                {
                    mGrid[i, j] = new Sqaure(mSize, Color.White, Color.Black);
                    if (i == 0 && j < 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Red, Color.Black);
                    }
                    else if (i == 0 && j >= 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Yellow, Color.Black);
                    }
                    else if (i == 1 && j < 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Green, Color.Black);
                    }
                    else if (i == 1 && j >= 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Black, Color.Black);
                    }
                    else if (i == 2 && j < 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Aqua, Color.Black);
                    }
                    else if (i == 2 && j >= 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.FromArgb(124, 37, 41), Color.Black); //Maroon
                    }
                    else if (i == 3 && j < 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Orange, Color.Black);
                    }
                    else if (i == 3 && j >= 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Violet, Color.Black);
                    }
                    else if (i == 4 && j < 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Blue, Color.Black);
                    }
                    else if (i == 4 && j >= 2)
                    {
                        mColorGrid[i, j] = new Sqaure(mSize, Color.Brown, Color.Black);
                    }
                }
            }
        }
Example #2
0
        public void Shuffle()
        {
            Random Rand = new Random();

            for (int i = 0; i < mRows; i++)
            {
                for (int j = 0; j < mColumns; j++)
                {
                    int    Rndi  = Rand.Next(mRows - 1);
                    int    Rndj  = Rand.Next(mColumns - 1);
                    Sqaure mCopy = mColorGrid[i, j];
                    mColorGrid[i, j]       = mColorGrid[Rndi, Rndj];
                    mColorGrid[Rndi, Rndj] = mCopy;
                }
            }
        }
Example #3
0
        private void Form1_MouseClick(object sender, MouseEventArgs e)
        {
            int X = e.X;
            int Y = e.Y;

            if (X < 341 && Y < 426)
            {
                int Column = X / 85;
                int Row    = Y / 85;


                //oGrid.GetSquare(Row, Column).BackColour = Color.Red;
                if (Turns == 2 && oGrid.GetSquare(Row, Column).BackColour != Color.Gray)
                {
                    lblContinue.Visible = false;
                    Square1             = oGrid.GetColorSquare(Row, Column);
                    Square1.GetPosition(Row, Column);
                    oGrid.GetSquare(Row, Column).BackColour = Square1.BackColour;
                    Turns--;
                    lblTurns.Text = "Turns Left: " + Turns;
                }
                else if (Turns == 1 && oGrid.GetSquare(Row, Column).BackColour != Color.Gray)
                {
                    Square2 = oGrid.GetColorSquare(Row, Column);
                    Square2.GetPosition(Row, Column);
                    oGrid.GetSquare(Row, Column).BackColour = Square2.BackColour;
                    Turns--;
                    lblTurns.Text = "Turn Left: " + Turns;
                }
                else if (Turns == 0)
                {
                    if (Square1.BackColour != Square2.BackColour) // if the colors do not match
                    {
                        oGrid.GetSquare(Square1.X, Square1.Y).BackColour = Color.White;
                        oGrid.GetSquare(Square2.X, Square2.Y).BackColour = Color.White;
                        lblTurns.Text       = Turns.ToString();
                        lblContinue.Visible = true;
                        lblWhichPlayer.Text = "Player Turn: Player 1";
                        lblWhichPlayer.Text = "Player Turn: Player 2";
                    }
                    if (oGrid.GetSquare(Square1.X, Square1.Y) != oGrid.GetSquare(Square2.X, Square2.Y))
                    {
                        if (IsPlayer1 == true)
                        {
                            if (Square1.BackColour == Square2.BackColour) //If colors match
                            {
                                if (Square1.BackColour == Color.Red && Square2.BackColour == Color.Red)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Blue && Square2.BackColour == Color.Blue)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Yellow && Square2.BackColour == Color.Yellow)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Green && Square2.BackColour == Color.Green)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Black && Square2.BackColour == Color.Black)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.FromArgb(124, 37, 41) && Square2.BackColour == Color.FromArgb(124, 37, 41)) // Maroon
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Brown && Square2.BackColour == Color.Brown)
                                {
                                    Player1Score++;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Orange && Square2.BackColour == Color.Orange)
                                {
                                    Player1Score   += 2;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Aqua && Square2.BackColour == Color.Aqua)
                                {
                                    Player1Score   += 5;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                else if (Square1.BackColour == Color.Violet && Square2.BackColour == Color.Violet)
                                {
                                    Player1Score   += 3;
                                    lblP1Score.Text = "Player 1 score: " + Player1Score;
                                }
                                //do this in the end
                                oGrid.GetSquare(Square1.X, Square1.Y).BackColour = Color.Gray;
                                oGrid.GetSquare(Square2.X, Square2.Y).BackColour = Color.Gray;
                                Turns = 2;
                                lblWhichPlayer.Text = "Player Turn: Player 1";
                            }
                            else
                            {
                                lblWhichPlayer.Text = "Player Turn: Player 2";
                                IsPlayer1           = false;
                                Turns = 2;
                            }
                            oGrid.CheckFinish();
                        }

                        else if (IsPlayer1 == false)
                        {
                            if (Square1.BackColour == Square2.BackColour) //If colors match
                            {
                                if (Square1.BackColour == Color.Red && Square2.BackColour == Color.Red)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Blue && Square2.BackColour == Color.Blue)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Yellow && Square2.BackColour == Color.Yellow)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Green && Square2.BackColour == Color.Green)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Black && Square2.BackColour == Color.Black)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.FromArgb(124, 37, 41) && Square2.BackColour == Color.FromArgb(124, 37, 41)) // Maroon
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Brown && Square2.BackColour == Color.Brown)
                                {
                                    Player2Score++;
                                    lblP2Score.Text = "Player 2 score:  " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Orange && Square2.BackColour == Color.Orange)
                                {
                                    Player2Score   += 2;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Aqua && Square2.BackColour == Color.Aqua)
                                {
                                    Player2Score   += 5;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                else if (Square1.BackColour == Color.Violet && Square2.BackColour == Color.Violet)
                                {
                                    Player2Score   += 3;
                                    lblP2Score.Text = "Player 2 score: " + Player2Score;
                                }
                                //do this in the end
                                oGrid.GetSquare(Square1.X, Square1.Y).BackColour = Color.Gray;
                                oGrid.GetSquare(Square2.X, Square2.Y).BackColour = Color.Gray;
                                oGrid.CheckFinish();
                                Turns = 2;
                                lblWhichPlayer.Text = "Player Turn: Player 2";
                            }
                            else
                            {
                                IsPlayer1           = true;
                                Turns               = 2;
                                lblWhichPlayer.Text = "Player Turn: Player 1";
                            }



                            if (oGrid.mGameFinish == true)
                            {
                                if (Player1Score > Player2Score)
                                {
                                    MessageBox.Show("PLAYER 1 HAS WON");
                                }
                                else if (Player1Score < Player2Score)
                                {
                                    MessageBox.Show("PLAYER 2 HAS WON");
                                }
                            }
                            if (oGrid.mGameFinish == true)
                            {
                                lblReset.Visible = true;
                            }
                        }
                    }
                    else if (oGrid.GetSquare(Square1.X, Square1.Y) == oGrid.GetSquare(Square2.X, Square2.Y))
                    {
                        oGrid.GetSquare(Square1.X, Square1.Y).BackColour = Color.White;
                        oGrid.GetSquare(Square2.X, Square2.Y).BackColour = Color.White;
                        Turns = 2;
                    }
                }
                this.Refresh();
            }
        }