拼图游戏

1.首先布置好界面。

标题栏,菜单栏,状态栏,以及放置图片框的panel。

2.定义图片框类

    /// 
    /// 图片框类,包含虚拟XY位置
    /// 
    public class PictureBoxEx : PictureBox
    {
        private Point _xy ;
        private Point _inxy;

        /// 
        /// 初始XY位置
        /// 
        public Point inxy
        {
            get { return _inxy; }
           // set { _inxy = value; }
        }

        /// 
        /// 当前XY位置
        /// 
        public Point xy
        {
            get { return _xy; }
            set { _xy = value; }
        }

        public PictureBoxEx(Point txy)
            : base()
        {
            _inxy=_xy = txy;
        }

        /// 
        /// 判断是否回到初始位置
        /// 
        /// true:回到初始位置
        public bool judge() {
            return (_xy.X == _inxy.X) && (_xy.Y == _inxy.Y);
        }
    }

每个分割的图片都是PictureBoxEx对象,保存在list或者矩阵中。

3.载入图片,随机乱序排布

        /// 
        /// 生成PictureBoxEx ,排布在panel上
        /// 
        /// 原图
        /// 是否打乱显示
        private void initPbx(Image img, bool random)
        {
            pbxs.Clear();//清除图片框列表
            panelMain.Controls.Clear();//清除panel包含的控件

            byte[] rands = new byte[column*row] ; //保存随机乱序一维数组
            if (random)
            {
                try
                {
                     generateDisorderArray(ref rands);
                }
                catch
                {
                    MessageBox.Show("生成乱序错误!");
                }
            }
       
            srcBmp = new Bitmap(srcImg);
            Size rbmpSize = new System.Drawing.Size(srcBmp.Width / column, srcBmp.Height / row);
            int bw = srcBmp.Width / column, bh = srcBmp.Height / row;
            int rw = panelMain.ClientSize.Width / column, rh = panelMain.ClientSize.Height / row;
            int cnt = 0;
            for (int i = 0; i < column; i++)//行
            {
                pbxs.Add( new  List() );
                for (int j = 0; j < row; j++)//列
                { 
                    PictureBoxEx pb = new PictureBoxEx( new Point(i,j));
                    pb.Size = new System.Drawing.Size(rw,rh);
                    pb.BorderStyle = BorderStyle.None;
                    pb.Dock = DockStyle.None;
                    pb.BackgroundImageLayout = ImageLayout.Stretch;
                    panelMain.Controls.Add(pb);
                    pb.Location = new Point(rw*i,rh*j);
                    pbxs[i].Add(pb);
                  
                    Bitmap tbmp = new Bitmap(rw, rh);
                    Graphics g = Graphics.FromImage(tbmp);
                    Point bmppt;
                    if (random)
                    {
                        //一维转二维
                        int ri = rands[cnt] % column;
                        int rj = (rands[cnt] / column) % row;
                        bmppt = new Point(bw * ri, bh * rj);
                        pb.xy = new Point(ri, rj);
                        cnt++;
                    }
                    else
                    {
                        bmppt = new Point(bw * i, bh * j);
                    }
                    g.DrawImage(srcBmp, pb.ClientRectangle, new Rectangle( bmppt , rbmpSize), GraphicsUnit.Pixel);
                    g.DrawRectangle(  Pens.Red ,pb.ClientRectangle);
                    if (!random)
                    {
                        g.DrawString(pb.xy.ToString(), new Font(System.Drawing.SystemFonts.DefaultFont.Name, 10),new SolidBrush(Color.Red), new PointF(1.0f, 1.0f));
                    }
                    g.Dispose();
                    pb.BackgroundImage = tbmp;
                    //为实现拖动图片,加入3个鼠标事件函数
                    pb.MouseDown += new MouseEventHandler(pb_MouseDown);
                    pb.MouseMove += new MouseEventHandler(pb_MouseMove);
                    pb.MouseUp += new MouseEventHandler(pb_MouseUp);

                    if (random)
                    {
                        isStartGame = true;
                        lab_canplay.BackColor = Color.Green;
                    }
                    else {
                        isStartGame = false;
                        lab_canplay.BackColor = Color.Red;
                    }
                }
            }
        }

