C++实现扫雷程序开发

C++程序开发实现扫雷游戏,供大家参考,具体内容如下

//扫雷的类的定义

#pragma once

class Game{
public:
 //开始游戏
 void play();
 //退出游戏
 int quit();
 //游戏规则
 void rule();

private:
 //踩雷次数,作为失败条件
 int error = 0;
 //分数
 int score = 0;
 //最高分记录
 int Rocord[5] = { 0,0,0,0,0 };
 //地图
 int map[40][40];

 //地图的大小Size*Size
 int Size = 10;

 //容错
 int fault_tolerant = 10;

 //困难程度
 int _difficulty=1;

 //初始化
 void reset();

 //画地图
 void drawGrid();

 //查看格子的结果
 void Cheak();

 //判断是否游戏结束
 int isWin();

 //导入最高分记录
 void get_Rocord();

 //导出最高分记录
 void put_Rocord();

 //选择难度
 int Selection_difficulty();

 //加载界面
 void loading();
};

然后是对类的函数的定义

//对Game类的成员函数的定义

#include "扫雷.h"
#include<Windows.h>
#include<iostream>
#include<fstream>
#include<time.h>
#include <conio.h>

#pragma warning(disable:4996) //这一行是为了能在 Visual Studio 2017内使用getch()函数

//定义最高分记录的存储地址
#define RocordPath "D:\\VS/扫雷最高分.txt"

using namespace std;

#define none  "█"

//定义5种情况,有雷和无雷,查看后的三种结果
enum players { Boom, None, Boom1, None1, Show1 };

//定义三种游戏难度
enum _Difficulty{Easy,General,Difficulty,Purgatory};

int D_size[4][2] = { {10,10} ,{15,8},{20,5},{30,3} };

//游戏规则的描述
void Game::rule() {
 loading();
 //清屏
 system("cls");
 cout << "\n\n\n\n";
 cout << "游戏规则:\n\n";
 cout << "1.当查看点为雷时,会显示“*”,并且将扣10分" << endl;
 cout << "2.当差看点不为雷且周围均无雷将显示周围所以格为“ ”(周围指的是相邻的8个格子)" << endl;
 cout << "3.当查看点不为雷,且周围存在雷时,将显示周围雷数" << endl;
 cout << "4.当踩到最大容错个数雷时游戏将失败" << endl;
 cout << "5.当不存在未查阅的非雷格时游戏胜利" << endl;
 cout << "\n\n\n\t\t\t\t30秒后自动退出该界面!";

 Sleep(30000);

}

//退出游戏
int Game::quit() {

 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 40, 13 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "游戏结束!!!" << endl;

 Sleep(1000);

 loading();

 return 0;

}

//游戏模式
void Game::play() {
 //导入最高分记录
 get_Rocord();

 while (true) {
 //选择游戏难度
 _difficulty=Selection_difficulty();
 //默认游戏一直进行
 int res = 1;
 //初始化
 reset();
 //
 drawGrid();
 while (true) {

  //查看点
  Cheak();
  //
  drawGrid();

  if (!isWin()) {

  if (score > Rocord[_difficulty])Rocord[_difficulty] = score;
  put_Rocord();
  char s;
  cout << "是否再来一局?是(y|Y)/否(n|N)" << endl;
  cin >> s;
  if (s == 'y' || s == 'Y')res = 1;
  else res = 0;
  break;
  }

 }
 if (!res)break;

 }

}

//更新(初始化)
void Game::reset() {
 //数据初始化
 score = 0;
 error = 0;
 //棋盘初始化
 srand(time(NULL));
 for (int i = 0; i < Size; i++) {
 for (int j = 0; j < Size; j++) {
  int t = rand() % 2;
  if (t==1)map[j][i] = Boom;
  else map[j][i] = None;
  //cout << t<< " ";
 }
 //cout << endl;
 }

}

//画地图
void Game::drawGrid() {

 //清屏
 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 0, 2 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 //棋局初始状态
 for (int i = 0; i <= Size; i++) {
 if (i < 10)
  cout << i << " ";
 else cout << i;
 for (int j = 0; j < Size; j++) {
  if (i == 0) {
  if (j < 9)
   cout << j + 1 << " ";
  else cout << j + 1;
  }
  else cout << none;
 }
 cout << endl;
 }

 for (int y = 0; y < Size; y++) {
 for (int x = 0; x < Size; x++) {
  if (map[x][y] == Boom1|| map[x][y] == None1) {
  //光标位置坐标
  COORD c = { x * 2 + 2, 3 + y };
  //设置控制台光标位置
  SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);//GetStdHandle函数获得句柄
  string o;
  if (map[x][y] == Boom1) o = "* ";
  if (map[x][y] == None1) o = " ";
  cout << o;
  }

  if (map[x][y] == Show1) {
  int cnt = 0;
  for (int i = x - 1; i <= x + 1; i++) {
   for (int j = y - 1; j <= y + 1; j++) {
   if (i >= 0 && i < Size && j >= 0 && j < Size) {
    if (map[i][j] == Boom || map[i][j] == Boom1)cnt++;
   }
   }
  }
  //光标位置坐标
  COORD c = { x*2+2, 3 + y };
  //设置控制台光标位置
  SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);//GetStdHandle函数获得句柄
  cout << cnt << " ";

  }
 }
 }
 c.Y = Size+3;
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "当前分数是:"<<score<<"\n最高纪录是:"<<Rocord[_difficulty]<<"\n请输入查看格的坐标" << endl;

}

//查看点结果
void Game::Cheak() {
 int x = 0, y = 0;

 cin >> x >> y;
 x -= 1, y -= 1;
 while(map[x][y] == Boom1 || map[x][y] == None1 || map[x][y] == Show1 || x < 0 || x >= Size || y < 0 || y >= Size) {
 //定义控制台屏幕初始坐标
 COORD c = { 0, 2 };
 c.Y = Size+6;
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "该格以检查过或不在棋盘内,请重新输入" << endl;
 cin >> x >> y;
 x -= 1, y -= 1;

 }

 if (map[x][y] == Boom) {
 map[x][y] = Boom1;
 score -= 10;
 error++;
 }

 else {
 score += 10;
 int cnt = 0;
 for (int i = x - 1; i <= x + 1; i++) {
  for (int j = y - 1; j <= y + 1; j++) {
  if (i >= 0 && i < Size && j >= 0 && j < Size) {
   if (map[i][j] == Boom || map[i][j] == Boom1)cnt++;
  }
  }
 }
 if (cnt == 0) {
  for (int i = x - 1; i <= x + 1; i++) {
  for (int j = y - 1; j <= y + 1; j++) {
   if (i >= 0 && i < Size && j >= 0 && j < Size) {
   map[i][j] = None1;
   }
  }
  }
 }
 else map[x][y] = Show1;
 }

}

//判断是否游戏结束
int Game::isWin() {
 int cnt = 0;
 for (int i = 0; i < Size; i++) {
 for (int j = 0; j < Size; j++) {
  if (map[i][j] == None)cnt++;
 }
 }

 if (cnt == 0) {
 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 50, 15 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "You Win!!!" << endl;
 return 0;
 }
 else if (error >= fault_tolerant) {
 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 50, 15 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "You Loss!!!" << endl;
 return 0;
 }
 else return 1;

}

//导入最高分记录
void Game::get_Rocord() {

 ifstream fin(RocordPath, ios::in);
 for (int i = 0; i < 5; i++) {
 fin >> Rocord[i];
 }
}

//导出最高分记录
void Game::put_Rocord() {

 ofstream fout(RocordPath, ios::out);
 for(int i=0;i<5;i++)
 fout << Rocord[i] << endl;
}

