您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++怎么實(shí)現(xiàn)推箱子小游戲”,在日常操作中,相信很多人在C++怎么實(shí)現(xiàn)推箱子小游戲問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”C++怎么實(shí)現(xiàn)推箱子小游戲”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
本文實(shí)例為大家分享了C++實(shí)現(xiàn)推箱子小項(xiàng)目的具體代碼,供大家參考,具體內(nèi)容如下
代碼:
#include <bits/stdc++.h> #include<conio.h> using namespace std; const int MAXN =10; class GM { int x=1,y=1; //x縱坐標(biāo) ,y橫坐標(biāo) int count =0; public: char map[MAXN][MAXN]; GM(); int RUN(); int check(int x1,int y1,int t,int C);//檢查 void Display(); //打印 void Show(); void Start(); }; void GM::Start() { while(1) { Show(); int h; cin>>h; if(h==521) { Display(); while(1) { int h=RUN(); if(h==-1){system("cls"); cout<<"I LOVE YOU!"; system("pause"); exit(0); } else if(h==4) { system("cls"); GM k; k.Start(); } else Display(); } } else {system("cls"); cout<<"輸錯(cuò)了再試一次(521)"; } } } void GM::Show() { cout<<"__________________________"<<endl; cout<<"| WXK&&WSN(共1關(guān)) |"<<endl; cout<<"| 游戲規(guī)則: |"<<endl; cout<<"| &:人 O:箱子 |"<<endl; cout<<"| H:墻 *:目的地 |"<<endl; cout<<"| 操作說明 Q:退出 |"<<endl; cout<<"| W:上 S:下 |"<<endl; cout<<"| D:右 A:左 |"<<endl; cout<<"| 開始輸入:521 |"<<endl; cout<<"|_________________________|"<<endl; } void GM:: Display() //打印 { system("cls"); cout<<"Count:"<<count<<"/ 2"<<endl; for(int i=0;i<10;i++) { for(int j=0; j<10;j++) if(map[i][j]!='0') cout<<map[i][j]; else cout<<" "; cout<<endl; } } GM::GM() //初始化地圖 { fill(map[0],map[0]+MAXN*MAXN,'0'); for(int i=0;i<MAXN;i++) { map[0][i]='H'; map[i][0]='H'; map[MAXN-1][i]='H'; map[i][MAXN-1]='H'; } map[2][2]='O'; map[6][2]='O'; map[1][1]='P'; map[1][3]='H'; map[2][3]='H'; map[3][3]='H'; map[2][5]='H'; map[6][4]='H'; map[5][4]='H'; map[7][4]='H'; map[3][5]='H'; map[3][6]='H'; map[3][8]='H'; map[4][8]='H'; map[6][5]='*'; } int GM::check(int x1,int y1,int t,int L) { int M=0,N=0; if(t==1) { M=L; N=0; } else if(t==-1) { M=0; N=L; } if(map[x1][y1]=='H'||(map[x1][y1]=='O'&&(map[x1-M][y1+N]=='H'||map[x1-M][y1+N]=='O')))//有箱子但是會(huì)被主檔和直接是墻 return -1; else if(map[x1][y1]=='O'&&map[x1-M][y1+N]!='H')//當(dāng)有箱子且不會(huì)被墻檔 { if(map[x1-M][y1+N]=='*') return 3; return 1; } else if(map[x1][y1]!='H'&&map[x1][y1]!='*')return 2; } int GM::RUN() { char ch =getch(); int t =1,L=1;//t判斷上下還是左右,L判斷加減 if(ch =='a'||ch=='d'||ch=='A'||ch=='D')t=-1; if(ch=='a'||ch=='s'||ch=='A'||ch=='S')L=-1; if(ch=='Q'||ch=='q')return 4; if(t==1&&check(x-L,y,t,L)==1)//往上或下有箱子了話 { map[x][y]='0'; x-=L; map[x][y]='P'; map[x-L][y]='O'; } else if(t==1&&check(x-L,y,t,L)==2)//往上或者往下能走了話 { map[x][y]='0'; x-=L; map[x][y]='P'; } else if(t==1&&check(x-L,y,t,L)==3) { map[x][y]='0'; x-=L; map[x][y]='P'; if(count==2) return -1; } else if(t==-1&&check(x,y+L,t,L)==1)//往左或右有箱子了話 { map[x][y]='0'; y+=L; map[x][y]='P'; map[x][y+L]='O'; } else if(t==-1&&check(x,y+L,t,L)==2)//往左或者往右能走了話 { map[x][y]='0'; y+=L; map[x][y]='P'; } else if(t==-1&&check(x,y+L,t,L)==3) { map[x][y]='0'; y+=L; map[x][y]='P'; count++; if(count==2) return -1; } } int main() { system("color E4"); GM k; k.Start(); }
到此,關(guān)于“C++怎么實(shí)現(xiàn)推箱子小游戲”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。