使用C#编写15子游戏

本文实例为大家分享了C#15子游戏的实现代码,供大家参考,具体内容如下

所需控件:一个Button,拖入Form1中即可。
源码:

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 ShiWuZhiGame
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    } 

    const int N = 4; //按钮的行、列数
    Button[,] buttons = new Button[N, N]; //按钮的数组 

    private void Form1_Load(object sender, EventArgs e)
    {
      //产生所有按钮
      GenerateAllButtons();
    }
    //打乱顺序
    void Shuffle()
    {
      //多次随机交换两个按钮
      Random rnd = new Random();
      for (int i = 0; i < 100; i++)
      {
        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()
    {
      int x0 = 100, y0 = 10, w = 45, d = 50;
      for (int r = 0; r < N; r++)
        for (int c = 0; c < N; c++)
        {
          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)
    {
      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)
    {
      Button btn = sender as Button; //当前点中的按钮
      Button blank = FindHiddenButton(); //空白按钮 

      //判断是否与空白块相邻,如果是,则交换
      if (IsNeighbor(btn, blank))
      {
        Swap(btn, blank);
        blank.Focus();
      } 

      //判断是否完成了
      if (ResultIsOk())
      {
        MessageBox.Show("ok");
      }
    } 

    //查找要隐藏的按钮
    Button FindHiddenButton()
    {
      for (int r = 0; r < N; r++)
        for (int c = 0; c < N; c++)
        {
          if (!buttons[r, c].Visible)
          {
            return buttons[r, c];
          }
        }
      return null;
    } 

    //判断是否相邻
    bool IsNeighbor(Button btnA, Button btnB)
    {
      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()
    {
      for (int r = 0; r < N; r++)
        for (int c = 0; c < N; c++)
        {
          if (buttons[r, c].Text != (r * N + c + 1).ToString())
          {
            return false;
          }
        }
      return true;
    } 

    private void button1_Click_1(object sender, EventArgs e)
    {
      //打乱顺序
      Shuffle();
    }
  }
} 

运行效果如下:

程序启动时:

点击开始后:

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

(0)

相关推荐

  • C#实现的算24点游戏算法实例分析

    本文实例讲述了C#实现的算24点游戏算法.分享给大家供大家参考.具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Calc24Points { public class Cell { public enum Type { Number, Signal } public int Number; public ch

  • C#实现简单的井字游戏实例

    本文实例讲述了C#实现简单的井字游戏.分享给大家供大家参考.具体如下: /* * Created using: SharpDevelop * Created by: Tony Misner * Date: 1/2/2007 * Time: 2:34 PM * */ using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; namespace TicTacToe

  • C#在Unity游戏开发中进行多线程编程的方法

    在这之前,有很多人在质疑Unity支不支持多线程,事实上Unity是支持多线程的.而提到多线程就要提到Unity非常常用的协程,然而协程并非真正的多线程.协程其实是等某个操作完成之后再执行后面的代码,或者说是控制代码在特定的时机执行.而多线程在Unity渲染和复杂逻辑运算时可以高效的使用多核CPU,帮助程序可以更高效的运行.本篇主要介绍在Unity中如何使用多线程. 首先引入C#中使用多线程的类库 using System.Threading; 创建线程实例的四种方式 一.线程执行无参方法 构造

  • C#拼图游戏编写代码

    本文设计了C#拼图游戏程序,供大家参考,具体内容如下 功能描述: 1.用户自定义上传图片 2.游戏难度选择:简单(3*3).一般(5*5).困难(9*9)三个级别 3.纪录完成步数 模块: 1.拼图类 2.配置类 3.游戏菜单窗口 4.游戏运行窗口 代码文件VS2013版本: 下载链接: 拼图游戏 --------------------------------------------------我叫分割线---------------------------------------------

  • 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;

  • C#贪吃蛇游戏实现分析

    今天无聊突发奇想做个贪吃蛇,虽然网上很多这东西了,不过自己写的感觉还行吧 贪吃蛇分析 游戏规则: 1.蛇起始长度5,每吃一个食物增加1,最大15过关 2.蛇用蓝色表示,食物用绿色,障碍物用黑色 3.当蛇碰到自己.墙壁.障碍物则游戏失败 4.方向键控制蛇的移动方向,蛇不可反方向移动,如正在向上移动,不能马上向下,只能向左.右.上运动 5.每过关一次速度提升一次 大概思路: 1.地图用网格的形式表示,蛇由方格组成,保存在list中 2.1中提到了方格,方格保存的内容有,颜色,坐标,是否可以通过,是否

  • C#利用控件拖拽技术制作拼图游戏

    主要实现的功能: 1.程序附带多张拼图随机拼图. 2.可手动添加拼图. 3.游戏成功判断. 4.30秒超时判断. Puzzle.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms

  • C#实现的24点游戏实例详解

    本文实例分析了C#实现的24点游戏.分享给大家供大家参考.具体如下: 1. 24点游戏规则及算法 规则:给出4个自然数,找出能够求出24的四则运算式,要求数字不能重复使用 分析: 本算法是一种暴力求解法: 给出任意两个数字,可以进行6种四则运算,求出最多6个值.以数字a和b为例,有: 加(a+b).减(a-b).被减(b-a).乘以(a*b).除以(a/b)和除(b/a) abcd共计四个数,如果顺序固定,则有5种计算顺序(★代表上面6种四则运算中的一种): ((a★b)★c)★d.(a★b)★

  • C#拼图游戏编写代码(2)

    前言:在C#拼图游戏编写代码程序设计 之 C#实现<拼图游戏>(上),上传了各模块代码,而在本文中将详细剖析原理,使读者更容易理解并学习,程序有诸多问题,欢迎指出,共同学习成长! 正文: 拼图是一个非常经典的游戏,基本每个人都知道他的玩法,他的开始,运行,结束.那么,当我们想要做拼图的时候如何入手呢?答案是:从现实出发,去描述需求(尽量描述为文档),当我们拥有了全面的需求,就能够提供可靠的策略,从而在代码中实现,最终成为作品! (一)需求: (这个需求书写较为潦草,为广大小白定制,按照最最最普

  • C#实现十五子游戏

    最近由于工作需要,做一个C#的简单程序.学习了一些基础东西先记下来. 主要有: 1.生成初始框架 2.打乱顺序 3.游戏部分,点击按钮后与空白部分交换的只是Text和Visible部分 const int N = 4; //行列数 Button[,] buttons = new Button[N, N]; private void Form1_Load(object sender, EventArgs e) { //产生所有按钮 GenerateAllButtons(); } private v

随机推荐