欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现数字华容道游戏

程序员文章站 2022-07-03 13:24:58
本文实例为大家分享了c#实现数字华容道游戏的具体代码,供大家参考,具体内容如下代码如下:using system;using system.collections.generic;using syst...

本文实例为大家分享了c#实现数字华容道游戏的具体代码,供大家参考,具体内容如下

C#实现数字华容道游戏

代码如下:

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.linq;
using system.text;
using system.threading.tasks;
using system.windows.forms;


namespace windowsformsapp6
{undefined
    public partial class form1 : form
    {undefined
        public form1()
        {undefined
            initializecomponent();
        }


        const int n = 4;
        button[,] buttons = new button[n, n];


        private void form1_load(object sender, eventargs e)
        {undefined
            //产生所有按钮
            generateallbuttons();
        }


        private void button1_click(object sender, eventargs e)
        {undefined
            shuffle();
        }


        //打乱顺序
        void shuffle()
        {undefined
            //多次随机交换两个按钮
            random rnd = new random();
            for (int i=0;i<100;i++)
            {undefined
                int a = rnd.next(n);
                int b = rnd.next(n);
                int c = rnd.next(n);
                int d = rnd.next(n);
                swap(buttons[a, b], buttons[c, d]);
            }
        }


        //生成所有按钮
        void generateallbuttons()
        {undefined
            int x0 = 100, y0 = 10, w = 45, d = 50;
            for(int r=0;r<n;r++)
                for(int c = 0; c < n; c++)
                {undefined
                    int num = r * n + c;
                    button btn = new button();
                    btn.text = (num + 1).tostring();
                    btn.top = y0 + r * d;
                    btn.left = x0 + c * d;
                    btn.width = w;
                    btn.height = w;
                    btn.visible = true;
                    btn.tag = r * n + c;//这个数据用来表示它所在的行列位置
                    //注册事件
                    btn.click += new eventhandler(btn_click);
                    buttons[r, c] = btn;
                    this.controls.add(btn);
                }
            buttons[n - 1, n - 1].visible = false;//最后一个不可见
        }


        //交换两个按钮
        void swap(button btna,button btnb)
        {undefined
            string t = btna.text;
            btna.text = btnb.text;
            btnb.text = t;


            bool v = btna.visible;
            btna.visible = btnb.visible;
            btnb.visible = v;
        }


        //按钮点击事件处理
        void btn_click(object sender, eventargs e)
        {undefined
            button btn = sender as button;//当前点中按钮
            button blank= findhiddenbutton();//空白按钮
            //判断与空白按钮是否相邻,如果是,交换
            if (isneighbor(btn, blank))
            {undefined
                swap(btn, blank);
                blank.focus();
            }


            //判断是否完成了
            if (resultisok())
            {undefined
                messagebox.show("ok");
            }
        }


        //查找要隐藏的按钮
        button findhiddenbutton()
        {undefined
            for (int r = 0; r < n; r++)
                for (int c = 0; c < n; c++)
                {undefined
                    if (!buttons[r, c].visible)
                    {undefined
                        return buttons[r, c];
                    }
                }
            return null;
        }


        //判断是否相邻
        bool isneighbor(button btna, button btnb)
        {undefined
            int a = (int)btna.tag; //tag中记录是行列位置
            int b = (int)btnb.tag;
            int r1 = a / n, c1 = a % n;
            int r2 = b / n, c2 = b % n;


            if (r1 == r2 && (c1 == c2 - 1 || c1 == c2 + 1) //左右相邻
                || c1 == c2 && (r1 == r2 - 1 || r1 == r2 + 1))
                return true;
            return false;
        }


        //检查是否完成
        bool resultisok()
        {undefined
            for (int r = 0; r < n; r++)
                for (int c = 0; c < n; c++)
                {undefined
                    if (buttons[r, c].text != (r * n + c + 1).tostring())
                    {undefined
                        return false;
                    }
                }
            return true;
        }
    }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。