(游戏及源代码)C#拼图游戏

[+]
  1. 1创建WindowForm应用程序
  2. 动态加载图片
  3. 图块类及图块的特效

    大家好,这次我要为大家带来的是一个用C#写的WinForm游戏,名字叫做拼图游戏。拼图游戏想必大家肯定玩过,玩法我就不赘述了。

首先向大家展示一下运行效果图吧:

 

 

 

    1:创建WindowForm应用程序?

   打开vs2010,创建一个Window应用程序了。那么我们就创建一个应用程序,并命名为: LilacFlower。对于一个窗体应用程序,vs2010在图形界面对控件的布局以及属性事件的设置可以说是当今世界上最好的软件了。那么我们从工具箱里面拖动控件放到窗体界面上,效果图如下:

具体参照Form1.Designer.cs文件:

  1. namespace LilacFlower  
  2. {  
  3.     partial class Form1  
  4.     {  
  5.         /// <summary>   
  6.         ///    
  7.         /// </summary>   
  8.         private System.ComponentModel.IContainer components = null;  
  9.   
  10.         /// <summary>   
  11.         ///    
  12.         /// </summary>   
  13.         /// <param name="disposing"></param>   
  14.         protected override void Dispose(bool disposing)  
  15.         {  
  16.             if (disposing && (components != null))  
  17.             {  
  18.                 components.Dispose();  
  19.             }  
  20.             base.Dispose(disposing);  
  21.         }  
  22.  
  23.         #region Windows フォーム デザイナーで生成されたコード   
  24.   
  25.         /// <summary>   
  26.         ///    
  27.         ///    
  28.         /// </summary>   
  29.         private void InitializeComponent()  
  30.         {  
  31.             this.mainPanel = new System.Windows.Forms.Panel();  
  32.             this.modePicture = new System.Windows.Forms.PictureBox();  
  33.             this.difficultySelection = new System.Windows.Forms.ComboBox();  
  34.             this.txtLabel = new System.Windows.Forms.Label();  
  35.             this.label1 = new System.Windows.Forms.Label();  
  36.             this.startbtn = new System.Windows.Forms.Button();  
  37.             this.addPicturebtn = new System.Windows.Forms.Button();  
  38.             this.pictureShowListBox = new System.Windows.Forms.ListBox();  
  39.             ((System.ComponentModel.ISupportInitialize)(this.modePicture)).BeginInit();  
  40.             this.SuspendLayout();  
  41.             //    
  42.             // mainPanel   
  43.             //    
  44.             this.mainPanel.Location = new System.Drawing.Point(151, 14);  
  45.             this.mainPanel.Name = "mainPanel";  
  46.             this.mainPanel.Size = new System.Drawing.Size(500, 500);  
  47.             this.mainPanel.TabIndex = 0;  
  48.             //    
  49.             // modePicture   
  50.             //    
  51.             this.modePicture.Location = new System.Drawing.Point(12, 12);  
  52.             this.modePicture.Name = "modePicture";  
  53.             this.modePicture.Size = new System.Drawing.Size(120, 120);  
  54.             this.modePicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;  
  55.             this.modePicture.TabIndex = 0;  
  56.             this.modePicture.TabStop = false;  
  57.             this.modePicture.Click += new System.EventHandler(this.modePicture_Click);  
  58.             //    
  59.             // difficultySelection   
  60.             //    
  61.             this.difficultySelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;  
  62.             this.difficultySelection.FormattingEnabled = true;  
  63.             this.difficultySelection.Items.AddRange(new object[] {  
  64.             "简单(3*3)",  
  65.             "中等(5*5)",  
  66.             "困难(7*7)"});  
  67.             this.difficultySelection.Location = new System.Drawing.Point(45, 160);  
  68.             this.difficultySelection.Name = "difficultySelection";  
  69.             this.difficultySelection.Size = new System.Drawing.Size(88, 20);  
  70.             this.difficultySelection.TabIndex = 0;  
  71.             //    
  72.             // txtLabel   
  73.             //    
  74.             this.txtLabel.AutoSize = true;  
  75.             this.txtLabel.Location = new System.Drawing.Point(10, 163);  
  76.             this.txtLabel.Name = "txtLabel";  
  77.             this.txtLabel.Size = new System.Drawing.Size(29, 12);  
  78.             this.txtLabel.TabIndex = 0;  
  79.             this.txtLabel.Text = "难度";  
  80.             //    
  81.             // label1   
  82.             //    
  83.             this.label1.AutoSize = true;  
  84.             this.label1.Location = new System.Drawing.Point(12, 197);  
  85.             this.label1.Name = "label1";  
  86.             this.label1.Size = new System.Drawing.Size(59, 12);  
  87.             this.label1.TabIndex = 0;  
  88.             this.label1.Text = "图片选择:";  
  89.             //    
  90.             // startbtn   
  91.             //    
  92.             this.startbtn.Location = new System.Drawing.Point(31, 474);  
  93.             this.startbtn.Name = "startbtn";  
  94.             this.startbtn.Size = new System.Drawing.Size(75, 23);  
  95.             this.startbtn.TabIndex = 0;  
  96.             this.startbtn.Text = "开始";  
  97.             this.startbtn.UseVisualStyleBackColor = true;  
  98.             this.startbtn.Click += new System.EventHandler(this.startbtn_Click);  
  99.             //    
  100.             // addPicturebtn   
  101.             //    
  102.             this.addPicturebtn.Location = new System.Drawing.Point(31, 429);  
  103.             this.addPicturebtn.Name = "addPicturebtn";  
  104.             this.addPicturebtn.Size = new System.Drawing.Size(75, 23);  
  105.             this.addPicturebtn.TabIndex = 0;  
  106.             this.addPicturebtn.Text = "添加图片";  
  107.             this.addPicturebtn.UseVisualStyleBackColor = true;  
  108.             this.addPicturebtn.Click += new System.EventHandler(this.addPicturebtn_Click);  
  109.             //    
  110.             // pictureShowListBox   
  111.             //    
  112.             this.pictureShowListBox.FormattingEnabled = true;  
  113.             this.pictureShowListBox.ItemHeight = 12;  
  114.             this.pictureShowListBox.Location = new System.Drawing.Point(14, 212);  
  115.             this.pictureShowListBox.Name = "pictureShowListBox";  
  116.             this.pictureShowListBox.Size = new System.Drawing.Size(120, 196);  
  117.             this.pictureShowListBox.TabIndex = 0;  
  118.             this.pictureShowListBox.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);  
  119.             //    
  120.             // Form1   
  121.             //    
  122.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);  
  123.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;  
  124.             this.ClientSize = new System.Drawing.Size(678, 525);  
  125.             this.Controls.Add(this.pictureShowListBox);  
  126.             this.Controls.Add(this.addPicturebtn);  
  127.             this.Controls.Add(this.startbtn);  
  128.             this.Controls.Add(this.label1);  
  129.             this.Controls.Add(this.txtLabel);  
  130.             this.Controls.Add(this.difficultySelection);  
  131.             this.Controls.Add(this.modePicture);  
  132.             this.Controls.Add(this.mainPanel);  
  133.             this.Name = "Form1";  
  134.             this.Text = "Form1";  
  135.             ((System.ComponentModel.ISupportInitialize)(this.modePicture)).EndInit();  
  136.             this.ResumeLayout(false);  
  137.             this.PerformLayout();  
  138.   
  139.         }  
  140.  
  141.         #endregion   
  142.   
  143.         private System.Windows.Forms.Panel mainPanel;  
  144.         private System.Windows.Forms.PictureBox modePicture;  
  145.         private System.Windows.Forms.ComboBox difficultySelection;  
  146.         private System.Windows.Forms.Label txtLabel;  
  147.         private System.Windows.Forms.Label label1;  
  148.         private System.Windows.Forms.Button startbtn;  
  149.         private System.Windows.Forms.Button addPicturebtn;  
  150.         private System.Windows.Forms.ListBox pictureShowListBox;  
  151.     }  
  152. }  
namespace LilacFlower
{
    partial class Form1
    {
        /// <summary>
        /// 
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 
        /// </summary>
        /// <param name="disposing"></param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows フォーム デザイナーで生成されたコード

        /// <summary>
        /// 
        /// 
        /// </summary>
        private void InitializeComponent()
        {
            this.mainPanel = new System.Windows.Forms.Panel();
            this.modePicture = new System.Windows.Forms.PictureBox();
            this.difficultySelection = new System.Windows.Forms.ComboBox();
            this.txtLabel = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.startbtn = new System.Windows.Forms.Button();
            this.addPicturebtn = new System.Windows.Forms.Button();
            this.pictureShowListBox = new System.Windows.Forms.ListBox();
            ((System.ComponentModel.ISupportInitialize)(this.modePicture)).BeginInit();
            this.SuspendLayout();
            // 
            // mainPanel
            // 
            this.mainPanel.Location = new System.Drawing.Point(151, 14);
            this.mainPanel.Name = "mainPanel";
            this.mainPanel.Size = new System.Drawing.Size(500, 500);
            this.mainPanel.TabIndex = 0;
            // 
            // modePicture
            // 
            this.modePicture.Location = new System.Drawing.Point(12, 12);
            this.modePicture.Name = "modePicture";
            this.modePicture.Size = new System.Drawing.Size(120, 120);
            this.modePicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.modePicture.TabIndex = 0;
            this.modePicture.TabStop = false;
            this.modePicture.Click += new System.EventHandler(this.modePicture_Click);
            // 
            // difficultySelection
            // 
            this.difficultySelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.difficultySelection.FormattingEnabled = true;
            this.difficultySelection.Items.AddRange(new object[] {
            "简单(3*3)",
            "中等(5*5)",
            "困难(7*7)"});
            this.difficultySelection.Location = new System.Drawing.Point(45, 160);
            this.difficultySelection.Name = "difficultySelection";
            this.difficultySelection.Size = new System.Drawing.Size(88, 20);
            this.difficultySelection.TabIndex = 0;
            // 
            // txtLabel
            // 
            this.txtLabel.AutoSize = true;
            this.txtLabel.Location = new System.Drawing.Point(10, 163);
            this.txtLabel.Name = "txtLabel";
            this.txtLabel.Size = new System.Drawing.Size(29, 12);
            this.txtLabel.TabIndex = 0;
            this.txtLabel.Text = "难度";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 197);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(59, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "图片选择:";
            // 
            // startbtn
            // 
            this.startbtn.Location = new System.Drawing.Point(31, 474);
            this.startbtn.Name = "startbtn";
            this.startbtn.Size = new System.Drawing.Size(75, 23);
            this.startbtn.TabIndex = 0;
            this.startbtn.Text = "开始";
            this.startbtn.UseVisualStyleBackColor = true;
            this.startbtn.Click += new System.EventHandler(this.startbtn_Click);
            // 
            // addPicturebtn
            // 
            this.addPicturebtn.Location = new System.Drawing.Point(31, 429);
            this.addPicturebtn.Name = "addPicturebtn";
            this.addPicturebtn.Size = new System.Drawing.Size(75, 23);
            this.addPicturebtn.TabIndex = 0;
            this.addPicturebtn.Text = "添加图片";
            this.addPicturebtn.UseVisualStyleBackColor = true;
            this.addPicturebtn.Click += new System.EventHandler(this.addPicturebtn_Click);
            // 
            // pictureShowListBox
            // 
            this.pictureShowListBox.FormattingEnabled = true;
            this.pictureShowListBox.ItemHeight = 12;
            this.pictureShowListBox.Location = new System.Drawing.Point(14, 212);
            this.pictureShowListBox.Name = "pictureShowListBox";
            this.pictureShowListBox.Size = new System.Drawing.Size(120, 196);
            this.pictureShowListBox.TabIndex = 0;
            this.pictureShowListBox.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(678, 525);
            this.Controls.Add(this.pictureShowListBox);
            this.Controls.Add(this.addPicturebtn);
            this.Controls.Add(this.startbtn);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.txtLabel);
            this.Controls.Add(this.difficultySelection);
            this.Controls.Add(this.modePicture);
            this.Controls.Add(this.mainPanel);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.modePicture)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Panel mainPanel;
        private System.Windows.Forms.PictureBox modePicture;
        private System.Windows.Forms.ComboBox difficultySelection;
        private System.Windows.Forms.Label txtLabel;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button startbtn;
        private System.Windows.Forms.Button addPicturebtn;
        private System.Windows.Forms.ListBox pictureShowListBox;
    }
}

现在窗体界面设计好了,下面该干嘛呢?对了,是设置Form的属性,为了把这些设置更好的讲解给大家,我就不在窗体设计文件中进行设置,在构造函数中设置,具体需要设置的窗体信息如下:1,窗体的名称 2,禁止拉伸窗口 3,图块所在容器背景色 4,去掉最大化按钮。具体代码如下:

  1. // 窗体相关设置   
  2. this.Text = "拼图游戏(LilacFlower)";  
  3.   
  4. // 去掉最大化按钮   
  5. this.MaximizeBox = false;  
  6.   
  7. // 禁止拉伸窗口   
  8. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;  
  9.   
  10. // 显示背景   
  11. this.mainPanel.BackColor = Color.Wheat;  
  12.   
  13. // 双缓冲绘图   
  14. this.DoubleBuffered = true;  
            // 窗体相关设置
            this.Text = "拼图游戏(LilacFlower)";

            // 去掉最大化按钮
            this.MaximizeBox = false;

            // 禁止拉伸窗口
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;

            // 显示背景
            this.mainPanel.BackColor = Color.Wheat;

            // 双缓冲绘图
            this.DoubleBuffered = true;


2:动态加载图片

    讲到图片,就不得不提System.Drawing.Bitmap对象了。这是来着MSDN的解释:

    位图由图形图像及其特性的像素数据组成。可使用许多标准格式将位图保存到文件中。GDI+ 支持下列文件格式:BMP、GIF、EXIF、JPG、PNG 和 TIFF。有关支持的格式的更多信息,请参见位图类型

可以使用Bitmap 构造函数中的一种来从文件、流和其他源创建图像,然后使用Save 方法将这些图像保存到流或文件系统中。使用Graphics 对象的DrawImage 方法,将图像绘制到屏幕上或内存中。有关使用图像文件的主题的列表,请参见使用图像、位图、图标和图元文件

    。。。

    说白了,Bitmap对象就是一张存放在内存中的一张图片,所有格式的图片在GDI+中,加载到内存当中去,就应该是Bitma对象了,其常用的2个构造函数如下:

  1. Bitmap bmp1 = new Bitmap("path");  
  2. Bitmap bmp2 = new Bitmap(100, 200);  
            Bitmap bmp1 = new Bitmap("path");
            Bitmap bmp2 = new Bitmap(100, 200);
  1. Bitmap对象可以用来作为图片显示,你也可以使用GDI+改变该图片。并且在控件中显示出来。  
Bitmap对象可以用来作为图片显示,你也可以使用GDI+改变该图片。并且在控件中显示出来。

上面那个构造函数式图片路径,可以是绝对路径也可以说相对路径。在程序中有个叫Image的目录,是专门存放图片的,该目录由应用程序在第一次运行的时候创建,并且在以后添加文件时自动添加到该目录下,如:

      ①:应用程序自动创建文件夹:

      1:目录名称使用常量:

 

  1. /// <summary>   
  2. /// 存放图片的文件目录名称   
  3. /// </summary>   
  4. private const string PicturePath = "Image";  
        /// <summary>
        /// 存放图片的文件目录名称
        /// </summary>
        private const string PicturePath = "Image";


      2:应用程序检查是否存在Image目录,不存在就创建它

  1. // 第一次运行创建Image目录   
  2. if (!Directory.Exists(PicturePath))  
  3. {  
  4.     Directory.CreateDirectory(PicturePath);  
  5. }  
            // 第一次运行创建Image目录
            if (!Directory.Exists(PicturePath))
            {
                Directory.CreateDirectory(PicturePath);
            }

      

②:Image目录下的文件一览:

 

 

③:添加图片

      我们给按钮 ‘添加图片’ 增加一个相应函数(在窗体设计界面双击该按钮即可),这样你选择的图片就会自动拷贝到Image目录中被应用程序加载了。

  1. /// <summary>   
  2. /// 增加图片   
  3. /// </summary>   
  4. /// <param name="sender"></param>   
  5. /// <param name="e"></param>   
  6. private void addPicturebtn_Click(object sender, EventArgs e)  
  7. {  
  8.     // 显示打开文件对话框   
  9.     OpenFileDialog dlg = new OpenFileDialog();  
  10.   
  11.     dlg.Filter = "jpg文件|*.jpg|png图片|*.png|gif图片|*.gif";  
  12.   
  13.     // 按下确定   
  14.     if (DialogResult.OK == dlg.ShowDialog())  
  15.     {  
  16.         try  
  17.         {  
  18.             // 把文件拷贝到 Image目录下   
  19.             File.Copy(dlg.FileName, PicturePath + "\\" + System.IO.Path.GetFileName(dlg.FileName));  
  20.   
  21.             NewPicture(PicturePath + "\\" + System.IO.Path.GetFileName(dlg.FileName));  
  22.         }  
  23.         catch (Exception ex)  
  24.         {  
  25.             // 文件拷贝失败   
  26.             MessageBox.Show("文件复制失败!" + ex.Message);  
  27.         }  
  28.     }  
  29.   
  30.     dlg.Dispose();  
  31. }  
        /// <summary>
        /// 增加图片
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addPicturebtn_Click(object sender, EventArgs e)
        {
            // 显示打开文件对话框
            OpenFileDialog dlg = new OpenFileDialog();

            dlg.Filter = "jpg文件|*.jpg|png图片|*.png|gif图片|*.gif";

            // 按下确定
            if (DialogResult.OK == dlg.ShowDialog())
            {
                try
                {
                    // 把文件拷贝到 Image目录下
                    File.Copy(dlg.FileName, PicturePath + "\\" + System.IO.Path.GetFileName(dlg.FileName));

                    NewPicture(PicturePath + "\\" + System.IO.Path.GetFileName(dlg.FileName));
                }
                catch (Exception ex)
                {
                    // 文件拷贝失败
                    MessageBox.Show("文件复制失败!" + ex.Message);
                }
            }

            dlg.Dispose();
        }

对于dlg的Filter属性,其用'|'分割,并且前面奇数位置是显示在对话框中的文字,偶数位置是前一个的目录筛选后缀名。

dlg.ShowDialog()函数将显示一个对话框并返回你点击的按钮结果。

④:增加图片成功,拷贝成功

 

解决了加载图片问题,下面就是解决图块(就是上图那些标有数字的控件)问题了。

3:图块类及图块的特效

     考虑到图块需要显示图片,并且程序要对图块的位置进行判断是否已经拼完。那么我们可以创建一个类,并且让它继承PictureBox类,因为使用PictureBox来显示图片是再好不过的控件了。

 

  1. /// <summary>   
  2. /// 图块   
  3. /// </summary>   
  4. public class PictureItem : PictureBox  
    /// <summary>
    /// 图块
    /// </summary>
    public class PictureItem : PictureBox


