91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用C++怎么編寫一個開心消消樂游戲

發布時間:2020-12-16 14:07:42 來源:億速云 閱讀:355 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關使用C++怎么編寫一個開心消消樂游戲,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

用C++實現的開心消消樂主要分成一個一個模塊去實現的,較少代碼的耦合性,在這里用了一個xiaoxiaogame類去實現,其中構造函數中對數組和變量的初始化 xiaoxiaogame(int row1, int col1); 用void display();這樣一個函數實現顯示,用bool isvalid(int x, int y);來判斷一個坐標所在的位置能不能消除, 用bool isgameover();判斷游戲有沒有結束,用void remove(int x, int y, int target);來消除方塊,然后用void adjustment()去調試消除方塊后的位置 用void playgame();來執行游戲。

代碼如下:

#include<iostream>
#include<string>
#include<vector>
#include<ctime>
using namespace std;

class xiaoxiaogame
{
public:
 //構造函數中對數組和變量的初始化
 xiaoxiaogame(int row1, int col1);
 //顯示
 void display();
 //判斷一個坐標所在的位置能不能消
 bool isvalid(int x, int y);
 //判斷游戲有沒有結束
 bool isgameover();
 //用深度遍歷去執行消除功能
 void remove(int x, int y, int target);
 //消除方塊后剩余方塊的擺放位置的調整
 void adjustment();
 //執行游戲
 void playgame();
private:
 //存放游戲開心消消樂的二維數組
 vector<vector<int>>nums;
 //記錄存在的狀態
 vector<vector<bool>>state;
 //記錄分數
 int score;
 //連在一起的相同數字的個數
 int cnt;
 //開心消消樂的行
 int row;
 //開心消消樂的列
 int col;
};
xiaoxiaogame::xiaoxiaogame(int row1, int col1)
{
 row = row1;
 col = col1;
 score = 0;
 cnt = 0;
 srand(time(0));
 vector<vector<int>>tmp(row1,vector<int>(col1,0));
 vector<vector<bool>>temp(row1, vector<bool>(col1, false));
 state = temp;
 for (int i = 0; i < row; i++)
 {
 for (int j = 0; j < col; j++)
 {
  tmp[i][j] = rand() % 3;
 }
 }
 nums = tmp;
 display();
}
void xiaoxiaogame::display()
{
 for (int i = 0; i < row; i++)
 {
 for (int j = 0; j < col; j++)
 {
  if (!state[i][j])
  cout << nums[i][j] << " ";
  else cout << " ";
 }
 cout << endl;
 }
 cout << "your score is :" << score << endl;
}
bool xiaoxiaogame::isvalid(int x, int y)
{
 if (x < 0 || x >= row || y < 0 || y >= col || state[x][y])return false;
 return true;
}
bool xiaoxiaogame::isgameover()
{
 for (int i = 0; i < row; i++)
 {
 for (int j = 0; j < col; j++)
 {
  int target = nums[i][j];
  int x = i;
  int y = j;
  if (!isvalid(i, j))return false;
  if ((isvalid(x + 1, y) && nums[x + 1][y] == target) || (isvalid(x - 1, y) && nums[x - 1][y] == target) || \
  (isvalid(x, y + 1) && nums[x][y + 1] == target) || (isvalid(x, y - 1) && nums[x][y - 1] == target))
  return false;
 }
 }
 return true;
}
void xiaoxiaogame::remove(int x, int y, int target)
{
 if (!isvalid(x, y))return;
 if (nums[x][y] != target)return;
 state[x][y] = true;
 cnt++;
 remove(x + 1, y, target);
 remove(x - 1, y, target);
 remove(x, y + 1, target);
 remove(x, y - 1, target);
}
void xiaoxiaogame::adjustment()
{
 for (int j = 0; j < col; j++)
 {
 vector<int>tmp;
 for (int i = row - 1; i >= 0; --i)
 {
  if (!state[i][j])tmp.push_back(nums[i][j]);

 }
 int r = row - 1;
 for (int i = 0; i < tmp.size(); i++)
 {
  nums[r][j] = tmp[i];
  state[r][j] = false;
  r--;
 }
 for (; r >= 0; r--)
 {
  state[r][j] = true;
 }
 }
}
void xiaoxiaogame::playgame()
{
 int x, y;
 while (cin >> x >> y)
 {
 if (!isvalid(x, y))continue;
 int target = nums[x][y];
 cnt = 0;
 if ((isvalid(x + 1, y) && nums[x + 1][y] == target) || (isvalid(x - 1, y) && nums[x - 1][y] == target) || \
  (isvalid(x, y + 1) && nums[x][y + 1] == target) || (isvalid(x, y - 1) && nums[x][y - 1] == target))
  remove(x, y, target);
 score += target*cnt;
 adjustment();
 display();
 if (isgameover())
 {
  cout << "gameover" << endl;
  break;
 }
 }
}
int main()
{
 xiaoxiaogame t(10, 10);
 t.playgame();
 cin.get();
 return 0;
}

看完上述內容,你們對使用C++怎么編寫一個開心消消樂游戲有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

c++
AI

梓潼县| 宝兴县| 青龙| 甘南县| 丹江口市| 东莞市| 望都县| 嘉义县| 宜都市| 九龙城区| 遂宁市| 拜城县| 诸暨市| 武功县| 墨江| 临江市| 孟州市| 上蔡县| 潮州市| 汉中市| 潞西市| 通道| 托克逊县| 石家庄市| 大宁县| 平乡县| 达日县| 广东省| 洪洞县| 乃东县| 金寨县| 南涧| 娄底市| 宁化县| 北川| 桑植县| 青铜峡市| 陆河县| 大庆市| 德昌县| 怀宁县|