//选择难度
int Game::Selection_difficulty() {
 //清屏
 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 0, 6 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);

 cout << "\t\t\t\t\t\t1.简单  (10*10格 10容错)\n\n" << endl;
 cout << "\t\t\t\t\t\t2.一般  (15*15格 8容错)\n\n" << endl;
 cout << "\t\t\t\t\t\t3.困难  (20*20格 5容错)\n\n" << endl;
 cout << "\t\t\t\t\t\t4.炼狱  (30*30格 3容错)\n\n" << endl;
 cout << "\t\t\t\t\t\t5.自定义\n\n" << endl;
 cout << "\t\t\t\t\t\t请选择游戏难度:";
 int t = 1;
 cin >> t;
 while (t < 1 || t>5) {
 COORD c = { 0, 21 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "\t\t\t\t\t\t输入错误请重新输入:" << endl;;
 cin >> t;
 }
 switch (t) {
 case 1:Size = D_size[Easy][0], fault_tolerant = D_size[Easy][1]; break;
 case 2:Size = D_size[General][0], fault_tolerant = D_size[General][1]; break;
 case 3:Size = D_size[Difficulty][0], fault_tolerant = D_size[Difficulty][1]; break;
 case 4:Size = D_size[Purgatory][0], fault_tolerant = D_size[Purgatory][1]; break;
 case 5: {
 //清屏
 system("cls");
 cout << "\n\n\n\n\n\t\t\t\t请输入地图尺码和最多踩雷失败数    (尺码在10-30,容错在10以内)";
  cout << "\t\t\t\t\t\t\t\t\t尺码:";
  cin >> Size;
  cout << "\n\t\t\t\t\t容错:";
  cin >> fault_tolerant;
 }break;
 }
 loading();
 return t;

}

void Game::loading() {

 COORD c = { 50,15 };
 //设置控制台光标位置
 int t = 6;
 while (t--) {
 system("cls");
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 if(t%3==0)
  cout << "loading..." << endl;
 if (t % 3 == 1)
  cout << "loading.." << endl;
 if (t % 3 == 2)
  cout << "loading." << endl;
 Sleep(500);
 }

}

最后就是主函数部分

//扫雷游戏的主函数

#include<iostream>
#include<Windows.h>
#include"扫雷.h"
using namespace std;
int main() {
 Game game;
 while (true) {
 int t, g = 1;
 system("cls");
 //定义控制台屏幕初始坐标
 COORD c = { 30, 10 };
 //设置控制台光标位置
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
 cout << "欢迎来到 扫雷!!!\n\n\n\n\n\n";
 cout << "\t\t\t\t\t1.开始游戏\n\n\n\t\t\t\t\t2.阅读规则\n\n\n\t\t\t\t\t3.退出" << endl;
 cin >> t;
 switch (t) {
 case 1:game.play(); break;
 case 2:game.rule(); break;
 case 3:g=game.quit(); break;
 }
 if (g == 0)break;
 }
 return 0;

}

这是第一次写博客 也是第一次独立完成项目,有不足的地方,希望各位大牛指教。

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

(0)