继承PictureBox后图块具有了PictureBox的一切特效,当能作为子类,我们需要为‘它’添加一些其它的特性,如:当鼠标移入的时候,图片框的颜色会发生变化,鼠标移出的时候图片框的颜色还原,并且当需要的时候还显示图片的位置(就是它上面的数字)。

 

  1. /// <summary>   
  2. /// 图块   
  3. /// </summary>   
  4. public class PictureItem : PictureBox  
  5. {  
  6.     private Bitmap _mouseOutBitmap;// 默认图片   
  7.     private Bitmap _mouseInBitmap; // 鼠标移入的图片   
  8.   
  9.     private Bitmap _mouseOutBitmapContainsNumber;// 包含数字的默认图片   
  10.     private Bitmap _mouseInBitmapContainsNumber;// 包含数字的鼠标移入图片   
  11.   
  12.     /// <summary>   
  13.     /// 是否显示图片数字   
  14.     /// </summary>   
  15.     private bool _showNumber;  
  16.   
  17.     public bool ShowNumber  
  18.     {  
  19.         get  
  20.         {  
  21.             return this._showNumber;  
  22.         }  
  23.         set  
  24.         {  
  25.             this._showNumber = value;  
  26.             this.PictureItem_MouseLeave(thisnew EventArgs());  
  27.         }  
  28.     }  
  29.   
  30.     /// <summary>   
  31.     /// 图块所在的位置   
  32.     /// </summary>   
  33.     public Point At  
  34.     {  
  35.         get;  
  36.         set;  
  37.     }  
  38.   
  39.     /// <summary>   
  40.     /// 图块的正确位置 用于判断图块是否在正确位置上   
  41.     /// </summary>   
  42.     public Point RightAt  
  43.     {  
  44.         protected set;  
  45.         get;  
  46.     }  
  47.   
  48.     public PictureItem()  
  49.     {  
  50.         // 鼠标移入图片方框颜色变化   
  51.         this.MouseEnter += new EventHandler(PictureItem_MouseEnter);  
  52.   
  53.         // 鼠标移出使用默认图片   
  54.         this.MouseLeave += new EventHandler(PictureItem_MouseLeave);  
  55.     }  
  56.   
  57.     /// <summary>   
  58.     /// 鼠标离开   
  59.     /// </summary>   
  60.     /// <param name="sender"></param>   
  61.     /// <param name="e"></param>   
  62.     void PictureItem_MouseLeave(object sender, EventArgs e)  
  63.     {  
  64.         if (!this._showNumber)  
  65.         {  
  66.             this.Image = this._mouseOutBitmap;  
  67.         }  
  68.         else this.Image = this._mouseOutBitmapContainsNumber;  
  69.     }  
  70.   
  71.     /// <summary>   
  72.     /// 鼠标移入   
  73.     /// </summary>   
  74.     /// <param name="sender"></param>   
  75.     /// <param name="e"></param>   
  76.     void PictureItem_MouseEnter(object sender, EventArgs e)  
  77.     {  
  78.         if (!this._showNumber)  
  79.         {  
  80.             this.Image = this._mouseInBitmap;  
  81.         }  
  82.         else this.Image = this._mouseInBitmapContainsNumber;  
  83.     }  
  84.   
  85.     /// <summary>   
  86.     /// 设置图块的图片   
  87.     /// </summary>   
  88.     /// <param name="msIn"></param>   
  89.     /// <param name="msOut"></param>   
  90.     public void SetBitmap(Bitmap msIn, Bitmap msOut, Bitmap numMsIn, Bitmap numMsOut)  
  91.     {  
  92.         this._mouseInBitmap = msIn;  
  93.         this._mouseOutBitmap = msOut;  
  94.   
  95.         this._mouseOutBitmapContainsNumber = numMsOut;  
  96.         this._mouseInBitmapContainsNumber = numMsIn;  
  97.   
  98.         this.Image = msOut;  
  99.     }  
  100.   
  101.     /// <summary>   
  102.     /// 设置图块的正确位置   
  103.     /// </summary>   
  104.     /// <param name="x"></param>   
  105.     /// <param name="y"></param>   
  106.     public void SetRightPoint(int x, int y)  
  107.     {  
  108.         this.RightAt = new Point(x, y);  
  109.     }  
  110. }  
    /// <summary>
    /// 图块
    /// </summary>
    public class PictureItem : PictureBox
    {
        private Bitmap _mouseOutBitmap;// 默认图片
        private Bitmap _mouseInBitmap; // 鼠标移入的图片

        private Bitmap _mouseOutBitmapContainsNumber;// 包含数字的默认图片
        private Bitmap _mouseInBitmapContainsNumber;// 包含数字的鼠标移入图片

        /// <summary>
        /// 是否显示图片数字
        /// </summary>
        private bool _showNumber;

        public bool ShowNumber
        {
            get
            {
                return this._showNumber;
            }
            set
            {
                this._showNumber = value;
                this.PictureItem_MouseLeave(this, new EventArgs());
            }
        }

        /// <summary>
        /// 图块所在的位置
        /// </summary>
        public Point At
        {
            get;
            set;
        }

        /// <summary>
        /// 图块的正确位置 用于判断图块是否在正确位置上
        /// </summary>
        public Point RightAt
        {
            protected set;
            get;
        }

        public PictureItem()
        {
            // 鼠标移入图片方框颜色变化
            this.MouseEnter += new EventHandler(PictureItem_MouseEnter);

            // 鼠标移出使用默认图片
            this.MouseLeave += new EventHandler(PictureItem_MouseLeave);
        }

        /// <summary>
        /// 鼠标离开
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void PictureItem_MouseLeave(object sender, EventArgs e)
        {
            if (!this._showNumber)
            {
                this.Image = this._mouseOutBitmap;
            }
            else this.Image = this._mouseOutBitmapContainsNumber;
        }

        /// <summary>
        /// 鼠标移入
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void PictureItem_MouseEnter(object sender, EventArgs e)
        {
            if (!this._showNumber)
            {
                this.Image = this._mouseInBitmap;
            }
            else this.Image = this._mouseInBitmapContainsNumber;
        }

        /// <summary>
        /// 设置图块的图片
        /// </summary>
        /// <param name="msIn"></param>
        /// <param name="msOut"></param>
        public void SetBitmap(Bitmap msIn, Bitmap msOut, Bitmap numMsIn, Bitmap numMsOut)
        {
            this._mouseInBitmap = msIn;
            this._mouseOutBitmap = msOut;

            this._mouseOutBitmapContainsNumber = numMsOut;
            this._mouseInBitmapContainsNumber = numMsIn;

            this.Image = msOut;
        }

        /// <summary>
        /// 设置图块的正确位置
        /// </summary>
        /// <param name="x"></param>
        /// <param name="y"></param>
        public void SetRightPoint(int x, int y)
        {
            this.RightAt = new Point(x, y);
        }
    }

这么一作,一个图块类以及完成了,接下来就是使用这个图块类了。

①:图块数组

    因为我们在程序中需要N*N的图块,而N是未知数,那么就创建一个名为_pictureArray的二维数组,用于动态创建图块群。

  1. private PictureItem[,] _pictureArray;  
