有段时间没有更新自己的博客了,一是学习紧,二是忙着工作的事。好了,现在拿出在学习C#过程中所做的扫雷小程序,在代码优化方面还有很多不足之处,希望大家多多拍砖,小弟还等着回家盖房呢,呵呵...
BlockView部分:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace QueryMainSample1
{
public partial class BlockView : UserControl
{
public BlockView()
{
InitializeComponent();
this.isMarked = false;
this.isMine = false;
}
//属性
public const int Block_Width = 13;
public const int Block_Height = 13;
public int row;//行
public int col;//列
public bool isOpen { set; get; }//是否被打开
public bool isMine { set; get; }//是否有雷
public bool isMarked { set; get; }//是否被标记
//事件
public event MouseEventHandler Open;
//方法
private void BlockView_MouseClick(object sender, MouseEventArgs e)
{
if (this.Open!=null)
{
this.Open.Invoke(this,e);
}
}
}
}
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
扫雷form部分:
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;
namespace QueryMainSample1
{
public partial class SaoLei : Form
{
//Propertity
public const int ROWS = 5;//行
public const int COLS = 5;//列
public const int ALLMAINS = 2;//雷数
public int Width1;//宽度
public int Height1;//高度
public bool GameOver = false;//游戏结束与否
public bool Success = false;//成功
public int MarkedCount = ALLMAINS;//雷显示数
//public int MineCount { set; get; }
public int StartTime;//开始时间
List<BlockView> Lblock = new List<BlockView>();
//初始化
public SaoLei()
{
InitializeComponent();
this.initializeBlockValue();
}
//小块信息初始化方法
public void initializeBlockValue()
{
//随机排列小块
for (int i = 0; i < ROWS; i++)
{
for (int j = 0; j < COLS; j++)
{
BlockView block = new BlockView();
block.row = i;
block.col = j;
block.label.Text = string.Empty;
block.Left = 10 + i * (BlockView.Block_Width + 2);
block.Top = 50 + j * (BlockView.Block_Height + 2);
block.Open += new MouseEventHandler(block_Open);
Lblock.Add(block);
this.Controls.Add(block);
}
}
//初始化版面
this.Width1 = 25 + ROWS * (BlockView.Block_Width +2);
this.Height1 = 85 + COLS * (BlockView.Block_Height +2);
if(this.Width1>325 || this.Height1>385){
this.Width = this.Width1;
this.Height = this.Height1;
}
//显示雷数目
this.textBoxMineCount.Text = "雷数:"+MarkedCount.ToString();
//随机排列雷
this.Mine();
//开始时timer1停止运行
this.timer1.Stop();
}
//随机排列雷
public void Mine()
{
Random r = new Random(DateTime.Now.Millisecond);
for (int i = 0; i < ALLMAINS; i++)
{
int n = r.Next(0, ROWS * COLS);
if (!Lblock.ElementAt(n).isMine)
{
Lblock.ElementAt(n).isMine = true;
}
else
{
i--;
}
}
}
//小块的Open事件
void block_Open(object sender, MouseEventArgs e)
{
if (this.Success || this.GameOver)
{
timer1.Stop();
return;
}
timer1.Start();
this.buttonReset.Text = "Reset";
BlockView block = sender as BlockView;
if (block.isOpen)
{
return;
}
if (e.Button == MouseButtons.Left)
{
if (this.Success || this.GameOver)
{
timer1.Stop();
this.buttonReset.Text = "Reset";
return;
}
//如果已被用户标记,则不可再点击
if (block.isMarked)
{
return;
}
if (block.isMine)
{
this.GameOver = true;
Lblock.Where(s => s.isMine).ToList().ForEach(s => s.BackColor = Color.Red);
timer1.Stop();
this.buttonReset.Text = "Failed";
MessageBox.Show("游戏失败!");
this.buttonReset.Text = "Reset";
return;
}
CheckMine(block);
if (Lblock.Count(s => s.isMarked && s.isMine) == ALLMAINS)
{
if (MarkedCount == 0)
{
this.textBoxMineCount.Text = "雷数:"+this.MarkedCount.ToString();
this.Success = true;
timer1.Stop();
this.buttonReset.Text = "Ok";
MessageBox.Show("恭喜您过关,你共" + this.textBoxTime.Text + "!");
this.buttonReset.Text = "Reset";
}
}
}
else if (e.Button == MouseButtons.Right)
{
if (block.isMarked)
{
this.MarkedCount++;
this.textBoxMineCount.Text = "雷数:" + this.MarkedCount.ToString();
block.isMarked = false;
block.BackColor = Color.DarkGray;
return;
}
else
{
block.isMarked = true;
this.MarkedCount--;
block.BackColor = Color.Black;
this.textBoxMineCount.Text = "雷数:"+this.MarkedCount.ToString();
if (this.MarkedCount == 0)
{
if (Lblock.Count(s => s.isMarked && s.isMine) == ALLMAINS)
{
this.Success = true;
timer1.Stop();
this.buttonReset.Text = "Ok";
MessageBox.Show("恭喜您过关,你共" + this.textBoxTime.Text +"!");
this.buttonReset.Text = "Reset";
}
}
}
}
}
//检查小块周围的块(雷)
public void CheckMine(BlockView block)
{
List<BlockView> Lblock2 = new List<BlockView>();
block.BackColor = Color.White;
block.isOpen = true;
foreach (BlockView s in Lblock)
{
if (((Math.Abs(s.row - block.row) == 1 && Math.Abs(s.col - block.col) == 1) || (Math.Abs(s.row - block.row) == 0 && Math.Abs(s.col - block.col) == 1) || (Math.Abs(s.row- block.row) == 1 && Math.Abs(s.col - block.col) == 0)) && s.BackColor != Color.White)
{
if (!s.isMarked)
{
Lblock2.Add(s);
}
}
}
if (Lblock2.Any(s => s.isMine))
{
string mineNumber = Lblock2.Count(s => s.isMine).ToString();
block.BackColor = Color.LightCyan;
block.label.Text = mineNumber;
return;
}
foreach (BlockView ss in Lblock2)
{
CheckMine(ss);
}
}
//ButtonResult的点击事件
private void buttonReset_Click(object sender, EventArgs e)
{
if (this.buttonReset.Text == "Reset")
{
Lblock.ForEach(s =>
{
s.isOpen = false;
s.isMine = false;
s.isMarked = false;
s.label.Text = string.Empty;
s.BackColor = Color.DarkGray;
});
this.Mine();
this.buttonReset.Text = "Welcome";
this.StartTime = 0;
this.textBoxTime.Text = "用时:0秒";
timer1.Stop();
this.textBoxMineCount.Text = "雷数:"+ALLMAINS.ToString();
this.MarkedCount = ALLMAINS;
if (this.Success)
{
this.Success = false;
}
if (this.GameOver)
{
this.GameOver = false;
}
}
}
//timer的tick事件,在textbox中显示时间
private void timer1_Tick(object sender, EventArgs e)
{
this.StartTime++;
this.textBoxTime.Text = "用时:" + StartTime.ToString() + "秒";
}
}
}
分享到:
相关推荐
总的来说,这段代码展示了如何使用MFC库构建扫雷游戏的基本框架,包括界面绘制、位图操作以及可能的状态管理。在完整的程序中,还需要结合事件处理、逻辑判断以及游戏规则的实现,以确保游戏的完整性和可玩性。
自己用JAVA语言在手机IDE上编写的立体扫雷游戏,游戏有平面模式和立体模式两种玩法。压缩包内含有源代码文件和生成的apk文件。源代码可作为游戏编程学习资料,也可内置广告平台SDK获取广告收益。本人非专业,自学...
多年前自己编写的简单扫雷程序源码,供有兴趣学习者参考。 语言:VC++ MFC 环境:vs2010
自己用C#编的一个扫雷游戏,功能跟微软的基本相同,调用递归来完成自动排雷,第一次做游戏,大家可以交流交流
大一牲不懂事,编着玩的,有大佬看到也请指正
《C#编程实现扫雷游戏:新手学习指南》 扫雷,这个经典的Windows系统自带小游戏,以其简单易懂却又极具挑战性的玩法深受广大用户喜爱。本文将深入探讨如何使用C#编程语言来实现一个扫雷游戏,这对于初学者来说是一...
自己编的一个扫雷游戏,可以自选择雷数
另附自编的CE一键扫雷脚本文件。
我编的第一个游戏,跟windows自带的扫雷游戏很相似
这是我自己编的扫雷小游戏(带源代码); 我自学JAVA2个月;到这种程度不知行不行??? 希望大家多多指教; 还有我这是在JDK6上编译的; 在JDK4前不知能不能运行?? 谢谢大家... 希望大家多提意见
今年暑假,我脑子一热,决定要用Delphi 编出自己的扫雷出来,于是就着手开始构思,想在扫雷里加入一些新增的功能,前思后想,还是觉得不如完全模仿微软操作系统自带的扫雷游戏,给自己定个目标,于是就一切以 ...
在编程领域,实现扫雷游戏是一项很好的练习,可以提升你的算法思维和编程技巧。下面,我们将深入探讨扫雷的程序设计,涉及的主要知识点包括:游戏逻辑、数据结构和用户交互。 1. **游戏逻辑**: - **初始化**:...
这是我自己做的小程序,今天上课前在机房里玩扫雷,被老师看见,他说以为我做怎么那么认真,原来是在玩游戏啊!惭愧!编一个啊,玩有怎么意思。这样我今天特意编了一个,不过对有些人来说太简单了,有很多缺陷,希望...
自己编的小游戏。。。界面不是很好看 仅供参考
学习C#时自己编的扫雷游戏,源代码加.exe 文件 有简单的windows from 的运用, 鼠标event 的改写 简单的声音运用 动态图片的绘制。 resource handler的使用 VS 2003 C#.net framework 1.1
自己编的一个小程序——扫雷,背景是优美的风景,游戏设置三个关卡。
" 提供的是一个基于Java编程语言实现的扫雷游戏项目。这个项目不仅是一个完整的可运行的游戏,同时也为开发者提供了进一步学习和扩展Java编程以及游戏开发的机会。 扫雷游戏是一款经典的逻辑推理类游戏,玩家需要在...
下面我们将深入探讨这款名为"saolei.zip_SAOLEI_扫雷"的自编扫雷程序,以及它所包含的知识点。 首先,扫雷的基本规则是玩家在9x9或更大格子的棋盘上点击方块,目标是找出所有非雷格子并避免踩到雷。每个非雷格子会...
扫雷游戏是一款经典的桌面益智游戏,它通过在二维网格中隐藏数字来锻炼玩家的逻辑推理和观察力。在这个C#课程项目中,老师编写的扫雷程序为初学者提供了一个很好的学习实例,帮助他们理解和掌握C#编程基础以及游戏...