相关推荐

  • C++学习心得之扫雷游戏

    本文实例为大家分享了C++实现扫雷游戏的具体代码,供大家参考,具体内容如下 一.序言 创建一个9*9有10个雷的扫雷游戏 文章的顺序是按照我当时的编程顺序写的,顺便写下我当初的一点思路,总的代码在文章最后,前面的都是分散的函数,有需要的朋友直接复制最后的 二.创建 创建一个头文件,一个放游戏的程序,一个放运行测试的程序 #define _CRT_SECURE_NO_WARNINGS 1 #include<stdlib.h>//生成随机数 #include<stdio.h> #inc

  • C++实现扫雷游戏(控制台不闪屏版)

    之前写了一个C++ 的控制台扫雷小游戏,但由于过度使用system("cls")刷屏,导致闪屏,因此重写了一个改善的不闪屏版本,并把逻辑重新捋了一遍. map.h #ifndef MAP_H_ #define MAP_H_ #define MAX_WID 18 #define MAX_LEN 32 #define UP_EDGE 1 //上边界 #define LEFT_EDGE 1 //左边界 #define RIGHT_EDGE _len //右边界 #define DOWN_ED

  • C++实现一个扫雷小游戏

    本文实例为大家分享了C++实现扫雷小游戏的具体代码,供大家参考,具体内容如下 目前的版本是0.98版本,可以提出增加新功能意见哦 代码如下: #include<bits/stdc++.h> #include<windows.h> using namespace std; long long int c,dev,m,k,cnt,d,e,jie=10,z,abc,n,b[1000][1000],a[1000][1000],cc,cd,ce,def; //c是随机行,k是随机列 bool

  • 利用c++和easyx图形库做一个低配版扫雷游戏

    游戏界面 由于这个游戏是我抱着玩一玩的心态做出来的,所以没有过多的去设计界面,也没有去找游戏的资源(图片.游戏音效等).仅使用了不同颜色的方块来表示游戏中方块的状态和种类.(绿色为初始状态(未翻转的状态),黄色为翻转后的背景颜色,蓝色表示已插旗的方块,红色代表地雷) 图1 游戏主菜单界面 图二 模式一的游戏界面(20*20 40个雷) 图三 模式二的游戏界面(10*10 20个雷) 图四 游戏成功界面 图五 游戏失败界面 2.全部代码 #include<graphics.h> #include

  • C++实现扫雷经典小游戏

    用C++复现经典扫雷,供大家参考,具体内容如下 主要是dfs实现打开一片的操作,数字带有颜色,很真实. windows扫雷中鼠标左右键同时按也实现了,即试探. 先上图,详见下面代码: 代码中有详细注释,编译无任何错误警告. Ps.有bug请评论指出,谢谢啦~ 另外我觉得代码比较臃肿,有什么可以优化的也请提出~ #include<cstdio> #include<cstring> #include<algorithm> #include<conio.h> #i

  • C++实现扫雷小游戏(控制台版)

    本文为大家分享了C++实现扫雷小游戏的具体代码,供大家参考,具体内容如下 程序功能: 提供三种模式:初级.中级.高级 操作模式:wsad控制光标移动,空格键打开方块 提供扫雷地图的类 map.h #ifndef MAP_H_ #define MAP_H_ #define MAX_LENGTH 32 //可以提供的地图最大长度 #define MAX_WIDTH 18 //可以提供的地图最大宽度 #define UP_EDGE 1 //上边界 #define DOWN_EDGE _wid //下边

  • C++实现简单扫雷游戏

    扫雷是一个经典的电脑小游戏,用C++来编一下,效果自己试一下 #include<stdio.h> #include<Windows.h> #define YELLOW FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY #define CYAN FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_INTENSITY #define ORANGE FOREGROUND_RED |

  • C++基于EasyX实现简单扫雷游戏

    本文实例为大家分享了C++ EasyX实现简单扫雷游戏的具体代码,供大家参考,具体内容如下 [实现代码] #include <cmath> #include <time.h> #include <easyx.h> #include <conio.h> using namespace std; #define Size 500 //定义窗口大小 #define SquareSize 50 //定义格子大小 #define BackGroundColor LIG

  • C++实现简单的扫雷游戏(控制台版)

    C++新手的代码,请各位多包涵. 用C++写的一个简单的控制台版扫雷游戏.玩家通过输入方块的坐标来翻开方块. 只是一个雏形,能够让玩家执行翻开方块的操作并且判断输赢,还未添加标记方块.游戏菜单.记录游戏时间.重新开一局等等的功能. 玩家输入坐标的方式来翻开方块只适用于小型的"雷区",若"雷区"大了,用坐标会变得很不方便. 代码片段扫雷V1.1 #include<stdio.h> #include<Windows.h> #define YELL

  • C++实现扫雷游戏

    本文实例为大家分享了C++实现扫雷游戏的具体代码,供大家参考,具体内容如下 直接上代码 #include<stdio.h> #include<windows.h> #include<stdlib.h> #include<time.h> #include<conio.h> #include<queue> #include<ctype.h> #define A 17 //地图的高 #define B 17 //地图的宽 #de

随机推荐