C++實現推箱子小項目

本文實例為大傢分享瞭C++實現推箱子小項目的具體代碼,供大傢參考,具體內容如下

代碼:

#include <bits/stdc++.h>
#include<conio.h>
using namespace std;
const int MAXN =10;
class GM
{ int x=1,y=1; //x縱坐標 ,y橫坐標
  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<<"輸錯瞭再試一次(521)";
  }
  }
 }
 void GM::Show()
{
cout<<"__________________________"<<endl;
cout<<"|       WXK&&WSN(共1關)   |"<<endl;
cout<<"|    遊戲規則:           |"<<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')))//有箱子但是會被主檔和直接是墻
return -1;
else if(map[x1][y1]=='O'&&map[x1-M][y1+N]!='H')//當有箱子且不會被墻檔
{ 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();

}

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

推薦閱讀: