溫馨提示×

溫馨提示×

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

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

C++實(shí)現(xiàn)迷宮小游戲的方法

發(fā)布時(shí)間:2021-04-14 10:51:48 來源:億速云 閱讀:759 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)C++實(shí)現(xiàn)迷宮小游戲的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

介紹

本程序是根據(jù)廣度優(yōu)先遍歷算法的思想設(shè)計(jì)的一款迷宮游戲,游戲設(shè)計(jì)了兩種模式一種自動(dòng)游戲模式,一種手動(dòng)模式。因?yàn)轫?xiàng)目在 Linux 開發(fā),需要在 Windows 開發(fā)的,請查看源代碼中需要修改地方的備注。

截圖

C++實(shí)現(xiàn)迷宮小游戲的方法

C++實(shí)現(xiàn)迷宮小游戲的方法

C++實(shí)現(xiàn)迷宮小游戲的方法

代碼

#include <iostream>
#include <cstdlib> //標(biāo)準(zhǔn)庫
#include <unistd.h> //延時(shí)函數(shù)
#include <stdio.h> //getchar 
#include <ctime> 
#include <termios.h> //終端設(shè)置

#define MAX_X 20
#define MAX_Y 30
bool flag = false;
bool slow = false;
bool autogame = true;

using namespace std;

int maze[MAX_X][MAX_Y]; //迷宮

//路線棧
class stack_of_maze{
private:
 //記錄迷宮坐標(biāo)
 struct node
 {
 int x;
 int y;
 char direction; //上一步路徑(如何來的)
 node* next;
 };
 node* head;
public:
 stack_of_maze(){
 head = NULL;
 }

 ~stack_of_maze(){
 node* p = head;
 while(head!=NULL){
 head = head->next;
 delete p;
 p = head;
 }
 }

 //壓棧
 void push(int xx,int yy,char ddirection){
 node* new_node = new node;
 if(new_node!=NULL){
 new_node->x = xx;
 new_node->y = yy;
 new_node->direction = ddirection;
 new_node->next = NULL;

 if(head==NULL)
 head = new_node;
 else{
 new_node->next = head;
 head = new_node;
 }
 }
 else
 cout<<"內(nèi)存分配失敗"<<endl;

 }

 //出棧
 node* pop(int& xx,int& yy){
 if(head!=NULL){
 node* p = head;
 head = head->next;
 xx = p->x;
 yy = p->y;
 delete p;
 }
 return head;
 }

 void print(){
 if(head!=NULL){
 node* p = head;
 while(p!=NULL){
 cout<<" "<<p->x<<" "<<p->y<<" "<<p->direction<<endl;
 p = p->next;
 }
 }
 else
 cout<<"棧為空,打印失敗"<<endl;
 }
};

//創(chuàng)建迷宮
void createMaze(){
 int maxway = MAX_X * MAX_Y; //最大通路
 int x,y;

 for(x=0;x<MAX_X;x++)
 for(y=0;y<MAX_Y;y++)
 maze[x][y] = 1; //先填充迷宮

 srand((unsigned)time(NULL)); //隨機(jī)函數(shù)種子,以時(shí)間為參數(shù)
 for(int i=0;i<maxway;i++) //隨機(jī)構(gòu)建迷宮通路
 {
 x = rand() % (MAX_X-2) + 1;
 y = rand() % (MAX_Y-2) + 1;
 maze[x][y] = 0;
 } 

 maze[1][1] = 0;  //入口
 maze[MAX_X-2][MAX_Y-2] = 0; //出口

 maze[0][1] = 3;
 maze[MAX_X-1][MAX_Y-2] = 0;
}

//輸出迷宮
void printMaze(){
 int x,y;
 system("clear"); //windows下使用system("cls")
 //cout<<endl;
 for(x=0;x<MAX_X;x++)
 {
 for(y=0;y<MAX_Y;y++)
 {
 if(maze[x][y]==0){cout<<" ";continue;} //通路
 if(maze[x][y]==1){cout<<"■";continue;} //墻
 if(maze[x][y]==2){cout<<"×";continue;} //死胡同
 if(maze[x][y]==3){cout<<"↓";continue;} //向下走
 if(maze[x][y]==4){cout<<"→";continue;}
 if(maze[x][y]==5){cout<<"←";continue;}
 if(maze[x][y]==6){cout<<"↑";continue;}
 if(maze[x][y]==7){cout<<"※";continue;} //當(dāng)前站立位置
 }
 cout<<endl;
 }
 if(slow){
 sleep(1);   //延時(shí)函數(shù)
 }
}