private PictureItem[,] _pictureArray;

②创建图块,指定图片
   根据用户的选择创建指定长度的图块后,下面就是计算和确定每一个图块的图片,把一张图片划分为N*N个‘格子’这儿就把它暂时叫做为格子吧,如何划分呢?现在就是解决图片的分割问题了,当能GDI+足够强大,这个功能可以不复杂的完成。这个我们就要借助Graphics对象了,具体方法是在内存中创建一张图片Bitmap对象b,大小和格子一样大,能后创建一个Graphics对象g,使用g将图片的指定位置(也就是格子上的图片)绘制到b中。根据程序需求,在给图片加上方框和数字即可。再调用PictureItem.Image = b;就可以将图块的图片设置为这个带方框的图片了。

 

  1. /// <summary>   
  2. /// 截取bmp图片中的一部分,并在图片四周画上方框   
  3. /// </summary>   
  4. /// <param name="bmp">被截取的图片</param>   
  5. /// <param name="width">截取的长度</param>   
  6. /// <param name="heigth">截取的宽度</param>   
  7. private Bitmap DivisionPicture(Bitmap bmp, int x, int y, int width, int height, Pen p, int number)  
  8. {  
  9.     Bitmap b = new Bitmap(width, height);  
  10.   
  11.     // g上的绘图将直接绘制到位图b上   
  12.     Graphics g = Graphics.FromImage(b);  
  13.   
  14.     g.DrawImage(bmp, new Rectangle(0, 0, width, height), new Rectangle(x, y, width, height), GraphicsUnit.Pixel);  
  15.     g.DrawRectangle(p, new Rectangle(1, 1, width - 2, height - 2));  
  16.   
  17.     // 需要绘制数字   
  18.     if (number >= 0)  
  19.     {  
  20.         g.DrawString(number.ToString(), new System.Drawing.Font("楷体", width / 5, FontStyle.Bold), Brushes.Red, new PointF(width / 2 - width / 10, height / 2 - width / 10));  
  21.     }  
  22.   
  23.     g.Dispose();  
  24.   
  25.     return b;  
  26. }  
        /// <summary>
        /// 截取bmp图片中的一部分,并在图片四周画上方框
        /// </summary>
        /// <param name="bmp">被截取的图片</param>
        /// <param name="width">截取的长度</param>
        /// <param name="heigth">截取的宽度</param>
        private Bitmap DivisionPicture(Bitmap bmp, int x, int y, int width, int height, Pen p, int number)
        {
            Bitmap b = new Bitmap(width, height);

            // g上的绘图将直接绘制到位图b上
            Graphics g = Graphics.FromImage(b);

            g.DrawImage(bmp, new Rectangle(0, 0, width, height), new Rectangle(x, y, width, height), GraphicsUnit.Pixel);
            g.DrawRectangle(p, new Rectangle(1, 1, width - 2, height - 2));

            // 需要绘制数字
            if (number >= 0)
            {
                g.DrawString(number.ToString(), new System.Drawing.Font("楷体", width / 5, FontStyle.Bold), Brushes.Red, new PointF(width / 2 - width / 10, height / 2 - width / 10));
            }

            g.Dispose();

            return b;
        }


使用完了别忘记销毁Graphics对象g。上面这个函数将直接返回绘制出来的位图对象。

③打乱图块,并扣掉左上角那个

  1. // 随机打乱这些图块来   
  2. // TODO   
  3. Random r = new Random(System.DateTime.Now.Millisecond);  
  4. for (int i = 0; i < 200; i++)  
  5. {  
  6.     // 随机拿2个图快   
  7.     var box1 = this.mainPanel.Controls[r.Next(0, num * num - 2)] as PictureItem;  
  8.     var box2 = this.mainPanel.Controls[r.Next(0, num * num - 2)] as PictureItem;  
  9.     if (box1 == box2)  
  10.         continue;  
  11.   
  12.     // 交换他们的位置   
  13.     var tempAt = box1.At;  
  14.     var tempLoca = box1.Location;  
  15.   
  16.     box1.At = box2.At;  
  17.     box1.Location = box2.Location;  
  18.   
  19.     box2.At = tempAt;  
  20.     box2.Location = tempLoca;  
  21. }  
            // 随机打乱这些图块来
            // TODO
            Random r = new Random(System.DateTime.Now.Millisecond);
            for (int i = 0; i < 200; i++)
            {
                // 随机拿2个图快
                var box1 = this.mainPanel.Controls[r.Next(0, num * num - 2)] as PictureItem;
                var box2 = this.mainPanel.Controls[r.Next(0, num * num - 2)] as PictureItem;
                if (box1 == box2)
                    continue;

                // 交换他们的位置
                var tempAt = box1.At;
                var tempLoca = box1.Location;

                box1.At = box2.At;
                box1.Location = box2.Location;

                box2.At = tempAt;
                box2.Location = tempLoca;
            }

200来打乱完全足够了吧?在初始化这些图块的时候记得加上:

  1. // 删掉左上角那个   
  2. if (i == 0 && j == 0)  
  3.     continue;  
                    // 删掉左上角那个
                    if (i == 0 && j == 0)
                        continue;
              

用于去掉左上角那个图块。对于设置图片的显示方式:

  1. box.SizeMode = PictureBoxSizeMode.StretchImage;  
box.SizeMode = PictureBoxSizeMode.StretchImage;

 将图片显示方式设置为:适应控件大小,那么图片将按比例缩放至控件大小一致。

 

④图块移动

        1:为了使图块移动有动态效果,那么不得不考虑多线程了。对于多线程对象System.Threading.Thread.下面是来着MSDN中的解释 

  1. 一个进程可以创建一个或多个线程以执行与该进程关联的部分程序代码。使用 ThreadStart 委托或 ParameterizedThreadStart 委托指定由线程执行的程序代码。使用 ParameterizedThreadStart 委托可以将数据传递到线程过程。  
  2.   
  3. 在线程存在期间,它总是处于由 ThreadState 定义的一个或多个状态中。可以为线程请求由 ThreadPriority 定义的调度优先级,但不能保证操作系统会接受该优先级。  
  4.   
  5. GetHashCode 提供托管线程的标识。在线程的生存期内,无论获取该值的应用程序域如何,它都不会和任何来自其他线程的值冲突。  
  6.       它和我们在C++学的多线程是基本一致的,但是C#中的Thread对象是.Net 库中内置的,对于C++中的多线程我们需要直接借助于操作系统来实现。C#中的Thread多线程是安全的。  
一个进程可以创建一个或多个线程以执行与该进程关联的部分程序代码。使用 ThreadStart 委托或 ParameterizedThreadStart 委托指定由线程执行的程序代码。使用 ParameterizedThreadStart 委托可以将数据传递到线程过程。

在线程存在期间,它总是处于由 ThreadState 定义的一个或多个状态中。可以为线程请求由 ThreadPriority 定义的调度优先级,但不能保证操作系统会接受该优先级。

GetHashCode 提供托管线程的标识。在线程的生存期内,无论获取该值的应用程序域如何,它都不会和任何来自其他线程的值冲突。
      它和我们在C++学的多线程是基本一致的,但是C#中的Thread对象是.Net 库中内置的,对于C++中的多线程我们需要直接借助于操作系统来实现。C#中的Thread多线程是安全的。

我们给每一个图块增加一个相同的相应函数:

  1. // 图片的点击函数   
  2.                     box.Click += new EventHandler(box_Click);  
// 图片的点击函数
                    box.Click += new EventHandler(box_Click);


点击图块后,我们得首先拿到这个控件,拿到后,做个判断,是否是在空白位置的旁边:

  1. /// <summary>   
  2. /// 任意一个图块被点击   
  3. /// </summary>   
  4. /// <param name="sender"></param>   
  5. /// <param name="e"></param>   
  6. void box_Click(object sender, EventArgs e)  
  7. {  
  8.     // 获取被点击的图块   
  9.     PictureItem box = sender as PictureItem;  
  10.   
  11.     // 如果旁边是能点击的,移动该box位置   
  12.     int xL = this._nullBox.X - box.At.X;  
  13.     int yL = this._nullBox.Y - box.At.Y;  
  14.   
  15.     if ((xL == 0 && yL == -1) || (xL == 0 && yL == 1) || (xL == -1 && yL == 0) || (xL == 1 && yL == 0))  
  16.     {  
  17.         MoveTo(box, _nullBox);  
  18.     }  
  19. }  
        /// <summary>
        /// 任意一个图块被点击
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void box_Click(object sender, EventArgs e)
        {
            // 获取被点击的图块
            PictureItem box = sender as PictureItem;

            // 如果旁边是能点击的,移动该box位置
            int xL = this._nullBox.X - box.At.X;
            int yL = this._nullBox.Y - box.At.Y;

            if ((xL == 0 && yL == -1) || (xL == 0 && yL == 1) || (xL == -1 && yL == 0) || (xL == 1 && yL == 0))
            {
                MoveTo(box, _nullBox);
            }
        }


