亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++學習心得之掃雷游戲

發布時間:2020-10-25 05:29:02 來源:腳本之家 閱讀:172 作者:璀璨的冰 欄目:編程語言

本文實例為大家分享了C++實現掃雷游戲的具體代碼,供大家參考,具體內容如下

一、序言

創建一個9*9有10個雷的掃雷游戲
文章的順序是按照我當時的編程順序寫的,順便寫下我當初的一點思路,總的代碼在文章最后,前面的都是分散的函數,有需要的朋友直接復制最后的

二、創建

創建一個頭文件,一個放游戲的程序,一個放運行測試的程序

#define _CRT_SECURE_NO_WARNINGS 1
#include<stdlib.h>//生成隨機數
#include<stdio.h>
#include<time.h>//生成時間戳

#define ROW 9//行數
#define COL 9//列數
#define ROWS ROW+2
#define COLS COL+2
#define EASY 10//雷數

void InitBoard(char board[ROWS][COLS], int rows, int cols, char set);//初始函數
void DisplayBoard(char board[ROWS][COLS], int row, int col);//展示函數
void SetBoard(char board[ROWS][COLS], int row, int col);//造雷函數
void CheckBoard(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col);//掃描函數

三、選擇界面

進入游戲,可能出現情況三種,分別是退出,游戲和輸入錯誤
也許有人一局完了還想玩,所以要設置循環,寫完代碼可以運行一下,避免最后出bug范圍太大

#include"game.h"
void test()
{
 int input = 0;
 do
 {
 menu();
 printf("input choice:>");
 scanf("%d", &input);
 switch (input)
 {
 case 0:
 printf("over\n");
 break;
 case 1:
 game();
 break;
 default:
 printf("input wrong\n");
 break;
 }
 } while (input);
}
void menu()
{
 printf("*********************\n");
 printf("******* 1.game ******\n");
 printf("****** 0.over ******\n");
 printf("*********************\n");
}
int main()
{
 test();
 return 0;
}

四、游戲部分

1、聲明變量和初始化

建立存儲掃雷的元素的數組,這里咱們可以設置兩個字符形數組,一個是標識著炸彈‘1'的mine數組,一個是用來給玩家展示的show數組
雖然是99的大小,但是在之后要由電腦掃描咱們選中點周圍的區域,如果數組為9行9列,電腦在掃描最外面一行時就跟中間的部分不一樣了,為了方便,咱們建立1111的數組

void game()
{
 srand((unsigned)time(NULL));//這里使用了time.h制造時間戳,以便隨機生成數
 char mine[ROWS][COLS];
 char show[ROWS][COLS];
 InitBoard(mine, ROWS, COLS, '0');
 InitBoard(show, ROWS, COLS, '*');
 DisplayBoard(show, ROW, COL);
 SetBoard(mine, ROW, COL);
 CheckBoard(mine, show, ROW, COL);
}
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、展示函數

申明和定義好變量,肯定要讓玩家看到游戲盤的變化情況才能玩,所以寫一個展示函數
mine數組中炸彈用‘1'來表示,不是炸彈用‘0'表示,show數組中我們用‘*'表示一個區域,然后選中的點要是周圍無炸彈,就是‘ ',否則就標識出周圍的炸彈數。

void DisplayBoard(char board[ROWS][COLS], int row, int col)
{
 int i = 0;
 int j = 0;
 printf("----------------------------");
 printf("\n");
 for (i = 0; i <= row; 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");
 }
 printf("----------------------------");
 printf("\n");
}

3、造炸彈

這里咱們在頭文件定義炸彈數,以后想玩多點炸彈,修改一個數就行,方便快捷

void SetBoard(char board[ROWS][COLS], int row, int col)
{
 int x = 0;
 int y = 0;
 int num = EASY;
 while (num)
 {
 x = rand() % ROW + 1;
 y = rand() % COL + 1;
 if (board[x][y] == '0')
 {
 board[x][y] = '1';
 num--;
 }
 }
}

4、掃描函數

進入游戲,玩家只有選擇了要檢查的點才能繼續,這里有三種情況,因為要有很多次選擇,所以采用循環
(1)選中雷區,那么直接跳出循環,游戲結束
(2)沒選中雷區,電腦會掃描周圍的區域,把周圍無雷的點展開,展開周圍有雷的點
這里還要說一下mine數組為什么要用‘0'和‘1'來做標記,因為0和1這兩個字符在ascII碼表里是連續的,一會在電腦掃描周圍時可以直接通過減法算出周圍的雷數

