Ejemplo n.º 1
0
        /****************************************************************************************
         * 機能
         *  順番をパスしてコンピュータに手を譲る
         ***************************************************************************************/
        private void PassBtn_Click(object sender, EventArgs e)
        {
            fTeban = (fTeban + 1) % 2;
            CControlGame control = new CControlGame();

            if (!control.checkAllAbletoReverse(sell_status, fTeban))
            {
                MessageBox.Show("パスします!");
                fTeban = (fTeban + 1) % 2;
                return;
            }
            //コンピュータがさす
            this.PutStoneComputer();
            fTeban = (fTeban + 1) % 2;
        }
Ejemplo n.º 2
0
        //クリックされた場所を検知して、対象ないであれば、石をひっくり返す
        private void OseroForm_MouseClick(object sender, MouseEventArgs e)
        {
            CreverseStone stone = new CreverseStone(this);

            for (int i = 0; i < CONST.MATH_NUM; i++)
            {
                for (int j = 0; j < CONST.MATH_NUM; j++)
                {
                    //MessageBox.Show(i.ToString() + "," + j.ToString());
                    if (CONST.FIRST_HIGHT + CONST.ONE_BLOCK_HEIGHT * i < e.Y &&
                        CONST.FIRST_HIGHT + CONST.ONE_BLOCK_HEIGHT * i + CONST.ONE_BLOCK_HEIGHT > e.Y &&
                        CONST.FIRST_WIDTH + CONST.ONE_BLOCK_WIDTH * j < e.X &&
                        CONST.FIRST_WIDTH + CONST.ONE_BLOCK_WIDTH * j + CONST.ONE_BLOCK_WIDTH > e.X)
                    {
                        //石が置けるかどうか判定する
                        CcheckabletoPut able            = new CcheckabletoPut();
                        int[]           array_count_num = new int[CONST.DIRECTION_NUMBER];

                        for (int k = 0; k < CONST.DIRECTION_NUMBER; k++)
                        {
                            array_count_num[k] = 0;
                        }
                        Boolean[] arrayflag = able.CountAbletoPut(i, j, fTeban, sell_status, array_count_num);

                        //裏返せるかどうか判定するして、裏返せるなら裏返す
                        if (able.CheckAbleToPut(arrayflag))
                        {
                            //石を裏返す
                            stone = new CreverseStone(this);
                            if (fTeban == 1)
                            {
                                this.DrawCircle(j, i, CONST.BLACK);
                                sell_status[i, j] = CONST.BLACK;
                            }
                            else
                            {
                                this.DrawCircle(j, i, CONST.WHITE);
                                sell_status[i, j] = CONST.WHITE;
                            }
                            stone.ReverseStone(j, i, fTeban, sell_status, arrayflag, array_count_num);
                        }
                        else
                        {
                            return;
                        }
                    }
                }
            }
            fTeban = (fTeban + 1) % 2;
            CControlGame control = new CControlGame();

            if (!control.checkAllAbletoReverse(sell_status, fTeban))
            {
                MessageBox.Show("パスします!");
                fTeban = (fTeban + 1) % 2;
                return;
            }
            //コンピュータが打つ
            PutStoneComputer();
            fTeban = (fTeban + 1) % 2;
        }