如果图块可以移动,那么我们调用MoveTo函数对图块进行多线程移动。如果图块可以移动,那么我们调用MoveTo函数对图块进行多线程移动。

 

       2:在下面的代码中我们使用了匿名函数来实现,对于匿名函数的使用,有兴趣的朋友可以参照MSDN中的解释,具体我就不多解释了。在这儿值得一提的是对于跨线程更改控件的属性问题了。在应用程序中,如果不是创建那个控件的线程中控件的属性被更改,那么在调试(Debug)的过程中将出一个异常,那么需要借助Form类的一个函数BeginInvoke来实现.

 

  1. /// <summary>   
  2.  /// 将box图块移动到to位置   
  3.  /// </summary>   
  4.  /// <param name="box"></param>   
  5.  /// <param name="to"></param>   
  6.  private void MoveTo(PictureItem box, Point to)  
  7.  {  
  8.      // 使用多线程来完成 匿名函数   
  9.      Thread start = new Thread(() =>  
  10.          {  
  11.              lock (this)  
  12.              {  
  13.                  if (this.InvokeRequired)  
  14.                  {  
  15.                      // 虑到跨线程访问控件的值安全性 使用该方法   
  16.                      this.BeginInvoke(new MoveMode(MoveBox), box, to);  
  17.                  }  
  18.                  else  
  19.                  {  
  20.                      MoveBox(box, to);  
  21.                  }  
  22.              }  
  23.          }  
  24.      );  
  25.   
  26.      // 开始运行   
  27.      start.Start();  
  28.  }  
  29.   
  30.  /// <summary>   
  31.  /// 移动图块   
  32.  /// </summary>   
  33.  /// <param name="box"></param>   
  34.  /// <param name="to"></param>   
  35.  private void MoveBox(PictureItem box, Point to)  
  36.  {  
  37.      // 计算 to位置的像素点屏幕坐标   
  38.      int x = box.Size.Width * to.X;  
  39.      int y = box.Size.Height * to.Y;  
  40.   
  41.      int xL = box.Location.X - x;  
  42.      int yL = box.Location.Y - y;  
  43.   
  44.      int size = (int)Math.Sqrt(xL * xL + yL * yL);  
  45.   
  46.      // 缓缓的从本身位置移动到 to位置   
  47.      while (size > 5)  
  48.      {  
  49.          box.Location = new Point(box.Location.X - MoveSize * xL / size, box.Location.Y - MoveSize * yL / size);  
  50.   
  51.          xL = box.Location.X - x;  
  52.          yL = box.Location.Y - y;  
  53.   
  54.          size = (int)Math.Sqrt(xL * xL + yL * yL);  
  55.   
  56.          Thread.Sleep(1);  
  57.      }  
  58.   
  59.      box.Location = new Point(x, y);  
  60.   
  61.      // 交换图块和空白位置的坐标   
  62.      var temp = this._nullBox;  
  63.      this._nullBox = box.At;  
  64.      box.At = temp;  
  65.   
  66.      // 判断移动完毕后图块是否正确!   
  67.      if (IsOver() && WinNow != null)  
  68.      {  
  69.          WinNow(thisnew EventArgs());  
  70.      }  
  71.  }  
       /// <summary>
        /// 将box图块移动到to位置
        /// </summary>
        /// <param name="box"></param>
        /// <param name="to"></param>
        private void MoveTo(PictureItem box, Point to)
        {
            // 使用多线程来完成 匿名函数
            Thread start = new Thread(() =>
                {
                    lock (this)
                    {
                        if (this.InvokeRequired)
                        {
                            // 虑到跨线程访问控件的值安全性 使用该方法
                            this.BeginInvoke(new MoveMode(MoveBox), box, to);
                        }
                        else
                        {
                            MoveBox(box, to);
                        }
                    }
                }
            );

            // 开始运行
            start.Start();
        }

        /// <summary>
        /// 移动图块
        /// </summary>
        /// <param name="box"></param>
        /// <param name="to"></param>
        private void MoveBox(PictureItem box, Point to)
        {
            // 计算 to位置的像素点屏幕坐标
            int x = box.Size.Width * to.X;
            int y = box.Size.Height * to.Y;

            int xL = box.Location.X - x;
            int yL = box.Location.Y - y;

            int size = (int)Math.Sqrt(xL * xL + yL * yL);

            // 缓缓的从本身位置移动到 to位置
            while (size > 5)
            {
                box.Location = new Point(box.Location.X - MoveSize * xL / size, box.Location.Y - MoveSize * yL / size);

                xL = box.Location.X - x;
                yL = box.Location.Y - y;

                size = (int)Math.Sqrt(xL * xL + yL * yL);

                Thread.Sleep(1);
            }

            box.Location = new Point(x, y);

            // 交换图块和空白位置的坐标
            var temp = this._nullBox;
            this._nullBox = box.At;
            box.At = temp;

            // 判断移动完毕后图块是否正确!
            if (IsOver() && WinNow != null)
            {
                WinNow(this, new EventArgs());
            }
        }


考虑到多线程数据的同步性在这儿我们使用lock关键字,防止图块在移动的过程中点击其他图块导致2个图块同时移动。使用lock后,一个直接结果就是一个图块在移动的时候点击别的一个图块,别的一个图块移动需要排队等待上一个图块移动结束。

⑤胜利的判定

首先我们在每一个图块对象上使用2个属性:

 

  1. /// <summary>   
  2. /// 图块所在的位置   
  3. /// </summary>   
  4. public Point At  
  5. {  
  6.     get;  
  7.     set;  
  8. }  
  9.   
  10. /// <summary>   
  11. /// 图块的正确位置 用于判断图块是否在正确位置上   
  12. /// </summary>   
  13. public Point RightAt  
  14. {  
  15.     protected set;  
  16.     get;  
  17. }  
        /// <summary>
        /// 图块所在的位置
        /// </summary>
        public Point At
        {
            get;
            set;
        }

        /// <summary>
        /// 图块的正确位置 用于判断图块是否在正确位置上
        /// </summary>
        public Point RightAt
        {
            protected set;
            get;
        }


前面那个是完全公开的属性,用于记录该图块当前的位置,而后面那个属性的set函数被保护,对于被保护的原因大家都知晓了了吧,在创建图块的时候该属性被赋值,即图块的标准位置。之后你无法再任何地方更改它的值,因为它的值在这之后就是固定的。判断是否该图块在正确的位置,方法就是:

 

  1. // 图块摆放不正确   
  2. if (box.At != box.RightAt)  
  3.     return false;  
                // 图块摆放不正确
                if (box.At != box.RightAt)
                    return false;

 

==========================================================================================

讲了这么多最后附上代码下载网站吧:

http://download.csdn.net/detail/lilacflower/4765775

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值