void CheckBoard(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col)
{
 int ret = 0;
 int x = 0;
 int y = 0;
 int num = 0;
 while (ret < ROW*COL - EASY)
 {
 printf("輸入排查坐標\n");
 scanf("%d%d", &x, &y);
 if (x > 0 && x <= row && y > 0 && y <= col)
 {
 if (mine[x][y] == '1')//選中雷區,游戲結束
 {
 printf("炸死\n");
 DisplayBoard(mine, row, col);//展示mine區域
 break;//跳出循環
 }
 else//沒踩中雷區
 {
  ZeroLine(mine, show, x, y);//展開周圍的區域
 DisplayBoard(show, row, col);
 ret++;
 }
 }
 else
 {
 printf("input wrong\n");
 }
 }
 if (ret == ROW * COL - EASY)
 {
 printf("勝利\n");
 }
}
void ZeroLine(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y)
{
 int ret = 0;
 ret = AroundNum(mine, x, y);//掃描函數,掃描該點周圍雷數
 if (x >= 0 && y >= 0 && x < ROWS && y < COLS)
 {
 if (ret == 0)
 {
 show[x][y] = ' ';//無雷則為空白
 if (mine[x][y + 1] == '0' && show[x][y + 1] == '*')
 {
  ZeroLine(mine, show, x, y + 1);
 }
 if (mine[x][y - 1] == '0' && show[x][y - 1] == '*')
 {
  ZeroLine(mine, show, x, y - 1);
 }
 if (mine[x - 1][y] == '0' && show[x - 1][y] == '*')
 {
  ZeroLine(mine, show, x - 1, y);
 }
 if (mine[x + 1][y] == '0' && show[x + 1][y] == '*')
 {
  ZeroLine(mine, show, x + 1, y);
 }
 if (mine[x + 1][y + 1] == '0' && show[x + 1][y + 1] == '*')
 {
  ZeroLine(mine, show, x + 1, y + 1);
 }
 if (mine[x - 1][y - 1] == '0' && show[x - 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x - 1, y - 1);
 } 
 if (mine[x + 1][y - 1] == '0' && show[x + 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x + 1, y - 1);
 }
 if (mine[x - 1][y + 1] == '0' && show[x - 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x - 1, y + 1);
 }
 }
 else
 {
 show[x][y] = ret + '0';
 }
 }
}
int AroundNum(char mine[ROWS][COLS], int x, int y)
{
 return mine[x - 1][y - 1] + mine[x][y - 1] + mine[x - 1][y] +
 mine[x + 1][y + 1] + mine[x][y + 1] + mine[x + 1][y] +
 mine[x - 1][y + 1] + mine[x + 1][y - 1] - 8 * mine[x][y];
}

五、總代碼

1、頭文件

#define _CRT_SECURE_NO_WARNINGS 1
#include<stdlib.h>
#include<stdio.h>
#include<time.h>

#define ROW 9
#define COL 9
#define ROWS ROW+2
#define COLS COL+2
#define EASY 10

void InitBoard(char board[ROWS][COLS], int rows, int cols, char set);
void DisplayBoard(char board[ROWS][COLS], int row, int col);
void SetBoard(char board[ROWS][COLS], int row, int col);
void CheckBoard(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col);

2、游戲部分

