您好,登錄后才能下訂單哦!
利用C語言實現一個可展開的掃雷小游戲?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
C語言是一門面向過程的、抽象化的通用程序設計語言,廣泛應用于底層開發,使用C語言可以以簡易的方式編譯、處理低級存儲器。
# 一、游戲的思路
先理清游戲大概需要實現的功能,菜單功能的實現、棋盤初始化、打印棋盤、布置雷等。運用兩個數組,一個放入布置雷的信息,另一個放入排查雷的信息。選一個坐標掃雷,坐標有雷則游戲結束,沒有就計算選中坐標的周圍8個格子中雷的總數放入選中的坐標中,若選中的坐標周圍8個格子中都沒有雷則自動展開。考慮到棋盤邊框的情況,實際數組要比打印出的棋盤多兩行兩列。
ROW、COL為打印行、列,ROWS、COLS為實際的數組行列
EASY_COUNT為雷的個數,可根據需要調整行列和雷的個數
#define ROW 9 #define COL 9 #define ROWS ROW+2 #define COLS COL+2 #define EASY_COUNT 10 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<Windows.h> void InitBoard(char board[ROWS][COLS], int rows, int cols, char set); void DisplayBoard(char board[ROWS][COLS], int row, int col); void SetMine(char board[ROWS][COLS], int row, int col); void FindMine(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col); void ExcludeMine(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y);
游戲實現的大致思路體現和菜單的實現,代碼如下:
#define _CRT_SECURE_NO_WARNINGS 1 #include"game.h" void menu() { printf("##############################\n"); printf("###### 1. play 0.exit ######\n"); printf("##############################\n"); } //布置雷 - 字符組存儲 - 雷用1表示,非雷用0表示 - 最外層一圈放0 //排查雷 - 為避免歧義,再用一個字符組存儲排查出來的雷的信息 - 未排除的用#表示 //最外層加一圈字符,只在中間設置雷,并打印展示棋盤中間位置,因此實際存放數組要比打印的棋盤多兩行兩列 void game() { //雷的信息存儲 //1.布置好的雷的信息 char mine[ROWS][COLS] = { 0 }; //2.排查出的雷的信息 char show[ROWS][COLS] = { 0 }; //初始化 InitBoard(mine, ROWS, COLS, '0'); InitBoard(show, ROWS, COLS, '#'); //打印棋盤 //DisplayBoard(mine, ROW, COL);//測試使用 DisplayBoard(show, ROW, COL); //布置雷 SetMine(mine, ROW, COL); //DisplayBoard(mine, ROW, COL);//測試使用 //掃雷 FindMine(mine, show, ROW, COL); } void test() { int input = 0; srand((unsigned int)time(NULL)); do { menu(); printf("請選擇:>"); scanf("%d", &input); switch(input) { case 1: game(); printf("將返回主菜單\n"); Sleep(5 * 1000); break; case 0: printf("退出游戲\n"); break; default: printf("選擇錯誤,請重新選擇\n"); break; } } while (input); } int main() { test(); return 0; }
存放函數的源文件需要引用頭文件
#define _CRT_SECURE_NO_WARNINGS 1 #include "game.h"
1.初始化棋盤
void InitBoard(char board[ROWS][COLS], int rows, int cols, char set) { int i = 0; int j = 0; for (i = 0; i < rows; i++) { for (j = 0; j < cols; j++) { board[i][j] = set; } } }
2.棋盤打印
void DisplayBoard(char board[ROWS][COLS], int row, int col) { int i = 0; int j = 0; //打印列號 for (i = 0; i <= col; i++) { printf("%d ", i); } printf("\n"); for (i = 1; i <= row; i++) { printf("%d ", i); for (j = 1; j <= col; j++) { printf("%c ", board[i][j]); } printf("\n"); } }
3.布置雷
void SetMine(char board[ROWS][COLS], int row, int col) { int count = EASY_COUNT; while (count) { int x = rand() % row + 1;//1-9 int y = rand() % col + 1; if (board[x][y] == '0') { board[x][y] = '1'; count--; } } }
4.查找雷和勝負判斷
int CheckShow(char show[ROWS][COLS], int row, int col) { int win = 0; int i = 0; int j = 0; for (i = 1; i <= row; i++) { for (j = 1; j <= col; j++) { if (show[i][j] == '#') win++; } } return win; } void FindMine(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col) { int x = 0; int y = 0; int win = 0; //9*9 - 10 = 71 while (1) { printf("請輸入排查雷的坐標:>"); scanf("%d%d", &x, &y); if (x >= 1 && x <= row && y >= 1 && y <= col) { //坐標合法 //1.踩雷 if (mine[x][y] == '1') { printf("很遺憾,你被炸死了\n"); DisplayBoard(mine, row, col); break; } else//不是雷 { //計算x,y坐標周圍有幾個雷 ExcludeMine(mine, show, x, y); DisplayBoard(show, row, col); win = CheckShow(show, row, col); if (win == EASY_COUNT) break; } } else { printf("坐標非法,請重新輸入!\n"); } } if (win == EASY_COUNT) { printf("恭喜你,排雷成功\n"); DisplayBoard(mine, row, col); } }
5.掃雷的展開和提醒
//'1' - '0' = 1 int get_mine_count(char mine[ROWS][COLS], int x, int y) { return mine[x - 1][y] + mine[x - 1][y - 1] + mine[x][y - 1] + mine[x + 1][y - 1] + mine[x + 1][y] + mine[x + 1][y + 1] + mine[x][y + 1] + mine[x - 1][y + 1] - 8 * '0'; } void ExcludeMine(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y) { int count = get_mine_count(mine, x, y); if (count != 0) { show[x][y] = count + '0'; } else { show[x][y] = ' '; if (show[x - 1][y] == '#') ExcludeMine(mine, show, x - 1, y); if (show[x - 1][y - 1] == '#') ExcludeMine(mine, show, x - 1, y - 1); if (show[x][y - 1] == '#') ExcludeMine(mine, show, x, y - 1); if (show[x + 1][y - 1] == '#') ExcludeMine(mine, show, x + 1, y - 1); if (show[x + 1][y] == '#') ExcludeMine(mine, show, x + 1, y); if (show[x + 1][y + 1] == '#') ExcludeMine(mine, show, x + 1, y + 1); if (show[x][y + 1] == '#') ExcludeMine(mine, show, x, y + 1); if (show[x - 1][y + 1] == '#') ExcludeMine(mine, show, x - 1, y + 1); } }
關于利用C語言實現一個可展開的掃雷小游戲問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。