void check(stack_of_maze &s){
 int temp[MAX_X][MAX_Y];

 for(int x=0;x<MAX_X;x++)
 for(int y=0;y<MAX_Y;y++)
 temp[x][y] = maze[x][y];

 int x=1,y=1;  //出發(fā)點(diǎn) 
 while(1){
 temp[x][y] = 2;

 //向下
 if(temp[x+1][y]==0){
 s.push(x,y,'D');
 temp[x][y] = 3; //在當(dāng)前位置做一個(gè)向下的標(biāo)志
 x = x + 1;
 temp[x][y] = 7; //當(dāng)前位置
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 flag = true;
 return;
 }
 else
 continue;
 }

 //向右
 if(temp[x][y+1]==0){
 s.push(x,y,'R');
 temp[x][y] = 4; //在當(dāng)前位置做一個(gè)向右的標(biāo)志
 y = y + 1;
 temp[x][y] = 7;
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 flag = true;
 return;
 }
 else
 continue;
 }

 //向上
 if(temp[x-1][y]==0){
 s.push(x,y,'U');
 temp[x][y] = 6; //在當(dāng)前位置做一個(gè)向上的標(biāo)志
 x = x - 1;
 temp[x][y] = 7;
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 flag = true;
 return;
 }
 else
 continue;
 }

 //向左
 if(temp[x][y-1]==0){
 s.push(x,y,'L');
 temp[x][y] = 5; //在當(dāng)前位置做一個(gè)向右的標(biāo)志
 y = y - 1;
 temp[x][y] = 7;
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 flag = true;
 return;
 }
 else
 continue;
 }

 //上下左右不通,則回退
 if(s.pop(x,y)==NULL && temp[x-1][y]!=0 && temp[x][y-1]!=0 && temp[x][y+1]!=0 && temp[x+1][y]!=0){
 temp[0][1] = 7;
 if(temp[1][1]!=1)
 temp[1][1] = 2;
 return;
 }
 }
}

//輸入,windows下可以使用#incldue<conio.h>替代此函數(shù)
char getch(){
 char ch; 
 static struct termios oldt, newt; //保存原有終端屬性和新設(shè)置的終端屬性
 tcgetattr( STDIN_FILENO, &oldt); //獲得終端原有屬性并保存在結(jié)構(gòu)體oldflag

 //設(shè)置新的終端屬性
 newt = oldt;
 newt.c_lflag &= ~(ICANON);   
 tcsetattr( STDIN_FILENO, TCSANOW, &newt);

 //取消回顯
 system("stty -echo");
 ch = getchar();
 system("stty echo"); 

 tcsetattr( STDIN_FILENO, TCSANOW, &oldt); //讓終端恢復(fù)為原有的屬性
 return ch;
}

void move(){
 int x=1,y=1;  //出發(fā)點(diǎn) 
 while(1){
 switch(getch()){
 case 's':
 if(maze[x+1][y]==0){
  maze[x][y] = 0;
  x = x + 1;
  maze[x][y] = 7; //當(dāng)前位置
  printMaze();
  if((x==MAX_X-1)&&(y==MAX_Y-2)){
  cout<<"\n\n    成功走出"<<endl;
  return;
  }
 } 
 break;
 case 'd':
 if(maze[x][y+1]==0){
  if(maze[x][y+1]==0){
  maze[x][y] = 0;
  y = y + 1;
  maze[x][y] = 7;
  printMaze();
  if((x==MAX_X-1)&&(y==MAX_Y-2)){
  cout<<"\n\n    成功走出"<<endl;
  return;
  }
  } 
 }
 
 break;
 case 'w':
 if(maze[x-1][y]==0){
  maze[x][y] = 0;
  x = x - 1;
  maze[x][y] = 7;
  printMaze();
  if((x==MAX_X-1)&&(y==MAX_Y-2)){
  cout<<"\n\n    成功走出"<<endl;
  return;
  }
 } 
 break;
 case 'a':
 if(maze[x][y-1]==0){
  maze[x][y] = 0;
  y = y - 1;
  maze[x][y] = 7;
  printMaze();
  if((x==MAX_X-1)&&(y==MAX_Y-2)){
  cout<<"\n\n    成功走出"<<endl;
  return;
  }
 } 
 break;
 }
 }
}