#include"game.h"

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;
 }
 } 
}
void DisplayBoard(char board[ROWS][COLS], int row, int col)
{
 int i = 0;
 int j = 0;
 printf("----------------------------");
 printf("\n");
 for (i = 0; i <= row; 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");
 }
 printf("----------------------------");
 printf("\n");
}
void SetBoard(char board[ROWS][COLS], int row, int col)
{
 int x = 0;
 int y = 0;
 int num = EASY;
 while (num)
 {
 x = rand() % ROW + 1;
 y = rand() % COL + 1;
 if (board[x][y] == '0')
 {
 board[x][y] = '1';
 num--;
 }
 }
}
int AroundNum(char mine[ROWS][COLS], int x, int y)
{
 return mine[x - 1][y - 1] + mine[x][y - 1] + mine[x - 1][y] +
 mine[x + 1][y + 1] + mine[x][y + 1] + mine[x + 1][y] +
 mine[x - 1][y + 1] + mine[x + 1][y - 1] - 8 * mine[x][y];
}
void ZeroLine(char mine[ROWS][COLS], char show[ROWS][COLS], int x, int y)
{
 int ret = 0;
 ret = AroundNum(mine, x, y);
 if (x >= 0 && y >= 0 && x < ROWS && y < COLS)
 {
 if (ret == 0)
 {
 show[x][y] = ' ';
 if (mine[x][y + 1] == '0' && show[x][y + 1] == '*')
 {
  ZeroLine(mine, show, x, y + 1);
 }
 if (mine[x][y - 1] == '0' && show[x][y - 1] == '*')
 {
  ZeroLine(mine, show, x, y - 1);
 }
 if (mine[x - 1][y] == '0' && show[x - 1][y] == '*')
 {
  ZeroLine(mine, show, x - 1, y);
 }
 if (mine[x + 1][y] == '0' && show[x + 1][y] == '*')
 {
  ZeroLine(mine, show, x + 1, y);
 }
 if (mine[x + 1][y + 1] == '0' && show[x + 1][y + 1] == '*')
 {
  ZeroLine(mine, show, x + 1, y + 1);
 }
 if (mine[x - 1][y - 1] == '0' && show[x - 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x - 1, y - 1);
 } 
 if (mine[x + 1][y - 1] == '0' && show[x + 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x + 1, y - 1);
 }
 if (mine[x - 1][y + 1] == '0' && show[x - 1][y - 1] == '*')
 {
  ZeroLine(mine, show, x - 1, y + 1);
 }
 }
 else
 {
 show[x][y] = ret + '0';
 }
 }
}
void CheckBoard(char mine[ROWS][COLS], char show[ROWS][COLS], int row, int col)
{
 int ret = 0;
 int x = 0;
 int y = 0;
 int num = 0;
 while (ret < ROW*COL - EASY)
 {
 printf("輸入排查坐標\n");
 scanf("%d%d", &x, &y);
 if (x > 0 && x <= row && y > 0 && y <= col)
 {
 if (mine[x][y] == '1')
 {
 printf("炸死\n");
 DisplayBoard(mine, row, col);
 break;
 }
 else
 {
  ZeroLine(mine, show, x, y);
 DisplayBoard(show, row, col);
 ret++;
 }
 }
 else
 {
 printf("input wrong\n");
 }
 }
 if (ret == ROW * COL - EASY)
 {
 printf("勝利\n");
 }
}

3、檢測部分

#include"game.h"
void menu()
{
 printf("*********************\n");
 printf("******* 1.game ******\n");
 printf("****** 0.over ******\n");
 printf("*********************\n");
}
void game()
{
 srand((unsigned)time(NULL));
 char mine[ROWS][COLS];
 char show[ROWS][COLS];
 InitBoard(mine, ROWS, COLS, '0');
 InitBoard(show, ROWS, COLS, '*');
 DisplayBoard(show, ROW, COL);
 SetBoard(mine, ROW, COL);
 CheckBoard(mine, show, ROW, COL);
}
void test()
{
 int input = 0;
 do
 {
 menu();
 printf("input choice:>");
 scanf("%d", &input);
 switch (input)
 {
 case 0:
 printf("over\n");
 break;
 case 1:
 game();
 break;
 default:
 printf("input wrong\n");
 break;
 }
 } while (input);
}
int main()
{
 test();
 return 0;
}

更多精彩游戲小代碼,請點擊《游戲專題》閱讀

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌海市| 望奎县| 三河市| 新巴尔虎左旗| 洪湖市| 普兰店市| 茂名市| 大埔县| 安阳县| 武陟县| 怀柔区| 波密县| 兴化市| 台南县| 平阴县| 新巴尔虎左旗| 应用必备| 四会市| 河间市| 鄢陵县| 高陵县| 北川| 迁西县| 邵阳市| 得荣县| 霍林郭勒市| 盐源县| 渭南市| 墨竹工卡县| 奎屯市| 镇沅| 通州区| 汕尾市| 綦江县| 通海县| 博罗县| 应用必备| 江达县| 高青县| 勃利县| 云霄县|