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); } }
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。