生成随机乱序数组函数:单纯的随机数组是不行的,因为随机不一定乱序。

        /// 
        /// 生成随机乱序数组,洗牌 FisherYates Shuffle
        /// 随机不一定无序,所以还需要检查无序的度
        /// 
        public void generateDisorderArray(ref byte[] arr )
        {
            byte len = (byte)arr.Length;
            if (len == 1U)
            {
                arr[0] = 0;
            }
            else
            if (len == 2U)
            {
                arr[0] = 1; arr[1] = 0;
            }
            else
            {
                for (byte i = 0; i < len; i++)
                {
                    arr[i] = i;
                }

                byte[] rands = new byte[len * 4];
                rng.GetBytes(rands);
                
                for (int j = len-1; j >=0; j--)
                {
                    int idx = (int)(BitConverter.ToUInt32(rands, j * 4) % (byte)(j + 1));
                    SwapValue(ref arr[idx], ref arr[j]);
                }
                //下面简单检查无序度
                List defs = new  List();
                for (byte a=0; a < len;a++ )
                {
                    if (a == arr[a]) defs.Add(a); //记录位置
                }
                //有一半在原位置,则不够无序,首尾换位
                if ( defs.Count > 1 && defs.Count >= (len/2) ) 
                {
                    for (byte i = 0; i < defs.Count/2; i++)
                    {
                        SwapValue(ref arr[defs[i]], ref arr[defs[defs.Count - 1 - i]]);
                    }
                }
            }
        }

        /// 
        /// 交换数值
        /// 
        /// 
        /// 
        /// 
        public static void SwapValue(ref T a, ref T b)
        {
            T temp=a ;
            a=b ;
            b=temp ;
        }

 

4.图片拖动交换

        /// 
        /// 交换图片,位置信息
        /// 
        /// 源位置
        /// 目的位置
        private void SwapPbx(Point srcXY, Point dstXY)
        {
            PictureBoxEx pba = pbxs[srcXY.X ][ srcXY.Y];
            PictureBoxEx pbb = pbxs[dstXY.X ][ dstXY.Y];
            if (srcXY.X == dstXY.X && srcXY.Y == dstXY.Y)
            {
                pba.Location = startloc;
            }
            else
            {
                pba.Location = startloc;
                var img = pba.BackgroundImage;
                pba.BackgroundImage =  pbb.BackgroundImage ;
                pbb.BackgroundImage = img;

                var temp = pba.xy;
                pba.xy = pbb.xy;
                pbb.xy = temp;
            }
        }

        /// 
        /// 像素点位置转化为虚拟XY坐标
        /// 
        /// 像素点位置
        /// 所在的范围
        /// 虚拟XY坐标
        private Point PointToXY(Point pt, Size sz)
        {
            Size s = sz;
            Point p = pt;
            int rw = s.Width / column;
            int rh = s.Height / row;
            return new Point(p.X / rw, p.Y / rh);
        }

三个鼠标事件函数

        private void pb_MouseUp(object sender, MouseEventArgs e)
        {
            if (isDrag)
            {
                isDrag = false;
                Point upxy = PointToXY(((Control)sender).Parent.PointToClient(Control.MousePosition), ((Control)sender).Parent.Size);
                SwapPbx(startxy, upxy);
                gameSteps++;
                toolStripLab_Step.Text = "步数:" + gameSteps;
                {
                    if (judgeResult(pbxs))//拼图OK
                    {
                        
                        toolStripLab_Tip.Text = "完成拼图";
                        DialogResult res = new FormOK( "完成拼图!\r使用步数:" + gameSteps ).ShowDialog();
                        
                        if (res ==  DialogResult.Abort)
                        {
                            this.Close();
                        }
                        else if (res ==  DialogResult.OK)
                        {
                            if (srcImg != null)
                            {
                                initPbx(srcImg, true);
                                isStartGame = true;
                                
                            }
                        }
                        enableNumud(true);
                        gameSteps = 0;
                        
                    }
                }
            } 
        }

        private void pb_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left && isDrag)
            {
                Point mousePos = Control.MousePosition;
                mousePos.Offset(mouse_offset.X, mouse_offset.Y);
                ((Control)sender).Location = ((Control)sender).Parent.PointToClient(mousePos);
            }
        }

        private void pb_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left && pbxs.Count > 0 && isStartGame )
            {
                isDrag = true;
                enableNumud( false );
                startloc = ((Control)sender).Location;
                mouse_offset = new Point(-e.X, -e.Y);
                ((Control)sender).BringToFront();

                Point pp = ((Control)sender).Parent.PointToClient(Control.MousePosition);
                startxy = PointToXY(pp, ((Control)sender).Parent.Size);
            }
        }

5.判断是否成功

        /// 
        /// 判断是否成功
        /// 
        /// 图片矩阵
        /// 是否归位了
        private bool judgeResult(List> pbxs)
        {
            bool res = true;
            foreach (var i in pbxs)
            {
                foreach (var j in i)
                {
                    if (!j.judge()) { res = false; return res; }
                }
            }
            return res;
        }

 

拼图游戏_第1张图片拼图游戏_第2张图片拼图游戏_第3张图片拼图游戏_第4张图片

 

你可能感兴趣的:(C#)