服务器之家

服务器之家 > 正文

C语言实现简易扫雷小游戏

时间:2021-08-03 13:56     来源/作者:筱肖

我们经常在电脑上面玩的扫雷游戏,很考验我们的判断能力,但是实现一个扫雷游戏并不是很困难,只要多注意一些细节就好,就可以将一个简单的扫雷游戏写出来!

接下来先介绍扫雷游戏要实现的功能:

首先,要对雷阵进行初始化,在初始化的时候要注意要定义两个数组,一个是让我们扫雷的阵,另外一个就是显示某一个地方的周围的雷的总个数的矩阵,在初始化的时候要注意为了避免传址的问题,我们把它写在主函数里面。

?
1
2
3
4
5
6
7
8
9
10
11
12
char mine[rows][cols];
char show[rows][cols];
 int i = 0;
 int j = 0;
 for (i = 0; i < rows - 1; i++)
 {
 for (j = 0; j < cols - 1; j++)
 {
  mine[i][j] = '0';
  show[i][j] = '*';
 }
 }

接下来就是电脑在随机布局雷阵的函数,这个函数要用到rand()&nbsp;函数,来产生随机值,在雷阵里面随机布雷。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void set_mine(char mine[rows][cols])
{
 int count = Count;
 int x = 0;
 int y = 0;
 srand((unsigned)time(NULL));
 while (count)
 {
 x = rand() % 9 + 1;
 y = rand() % 9 + 1;
 if (mine[x][y] == '0')
 {
  mine[x][y] = '1';
  count--;
 }
 }
}

再有就是计算雷的个数的函数,要讲某一个坐标位置的周围8个位置的雷的个数算出来,并且将个数显示出来

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
int get_num(char mine[rows][cols], int x, int y)
{
 int count = 0;
 if (mine[x - 1][y - 1] == '1')//左上方
 {
 count++;
 }
 if (mine[x - 1][y] == '1')//左边
 {
 count++;
 }
 if (mine[x - 1][y + 1] == '1')//左下方
 {
 count++;
 }
 if (mine[x][y - 1] == '1')//上方
 {
 count++;
 }
 if (mine[x][y + 1] == '1')//下方
 {
 count++;
 }
 if (mine[x + 1][y - 1] == '1')//右上方
 {
 count++;
 }
 if (mine[x + 1][y] == '1')//右方
 {
 count++;
 }
 if (mine[x + 1][y + 1] == '1')//右下方
 {
 count++;
 }
 return count;
}

将扫雷函数的各个函数都实现了之后,我们来看一下完整的代码

头文件game.h 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>
#define rows 11
#define cols 11
#define Count 10
 
int menu();//菜单函数
void display(char show[rows][cols]);
int Game(char mine[rows][cols],char show[rows][cols]);//游戏
void set_mine(char mine[rows][cols]);//设置雷的位置
int Sweep(char mine[rows][cols], char show[rows][cols]);//开始扫雷
int get_num(char mine[rows][cols], int x, int y);//计算雷的个数

实现函数 game.c

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#include"game.h"
 
//菜单函数
int menu()
{
 printf("********************************************\n");
 printf("********************************************\n");
 printf("*************welcome to saolei*************\n");
 printf("*************  1.   play  *************\n");
 printf("*************  0.   exit  *************\n");
 printf("********************************************\n");
 printf("********************************************\n");
 return 0;
}
 
 
//设置雷的位置
void set_mine(char mine[rows][cols])
{
 int count = Count;
 int x = 0;
 int y = 0;
 srand((unsigned)time(NULL));
 while (count)
 {
 x = rand() % 9 + 1;
 y = rand() % 9 + 1;
 if (mine[x][y] == '0')
 {
  mine[x][y] = '1';
  count--;
 }
 }
}
 
//打印下棋完了显示的界面
void display(char show[rows][cols])
{
 int i = 0;
 int j = 0;
 printf(" ");
 for (i = 1; i < cols - 1; i++)
 {
 printf(" %d ", i);
 }
 printf("\n");
 for (i = 1; i < rows - 1; i++)
 {
 printf("%d", i);
 for (j = 1; j < cols - 1; j++)
 {
  printf(" %c ", show[i][j]);
 }
 printf("\n");
 }
}
 
//计算雷的个数
int get_num(char mine[rows][cols], int x, int y)
{
 int count = 0;
 if (mine[x - 1][y - 1] == '1')//左上方
 {
 count++;
 }
 if (mine[x - 1][y] == '1')//左边
 {
 count++;
 }
 if (mine[x - 1][y + 1] == '1')//左下方
 {
 count++;
 }
 if (mine[x][y - 1] == '1')//上方
 {
 count++;
 }
 if (mine[x][y + 1] == '1')//下方
 {
 count++;
 }
 if (mine[x + 1][y - 1] == '1')//右上方
 {
 count++;
 }
 if (mine[x + 1][y] == '1')//右方
 {
 count++;
 }
 if (mine[x + 1][y + 1] == '1')//右下方
 {
 count++;
 }
 return count;
}
//扫雷
int Sweep(char mine[rows][cols], char show[rows][cols])
{
 int count = 0;
 int x = 0;
 int y = 0;
 while (count!=((rows-2)*(cols-2)-Count))
 {
 printf("请输入坐标:\n");
 scanf("%d%d", &x, &y);
 if (mine[x][y] == '1')
 {
  printf("你踩到雷了!\n");
  return 0;
 }
 else
 {
  int ret = get_num(mine, x, y);
  show[x][y] = ret + '0';
  //set_mine(mine);
  display(show);
  count++;
 }
 }
 printf("恭喜你赢了!\n");
 display(mine);
 return 0;
}
 
 
//游戏
int Game(char mine[rows][cols],char show[rows][cols])
{
 set_mine(mine);
 display(show);
 //display(mine);//可以将雷的位置显示出来
 Sweep(mine,show);
 return 0;
}

最后就是测试函数 text.c

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include"game.h"
 
int main()
{
 int input = 0;
 char mine[rows][cols];
 char show[rows][cols];
 int i = 0;
 int j = 0;
 for (i = 0; i < rows - 1; i++)
 {
 for (j = 0; j < cols - 1; j++)
 {
  mine[i][j] = '0';
  show[i][j] = '*';
 }
 }
 menu();
 while (1)
 {
 printf("请选择:");
 scanf("%d", &input);
 if (input == 1)
 {
  printf("进入游戏\n");
  Game(mine,show);
  break;
 }
 else if (input == 0)
 {
  printf("退出游戏!\n");
  exit(0);
  break;
 }
 else
 {
  printf("输入有误!\n");
 }
 }
 return 0;
}

C语言实现简易扫雷小游戏

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

原文链接:https://blog.csdn.net/LX18792732127/article/details/52794268

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部