void autoMove(stack_of_maze &s){
 int x=1,y=1;  //出發(fā)點(diǎn) 
 while(1){
 maze[x][y] = 2;

 //向下
 if(maze[x+1][y]==0){
 s.push(x,y,'D');
 maze[x][y] = 3; //在當(dāng)前位置做一個(gè)向下的標(biāo)志
 x = x + 1;
 maze[x][y] = 7; //當(dāng)前位置
 if(slow)
 printMaze();
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 s.push(x,y,'*');
 cout<<"\n\n    成功走出"<<endl;
 return;
 }
 else
 continue;
 }

 //向右
 if(maze[x][y+1]==0){
 s.push(x,y,'R');
 maze[x][y] = 4; //在當(dāng)前位置做一個(gè)向右的標(biāo)志
 y = y + 1;
 maze[x][y] = 7;
 if(slow)
 printMaze();
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 s.push(x,y,'*');
 cout<<"\n\n    成功走出"<<endl;
 return;
 }
 else
 continue;
 }

 //向上
 if(maze[x-1][y]==0){
 s.push(x,y,'U');
 maze[x][y] = 6; //在當(dāng)前位置做一個(gè)向上的標(biāo)志
 x = x - 1;
 maze[x][y] = 7;
 if(slow)
 printMaze();
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 s.push(x,y,'*');
 cout<<"\n\n    成功走出"<<endl;
 return;
 }
 else
 continue;
 }

 //向左
 if(maze[x][y-1]==0){
 s.push(x,y,'L');
 maze[x][y] = 5; //在當(dāng)前位置做一個(gè)向右的標(biāo)志
 y = y - 1;
 maze[x][y] = 7;
 if(slow)
 printMaze();
 if((x==MAX_X-1)&&(y==MAX_Y-2)){
 s.push(x,y,'*');
 cout<<"\n\n    成功走出"<<endl;
 return;
 }
 else
 continue;
 }

 //上下左右不通,則回退
 if(s.pop(x,y)==NULL && maze[x-1][y]!=0 && maze[x][y-1]!=0 && maze[x][y+1]!=0 && maze[x+1][y]!=0){
 cout<<"\n\n    沒有找到合適的路徑"<<endl;
 maze[0][1] = 7;
 if(maze[1][1]!=1)
 maze[1][1] = 2;
 return;
 }
 }
}

void menu();

void gamestart(){
 flag = false;
 while(!flag){
 stack_of_maze stack; //定義一個(gè)棧的對象,用來記錄行走路線 
 createMaze();
 check(stack);
 system("clear");
 cout<<"\t*    loading.    *"<<endl;
 system("clear");
 cout<<"\t*    loading..    *"<<endl;
 system("clear");
 cout<<"\t*    loading...   *"<<endl;
 }
 printMaze();  //輸出當(dāng)前迷宮的初始狀態(tài)
 cout<<"\n\n    輸入enter鍵繼續(xù)"<<endl;
 getchar();
 if(!autogame){
 move();
 cout<<"\n\n    輸入enter鍵繼續(xù)"<<endl;
 getchar();
 menu();
 }
 else{
 stack_of_maze stack1; 
 autoMove(stack1);  //行走中……
 } 
 printMaze();  //輸出迷宮的最終狀態(tài)
 cout<<"\n\n    輸入enter鍵繼續(xù)"<<endl;
 getchar();
 menu();
}

void menu(){
 system("clear");
 int num;
 cout<<"\t****************************************"<<endl;
 cout<<"\t*          *"<<endl;
 cout<<"\t*    1.查看路徑    *"<<endl;
 cout<<"\t*          *"<<endl;
 cout<<"\t*    2.自動(dòng)進(jìn)行    *"<<endl;
 cout<<"\t*          *"<<endl;
 cout<<"\t*    3.自行游戲    *"<<endl;
 cout<<"\t*          *"<<endl;
 cout<<"\t*    4.退出游戲    *"<<endl;
 cout<<"\t*          *"<<endl;
 cout<<"\t****************************************"<<endl;
 slow = false;
 switch(getch()){
 case '1':
 autogame = true;
 gamestart();break;
 case '2':
 autogame = true;
 slow = true;
 gamestart();
 break;
 case '3':
 autogame = false;
 gamestart();
 break;
 case '4':
 exit(1);break;
 default:
 cout<<"\n\n    錯(cuò)誤操作,輸入enter返回!"<<endl;
 getchar();
 menu();
 }
 getchar();
}

int main(int argc,char** argv){
 menu();
 return 0;
}

關(guān)于“C++實(shí)現(xiàn)迷宮小游戲的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI