欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

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

时间:2021-12-17 10:04:15|栏目:C代码|点击:

本文实例为大家分享了C语言实现扫雷游戏的简易版,供大家参考,具体内容如下

game.h

#pragma once
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <windows.h>

#define ROW 12
#define COL 12
#define NUMS 20

#pragma warning(disable:4996)

void Menu();
void Game();

game.c

#include "game.h"

void Menu()
{
 printf("###########################\n");
 printf("## 1.Play 2. Exit ##\n");
 printf("###########################\n");
 printf("请输入# ");
}
void SetMines(char board[][COL], int row, int col)
{
 int num = NUMS;
 while (num) {
 int x = rand() % 10 + 1;
 int y = rand() % 10 + 1;
 if (board[x][y] == '0') {
 board[x][y] = '1';
 num--;
 }
 }
}
int GetNums(char board[][COL], int row, int col, int x, int y)
{
 return board[x - 1][y - 1] + board[x - 1][y] + \
 board[x - 1][y + 1] + board[x][y + 1] + \
 board[x + 1][y + 1] + board[x + 1][y] + \
 board[x + 1][y - 1] + board[x][y - 1] - 8 * '0';
}

void ShowBoard(char board[][COL], int row, int col)
{
 printf(" ");
 for (int i = 1; i < col - 1; i++) {
 printf(" %2d ", i);
 }
 printf("\n");
 printf("-------------------------------------------\n");
 for (int i = 1; i < row - 1; i++) {
 printf("%2d|", i);
 for (int j = 1; j < col - 1; j++) {
 printf(" %c |", board[i][j]);
 }
 printf("\n");
 printf("-------------------------------------------\n");
 }
}

void Game()
{
 system("cls");
 srand((unsigned long)time(NULL));
 char show_board[ROW][COL];
 char mine_board[ROW][COL];

 memset(show_board, '*', sizeof(show_board));
 memset(mine_board, '0', sizeof(mine_board));

 SetMines(mine_board, ROW, COL);
 int count = (ROW - 2) * (COL - 2) - NUMS;
 int x = 0;
 int y = 0;
 do {
 ShowBoard(show_board, ROW, COL);
 printf("请输入坐标# ");
 scanf("%d %d", &x, &y);
 if (x < 1 || x > ROW - 2 || y < 1 || y > COL - 2) {
 printf("输入位置越界,请重新输入!\n");
 continue;
 }
 if (show_board[x][y] != '*') {
 printf("该位置已经被排除!\n");
 continue;
 }
 if (mine_board[x][y] == '1') {
 break;
 }
 int num = GetNums(mine_board, ROW, COL, x, y);
 show_board[x][y] = num + '0';
 count--;
 system("cls");
 } while (count > 0);
 if (count > 0) {
 printf("你被炸死了!\n");
 ShowBoard(mine_board, ROW, COL);
 }
 else {
 printf("恭喜,你通过游戏!\n");
 }
}

main.c

#include "game.h"

void Menu()
{
 printf("###########################\n");
 printf("## 1.Play 2. Exit ##\n");
 printf("###########################\n");
 printf("请输入# ");
}
void SetMines(char board[][COL], int row, int col)
{
 int num = NUMS;
 while (num) {
 int x = rand() % 10 + 1;
 int y = rand() % 10 + 1;
 if (board[x][y] == '0') {
 board[x][y] = '1';
 num--;
 }
 }
}
int GetNums(char board[][COL], int row, int col, int x, int y)
{
 return board[x - 1][y - 1] + board[x - 1][y] + \
 board[x - 1][y + 1] + board[x][y + 1] + \
 board[x + 1][y + 1] + board[x + 1][y] + \
 board[x + 1][y - 1] + board[x][y - 1] - 8 * '0';
}

void ShowBoard(char board[][COL], int row, int col)
{
 printf(" ");
 for (int i = 1; i < col - 1; i++) {
 printf(" %2d ", i);
 }
 printf("\n");
 printf("-------------------------------------------\n");
 for (int i = 1; i < row - 1; i++) {
 printf("%2d|", i);
 for (int j = 1; j < col - 1; j++) {
 printf(" %c |", board[i][j]);
 }
 printf("\n");
 printf("-------------------------------------------\n");
 }
}

void Game()
{
 system("cls");
 srand((unsigned long)time(NULL));
 char show_board[ROW][COL];
 char mine_board[ROW][COL];

 memset(show_board, '*', sizeof(show_board));
 memset(mine_board, '0', sizeof(mine_board));

 SetMines(mine_board, ROW, COL);
 int count = (ROW - 2) * (COL - 2) - NUMS;
 int x = 0;
 int y = 0;
 do {
 ShowBoard(show_board, ROW, COL);
 printf("请输入坐标# ");
 scanf("%d %d", &x, &y);
 if (x < 1 || x > ROW - 2 || y < 1 || y > COL - 2) {
 printf("输入位置越界,请重新输入!\n");
 continue;
 }
 if (show_board[x][y] != '*') {
 printf("该位置已经被排除!\n");
 continue;
 }
 if (mine_board[x][y] == '1') {
 break;
 }
 int num = GetNums(mine_board, ROW, COL, x, y);
 show_board[x][y] = num + '0';
 count--;
 system("cls");
 } while (count > 0);
 if (count > 0) {
 printf("你被炸死了!\n");
 ShowBoard(mine_board, ROW, COL);
 }
 else {
 printf("恭喜,你通过游戏!\n");
 }
}

更多有趣的经典小游戏实现专题,分享给大家:

C++经典小游戏汇总

python经典小游戏汇总

python俄罗斯方块游戏集合

JavaScript经典游戏 玩不停

java经典小游戏汇总

javascript经典小游戏汇总

上一篇:C++中CSimpleList的实现与测试实例

栏    目:C代码

下一篇:C/C++ 避免数组越界的方法

本文标题:C语言实现扫雷游戏简易版

本文地址:http://www.codeinn.net/misctech/187127.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有