真的求求点赞+关注+收藏了!!!(c++小游戏4)(还有其它的)(我会回关的)

19、扫雷

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<conio.h>
#include<windows.h>
#include<cstdlib>
#include<ctime>
using namespace std;
 
#define MAXN 35
#define MIDX 10
#define MIDY 40
#define CG 25
#define CK 80
 
int G,K,Lnum,Wnum;//G为地图高,K为地图,Lnum为地图中的雷数,Wnum为剩余的小旗数
int nx,ny;//现在光标所在的位置
bool QR=0,Lose=0,is_flag_true[MAXN][MAXN];//QR为确认模式是否打开,Lose为是否输,第三个是这个位置上的旗是否放对
char map[MAXN][MAXN],tmap[MAXN][MAXN];//第一个是只有雷和空地的地图,第二个是玩家能看到的地图
int map1[MAXN][MAXN],mapc[MAXN][MAXN];//map1为数字的地图,其中0代表空地,-1为雷,1-8为周围雷的个数
//mapc为当前格子的颜色
int col[10]={240,249,242,252,241,244,243,240,248};//col[i]表示windows扫雷中i的颜色,col[0]为空格的颜色
int d[10][4]={{0},{0,1},{1,0},{0,-1},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1}};//8个方向
bool ZB;//作弊是否打开
 
/*各种函数*/
void color(int);//颜色
void gto(int,int);//光标位置
void make();//制作随机地图
void print();//打印地图等
bool check(int,int);//判断坐标是否合法
bool is_win();//判断是否赢
bool is_lose();//是否输
void dfs(int,int);//用深搜来打开方块
void st(int,int);//试探,即windows扫雷中的左右键同时按
void flag(int,int);//小旗
void bj(int,int);//标记
void swt();//确认模式
void again();//重新开始
void zb();//作弊模式
void mainmain();//主函数
void print_real_map();//打印最终的地图
void begin();//各种操作
 
int main()
{
    mainmain();
}
 
 
void color(int a){SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);}
void gto(int x,int y)
{
    COORD pos;pos.X=y;pos.Y=x;
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),pos);
}
 
void make()
{
    for(int i=1;i<=G;i++)
        for(int j=1;j<=K;j++)
            map[i][j]='#';//初始化
    for(int i=1;i<=Lnum;i++)
    {
        int x=rand()%G+1,y=rand()%K+1;
        while(map[x][y]=='O')
            x=rand()%G+1,y=rand()%K+1;
        map[x][y]='O';
    }//随机放雷
    for(int i=1;i<=G;i++)
        for(int j=1;j<=K;j++)
        {
            if(map[i][j]=='O')map1[i][j]=-1,mapc[i][j]=240;//如果是雷
            else
            {
                for(int k=1;k<=8;k++)
                    if(map[i+d[k][0]][j+d[k][1]]=='O')
                        map1[i][j]++;//计算周围雷的个数
                mapc[i][j]=col[map1[i][j]];//根据格子上的数设置颜色
            }
        }
    for(int i=1;i<=G;i++)
        for(int j=1;j<=K;j++)
            if(mapc[i][j]==0)//空地
                mapc[i][j]=240;
}
void print()
{
    system("cls");
    gto(0,MIDY-4); color(233); printf("扫雷");
    color(240);
    gto(1,MIDY);
    for(int i=2;i<=G+1;i++)
    {
        gto(i,0);
        for(int j=1;j<=K;j++)
            printf("#"),tmap[i-1][j]='#';//初始化玩家所看到的地图
    }
 
    gto(2,0);
    nx=2,ny=0;
    color(15);
    printf("@");
 
    color(15);
    gto(2,2*K+5);printf("-----规则-----");
    gto(3,2*K+5);printf("wasd:选择位置");
    gto(4,2*K+5);printf("空格:打开");
    gto(5,2*K+5);printf("1键:试探周围8个方块,如果其中有雷则不会打开,无");
    gto(6,2*K+5);printf("     雷或旗帜标对了则会将周围无雷的位置打开,");
    gto(7,2*K+5);printf("     如果试探时周围有标错的旗帜,则会游戏失败");
    gto(8,2*K+5);printf("     必须额外确认一次,以便查看周围被试探的区域");
    gto(9,2*K+5);printf("2键:放置/取消小旗(F)");
    gto(10,2*K+5);printf("3键:放置/取消标记(?)");
    gto(11,2*K+5);printf("4键:打开/关闭确认模式,即每次操作需再按一次确认");
    gto(12,2*K+5);printf("5键:打开/关闭作弊模式,即显示原本地图");
    gto(13,2*K+5);printf("0键:重新开始");//打印规则
 
    gto(G+4,0);printf("-----操作提示-----\n");
    printf("请选择方块进行操作");
 
    gto(1,2*K+10);color(12);printf("剩余小旗数:%d",Wnum=Lnum);
}
 
bool check(int x,int y){return y>=0&&y<K&&x>=2&&x<G+2;}
//因为地图是从2行0列开始打的,而地图是从1行1列开始存的,所以gto(x,y)走到的是map[x-1][y+1]
bool is_win()
{
    int cnt=0;
    for(int i=1;i<=G;i++)
        for(int j=1;j<=K;j++)
            if(map[i][j]=='#'&&map1[i][j]==-1)
                cnt++;
    if(cnt==Lnum) return 1;
    //所有没被打开的方块都是雷=>胜利
    for(int i=1;i<=G;i++)
        for(int j=1;j<=K;j++)
            if((tmap[i][j]!='F'&&map1[i][j]==-1)||(tmap[i][j]=='F'&&map1[i][j]!=-1))
                return 0;
    return 1;
    //所有雷都标有旗
}
bool is_lose(){return Lose;}
 
void dfs(int x,int y)
{
    if(map1[x-1][y+1]>0)//只要边界全部是数字就return
    {
        gto(x,y),color(mapc[x-1][y+1]),printf("%d",map1[x-1][y+1]);
        tmap[x-1][y+1]=map1[x-1][y+1]+'0';
        return;
    }
    gto(x,y);color(255);
    tmap[x-1][y+1]=' ';
    printf(" ");//因为下面判断了雷,上面判断了数字,这里就一定是空地
    for(int i=1;i<=8;i++)
    {
        int xx=x+d[i][0]-1,yy=y+d[i][1]+1;//这里的xx和yy是在map中的,而不是gto中的
        if(check(xx+1,yy-1)&&tmap[xx][yy]=='#'&&map1[xx][yy]!=-1)//所以check和dfs的参数要变化
            dfs(xx+1,yy-1);
    }
}
void st(int x,int y)
{
    for(int i=1;i<=8;i++)
    {
        int xx=x+d[i][0],yy=y+d[i][1];
        if(check(xx,yy))
        {
            gto(xx,yy);
            if(tmap[xx-1][yy+1]!='#')
                color(mapc[xx-1][yy+1]-128);//减去128使周围的8个格子的背景颜色变为灰色
            else
                color(112);//这里特判一下'#',应该可以不用
            printf("%c",tmap[xx-1][yy+1]);
        }
    }
    gto(G+5,0),color(15),printf("请确认                                      ");
    //试探必须额外确认一次,规则上有说
    char c=getch();
    if(c=='1')
    {
        for(int i=1;i<=8;i++)
        {
            int xx=x+d[i][0],yy=y+d[i][1];
            if(check(xx,yy))
                if(tmap[xx-1][yy+1]=='F'&&map1[xx-1][yy+1]!=-1)//试探时有格子的小旗标错了=>失败
                {
                    Lose=1;
                    return;
                }
        }
        for(int i=1;i<=8;i++)
        {
            int xx=x+d[i][0],yy=y+d[i][1];
            if(check(xx,yy))
                if(map1[xx-1][yy+1]==-1&&tmap[xx-1][yy+1]!='F')//试探是有格子为雷=>取消打开
                    return;
        }
        for(int i=1;i<=8;i++)
        {
            int xx=x+d[i][0],yy=y+d[i][1];
            if(check(xx,yy)&&tmap[xx-1][yy+1]=='#')//打开周围8个格子
                dfs(xx,yy);
        }
    }
}
void flag(int x,int y)
{
    x-=1,y+=1;
    if(tmap[x][y]=='F')//原本为小旗=>取消小旗
    {
        tmap[x][y]='#';mapc[x][y]=240;
        gto(x+1,y-1),color(240),printf("#");
        Wnum++;//更新小旗数
    }
    else//否则就放置小旗
    {
        is_flag_true[x][y]=map1[x][y]==-1;//判断小旗是否放对
        tmap[x][y]='F';mapc[x][y]=253;
        gto(x+1,y-1),color(253),printf("F");
        Wnum--;//更新小旗数
    }
    gto(1,2*K+10);color(12);printf("剩余小旗数:       ");
    gto(1,2*K+22);printf("%d",Wnum);//更新小旗数
}
void bj(int x,int y)//和放小旗差不多,只是不用更新is_flag_true
{
    x-=1,y+=1;
    if(tmap[x][y]=='?')
    {
        gto(x+1,y-1),color(240),printf("#");
        tmap[x][y]='#';mapc[x][y]=240;
    }
    else
    {
        if(tmap[x][y]=='F')//如果原本这个位置上是小旗,而你把它变为了标记,就要更新小旗数
        {
            Wnum++;
            gto(1,2*K+10);color(12);printf("剩余小旗数:       ");
            gto(1,2*K+22);printf("%d",Wnum);
        }
        gto(x+1,y-1),color(240),printf("?");
        tmap[x][y]='?';mapc[x][y]=240;
    }
}
void swt(){QR=!QR;}
void zb()
{
    if(ZB)//如果本来作弊打开了就把作弊地图清除
    {
        for(int i=1;i<=G;i++)
        {
            gto(i+1,K+2);
            for(int j=1;j<=K;j++)
                color(15),printf(" ");
        }
        ZB=0;
    }
    else//否则打印作弊地图
    {
        for(int i=1;i<=G;i++)
        {
            gto(i+1,K+2);
            for(int j=1;j<=K;j++)
            {
                color(mapc[i][j]);
                if(map1[i][j]==-1) printf("O");
                else if(map1[i][j]>0) printf("%d",map1[i][j]);
                else printf(" ");
            }
        }
        ZB=1;
    }
}
void again()
{
    G=K=Lnum=nx=ny=Lose=ZB=0;
    QR=0;
    memset(is_flag_true,0,sizeof(is_flag_true));
    memset(map,0,sizeof(map));
    memset(tmap,0,sizeof(tmap));
    memset(map1,0,sizeof(map1));
    memset(mapc,0,sizeof(mapc));
    color(15);
    system("cls");//初始化
    mainmain();
}
 
void begin()//各种操作
{
    char c=getch(); 
    gto(G+5,0),color(15),printf("请选择方块进行操作");
    color(240);
    if(c=='w'&&check(nx-1,ny))
    {
        gto(nx,ny);
        if(tmap[nx-1][ny+1]!='#'||tmap[nx-1][ny+1]==' ')
            color(mapc[nx-1][ny+1]);
        printf("%c",tmap[nx-1][ny+1]);
        gto(nx-=1,ny);color(15);printf("@");
    }
    else if(c=='s'&&check(nx+1,ny))
    {
        gto(nx,ny);if(tmap[nx-1][ny+1]!='#'||tmap[nx-1][ny+1]==' ')color(mapc[nx-1][ny+1]);printf("%c",tmap[nx-1][ny+1]);
        gto(nx+=1,ny);color(15);printf("@");
    }
    else if(c=='a'&&check(nx,ny-1))
    {
        gto(nx,ny);if(tmap[nx-1][ny+1]!='#'||tmap[nx-1][ny+1]==' ')color(mapc[nx-1][ny+1]);printf("%c",tmap[nx-1][ny+1]);
        gto(nx,ny-=1);color(15);printf("@");
    }
    else if(c=='d'&&check(nx,ny+1))
    {
        gto(nx,ny);if(tmap[nx-1][ny+1]!='#'||tmap[nx-1][ny+1]==' ')color(mapc[nx-1][ny+1]);printf("%c",tmap[nx-1][ny+1]);
        gto(nx,ny+=1);color(15);printf("@");
    }
    //上下左右移动
    else
    {
        if(c==' '&&(!(tmap[nx-1][ny+1]<='9'&&tmap[nx-1][ny+1]>='0'))&&tmap[nx-1][ny+1]!='F')
        {
            mapc[nx-1][ny+1]=col[map1[nx-1][ny+1]];//如果本来放了标记,mapc[nx-1][ny+1]的颜色为黑色,在打开时里面的颜色却不一定是黑色
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()==' ')
                {
                    if(map1[nx-1][ny+1]==-1) {Lose=1;return;}
                    dfs(nx,ny);
                }
            }
            else
            {
                if(map1[nx-1][ny+1]==-1) {Lose=1;return;}
                dfs(nx,ny);
            }
        }
        else if(c=='1')
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='1') st(nx,ny);
            }
            else st(nx,ny);
            for(int i=1;i<=8;i++)
            {
                int xx=nx+d[i][0],yy=ny+d[i][1];
                if(check(xx,yy))
                {
                    gto(xx,yy);
                    if(tmap[xx-1][yy+1]!='#') color(mapc[xx-1][yy+1]);
                    else color(240);
                    printf("%c",tmap[xx-1][yy+1]);
                }
            }
        }
        else if(c=='2'&&(tmap[nx-1][ny+1]>'9'||tmap[nx-1][ny+1]<'1'))
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='2') flag(nx,ny);
            }
            else flag(nx,ny);
        }
        else if(c=='3'&&(tmap[nx-1][ny+1]>'9'||tmap[nx-1][ny+1]<'1'))
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='3') bj(nx,ny);
            }
            else bj(nx,ny);
        }
        else if(c=='4')
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='4') swt();
            }
            else swt();
        }
        else if(c=='5')
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='5') zb();
            }
            else zb();
        }
        else if(c=='0')
        {
            if(QR)
            {
                gto(G+5,0),color(15),printf("请确认                                      ");
                if(getch()=='0') again();
            }
            else again();
        }
    }
}
 
void mainmain()
{
    system("mode con cols=120 lines=35");//设置窗口大小
    srand((unsigned)time(NULL));
    int mode;
    printf("1.初级\n2.中级\n3.高级\n4.自定义\n");
    scanf("%d",&mode);if(mode>4) mode=4;
    if(mode==1) G=9,K=9,Lnum=10;
    else if(mode==2) G=16,K=16,Lnum=40;
    else if(mode==3) G=16,K=30,Lnum=99;//三种等级的参数
    else
    {
        printf("请输入雷区高度:");scanf("%d",&G);
        printf("请输入雷区宽度:");scanf("%d",&K);
        printf("请输入雷个数(建议不超过总大小的三分之一):");scanf("%d",&Lnum);
        if(G>24) G=24;if(K>30) K=30;
        if(G<9) G=9;if(K<9) K=9;
        if(Lnum<10) Lnum=10;if(Lnum>G*K*9/10) Lnum=G*K*9/10;
        //控制参数的范围,最后一个if是雷的数量不超过地图大小的9/10
    }
    make();
    print();
    while(1)
    {
        begin();
        bool f1=is_win(),f2=is_lose();
        if(f1||f2)
        {
            gto(0,0);
            if(f1)
                color(202),gto(0,0),printf("你 赢 了!!是否重来?(y/n)");
            if(f2)
                color(137),gto(0,0),printf("你 输 了!!是否重来?(y/n)");//输赢
            print_real_map();
            char c=getch();
            if(c=='y'||c=='Y') again();
            else
            {
                color(15);
                system("cls");
                gto(MIDX,MIDY-5);
                printf("欢迎下次再来");
                return;
            }
        }
    }
}
void print_real_map()
{
    color(240);
    for(int i=1;i<=G;i++)
    {
        gto(i+1,0);
        for(int j=1;j<=K;j++)
        {
            if(tmap[i][j]=='F'&&is_flag_true[i][j]==0)//如果旗标错了显示红色的X
                color(252),printf("X");
            else if(map1[i][j]==-1)//雷为黑色O
                color(240),printf("O");
            else if(map1[i][j]==0)//空
                color(240),printf(" ");
            else//数字
                color(mapc[i][j]),printf("%d",map1[i][j]);
        }
    }
}

20、手速小游戏

#include<bits/stdc++.h>
#include<windows.h>
#define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME)&0x8000)?1:0)
using namespace std;
int N=15,Numk=50,Numl=5,Numd=100,Nan=40,Hp=10,Bebc=15,Bebh=16,Bebb=10,squ=3;
struct node
{
    int x,y,vf,bv;
    inline void init() {x=rand()%N+1,y=rand()%N+1,bv=rand()%3+1;}
    inline void move() {x++;if(x>N) init(),x=1;}
}k[10005],l[10005],d[10005];
int x,y,hp,score,mp[25][25],udf,numc,numh,numb,bulc,bulh,bulb,lanf;
inline void add(int &x,int y) {x+=y,x=max(x,1),x=min(x,N);}
void color(int a) {SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);}
inline int read()
{
    int r=0;char c=getchar();
    while(c>'9'||c<'0') c=getchar();
    while(c>='0'&&c<='9') (r*=10)+=c-'0',c=getchar();
    return r;
}
inline void print(int x,int y,string s)
{
    HANDLE hOut;COORD pos;
    hOut=GetStdHandle(STD_OUTPUT_HANDLE),pos.X=y,pos.Y=x;
    SetConsoleCursorPosition(hOut,pos),cout<<s;
}
inline char check_press(int x)
{
    Sleep(100);
    for(int i=1;i<=10;i++) {if(KEY_DOWN(x)) return 1;Sleep(10);}
    return 0;
}
inline void set_windows(int x1,int y1,int x2,int y2)
{
    HANDLE hOut=GetStdHandle(STD_OUTPUT_HANDLE);SMALL_RECT rc;
    rc.Left=x1,rc.Top=y1,rc.Right=x2,rc.Bottom=y2;
    SetConsoleWindowInfo(hOut, TRUE, &rc);
}
inline void disap_mouse()
{
    ShowCursor(false);
    HANDLE hOut=GetStdHandle(STD_OUTPUT_HANDLE);
    CONSOLE_CURSOR_INFO cci;
    GetConsoleCursorInfo(hOut,&cci);
    cci.bVisible=false;
    SetConsoleCursorInfo(hOut,&cci);
}
inline char check_die()
{
    for(int i=1;i<=Numk;i++) if(k[i].x==x&&k[i].y==y) return k[i].init(),k[i].x=1,0;
    return 1;
}
inline char check_luck()
{
    for(int i=1;i<=Numl;i++)
        if(l[i].x==x&&l[i].y==y)
        {
            l[i].init(),l[i].x=1;
            numc+=(rand()%10+5)*bulc;
            numh+=(rand()%5+5)*bulh;
            numb+=(rand()%5+5)*bulb;
            return 0;
        }
    return 1;
}
inline char check_dowm()
{
    for(int i=1;i<=Numd;i++)
        if(d[i].x==x&&d[i].y==y)
        {
            d[i].init(),d[i].x=1;
            numc+=(rand()%10+5)*bulc;
            numh+=(rand()%5+5)*bulh;
            numb+=(rand()%5+5)*bulb;
            return 0;
        }
    return 1;
}
inline void move_thi()
{
    for(int i=1;i<=Numk;i++) if(k[i].vf==0) k[i].move();
    for(int i=1;i<=Numl;i++) if(l[i].vf==0) l[i].move();
    for(int i=1;i<=Numd;i++) if(d[i].vf==0) d[i].move();
}
inline char move_peo()
{
    char c=0;
    if(KEY_DOWN(87)&&!udf) add(x,-1),c=1;
    if(KEY_DOWN(38)&&!udf) add(x,-1),c=1;
    if(KEY_DOWN(104)&&!udf) add(x,-1),c=1;
    if(KEY_DOWN(87)||KEY_DOWN(38)||KEY_DOWN(104)) color(112),print(11,N+5,"↑"),color(7);else print(11,N+5,"↑");
    if(KEY_DOWN(83)&&!udf) add(x,1),c=1;
    if(KEY_DOWN(40)&&!udf) add(x,1),c=1;
    if(KEY_DOWN(101)&&!udf) add(x,1),c=1;
    if(KEY_DOWN(83)||KEY_DOWN(40)||KEY_DOWN(101)) color(112),print(15,N+5,"↓"),color(7);else print(15,N+5,"↓");
    if(KEY_DOWN(65)) add(y,-1),c=1;
    if(KEY_DOWN(37)) add(y,-1),c=1;
    if(KEY_DOWN(100)) add(y,-1),c=1;
    if(KEY_DOWN(65)||KEY_DOWN(37)||KEY_DOWN(100)) color(112),print(13,N+3,"←"),color(7);else print(13,N+3,"←");
    if(KEY_DOWN(68)) add(y,1),c=1;
    if(KEY_DOWN(39)) add(y,1),c=1;
    if(KEY_DOWN(102)) add(y,1),c=1;
    if(KEY_DOWN(68)||KEY_DOWN(39)||KEY_DOWN(102)) color(112),print(13,N+7,"→"),color(7);else print(13,N+7,"→");
    return c;
}
inline void die()
{
    system("cls"),print(0,0," ");
    if(lanf==1)
    {
        puts("ZDT : HaHaHaaaaa! YOU DIED!!!\n"),Sleep(1000);
        printf("YOU SCORE IS:%d\n\n",score),Sleep(1000);
    }
    if(lanf==0)
    {
        puts("ZDT:你终于知道 死 这个字怎么写了!!!\n"),Sleep(1000);
        printf("你的分数是:%d\n\n",score),Sleep(1000);
    }
    if(lanf==1) puts("TRY AGAIN?\n");
    if(lanf==0) puts("再来一局?\n");
}
inline void init()
{
    system("cls"),srand(time(0)),printf(" ");
    for(int i=1;i<=N;i++) printf("~");
    puts("");
    for(int i=1;i<=N;i++)
    {
        printf("|");
        for(int i=1;i<=N;i++) printf(" ");
        puts("|");
    }
    printf(" ");
    for(int i=1;i<=N;i++) printf("~");
    puts(""),x=N,y=N/2,hp=Hp,score=0,numc=Bebc*bulc,numh=Bebh*bulh,numb=Bebb*bulb;
    for(int i=1;i<=Numk;i++) k[i].init(),k[i].y=N+1,k[i].vf=k[i].bv-1;
    for(int i=1;i<=Numl;i++) l[i].init(),l[i].y=N+1,l[i].vf=l[i].bv-1;
    for(int i=1;i<=Numd;i++) d[i].init(),d[i].y=N+1,d[i].vf=d[i].bv-1;
    print(1,N+2," "),printf("The bloods you still have");
    print(3,N+2," "),printf("The score you have now is");
    print(5,N+2," "),printf("The normal bullet you have is");
    print(7,N+2," "),printf("The high bullet you have is");
    print(9,N+2," "),printf("The big bullet you have is");
    for(int i=1;i<=Hp/30;i++)
    {
        print(16+i,N+2,"-");
        for(int i=2;i<=30;i++) printf("-");
    }
    print(17+Hp/30,N+2,"-");
    for(int i=2;i<=Hp%30;i++) printf("-");
    print(x,y,"*");
}
inline void Begin()
{
    disap_mouse(),set_windows(10,10,80,50),system("cls");
    printf("\n"),printf("WELCOME TO THE GAME:\n"),color(14);
    printf(
    "\n"
    "BBBBee  U    U  L       FFFFFF  L     Y    Y \n"
    "B    B  U    U  L       F       L     Y    Y \n"
    "B    B  U    U  L       F       L      Y  Y \n"
    "BBBBBB  U    U  L       FFFFFF  L       YY \n"
    "B    B  U    U  L       F       L       YY \n"
    "B    B  U    U  L       F       L       YY \n"
    "BBBB^^   UUUU   LLLLLL  F       LLLLLL  YY \n"
    "\n"
    );
    color(12),printf("烤蛙出品,侵权必究!QWQ\n\nBelieve_R_ 赞助开发\n\n");
    color(7),Sleep(500),puts("PLEASE PRESS 'Enter' TO CONTINUE");
    while(1) {if(KEY_DOWN(13)) break;}
    Sleep(200),system("cls"),puts("Your Language?/你的语言?"),lanf=0;
    while(1)
    {
        print(2,0," ");
        if(lanf==1) puts("  中文  ");else color(112),puts("  中文  "),color(7);
        print(3,0," ");
        if(lanf==0) puts(" English ");else color(112),puts(" English"),color(7);
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) lanf=1-lanf;
        Sleep(100);
    }
    int t=0;
    Sleep(200),system("cls");
    if(lanf==1) puts("Do you know the rule of the game?");
    if(lanf==0) puts("你知道此游戏的规则吗\n");
    while(1)
    {
        if(lanf==1)
        {
            print(2,0," ");
            if(t==1) puts(" Yes ");else color(112),puts(" Yes "),color(7);
            print(3,0," ");
            if(t==0) puts(" No ");else color(112),puts(" No "),color(7);
        }
        if(lanf==0)
        {
            print(2,0," ");
            if(t==1) puts(" 是 ");else color(112),puts(" 是 "),color(7);
            print(3,0," ");
            if(t==0) puts(" 否 ");else color(112),puts(" 否 "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
        Sleep(100);
    }
    if(t==1)
    {
        Sleep(200),system("cls");
        if(lanf==1)
        {
            puts("Before playing this game please read these carefully:\n"),Sleep(500);
            puts("\n1. You'll be asked to input 7 game parameters before the game starts.\n"),Sleep(500);
            puts("\n2. The symbol '!' is the Upgrade Roadblock. If you didn't shut it off before it get to the botton, your bloods will -1!\n"),Sleep(500);
            puts("\n3. The symbol '&' is the obstacle which means you cannot let '*' touch the '#'.\n"),Sleep(500);
            puts("\n4. The symbol '+' is the midic which means you can recover by touching the '!'.\n"),Sleep(500);
            puts("\n5. At first, you will have some bloods. You must go further before you died!\n"),Sleep(500);
            puts("\n6. If you press 'Q', the bullets will be fired. But the bullets was limited, it only can be increased by touching '+'\n"),Sleep(500);
            puts("\n7. If you press 'Space', the system will give you a sighting telescope. But it can't earse the Roadblock\n"),Sleep(500);
            puts("\n\nHappy Games......  QwQ\n"),Sleep(500);
            puts("PLEASE PRESS 'Enter' TO CONTINUE");
        }
        if(lanf==0)
        {
            puts("在玩之前,请认真阅读以下提示:\n"),Sleep(500);
            puts("\n1. 你将输入7个游戏参数。\n"),Sleep(500);
            puts("\n2. 符号'!'是恐怖障碍物。如果你没有在它到达底部之前射掉它,你将会扣一滴血!\n"),Sleep(500);
            puts("\n3. 符号'&'是障碍物,一旦你自己('*')碰到障碍物,生命值将会掉1个单位!\n"),Sleep(500);
            puts("\n4. 符号'+'可以给你补血,每次你自己('*')碰到'!'会恢复1个单位!\n"),Sleep(500);
            puts("\n5. 一开始你会有n个单位的生命,你必须在生命值耗完之前获得最高的分数!\n"),Sleep(500);
            puts("\n6. 如果你按下'Q',将会发射子弹。但是子弹的数量是有限的,你有你碰到了'+'才会回血!\n"),Sleep(500);
            puts("\n7. 如果你按下'空格',将会调出瞄准镜。但是瞄准镜并不能清除障碍物!\n"),Sleep(500);
            puts("\n\nHappy Games......  QwQ\n"),Sleep(500);
            puts("请按回车键以继续!");
        }
    }
    while(1) {if(KEY_DOWN(13)) break;}
    system("cls");
}
inline void choose()
{
    int t=5;
    Sleep(200);
    if(lanf==1) puts("Please choose the Difficulty: \n");
    if(lanf==0) puts("请选择游戏难度:\n");
    while(1)
    {
        if(lanf==1)
        {
            print(2,0," ");
            if(t!=5) puts(" Quick: No bullets ");else color(112),puts(" Quick: No bullets "),color(7);
            print(3,0," ");
            if(t!=4) puts(" Peaceful: Please play within 'int'! ");else color(112),puts(" Peaceful: Please play within 'int'! "),color(7);
            print(4,0," ");
            if(t!=3) puts(" Easy: Suitable for the Freshmen ");else color(112),puts(" Easy: Suitable for the Freshmen! "),color(7);
            print(5,0," ");
            if(t!=2) puts(" Middle: Time to race! ");else color(112),puts(" Middle: Time to race! "),color(7);
            print(6,0," ");
            if(t!=1) puts(" Hard: Impossible to get 2500! ");else color(112),puts(" Hard: Impossible to get 2500! "),color(7);
            print(7,0," ");
            if(t!=0) puts(" User-Defined ");else color(112),puts(" User-Defined "),color(7);
        }
        if(lanf==0)
        {
            print(2,0," ");
            if(t!=5) puts(" 手速 [没有子弹!] ");else color(112),puts(" 手速 [没有子弹!] "),color(7);
            print(3,0," ");
            if(t!=4) puts(" 和平 [不要把int玩爆呀!] ");else color(112),puts(" 和平 [不要把int玩爆呀!] "),color(7);
            print(4,0," ");
            if(t!=3) puts(" 简单 [新手建议!] ");else color(112),puts(" 简单 [新手建议!] "),color(7);
            print(5,0," ");
            if(t!=2) puts(" 普通 [是时候比速度了!] ");else color(112),puts(" 普通 [是时候比速度了!] "),color(7);
            print(6,0," ");
            if(t!=1) puts(" 困难 [2500? 不可能的!] ");else color(112),puts(" 困难 [2500? 不可能的!] "),color(7);
            print(7,0," ");
            if(t!=0) puts(" 用户自定义 ");else color(112),puts(" 用户自定义 "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(38)||KEY_DOWN(87)||KEY_DOWN(104)) t=(t+1)%6;
        if(KEY_DOWN(40)||KEY_DOWN(83)||KEY_DOWN(98)) t=(t+5)%6;
        Sleep(100);
    }
    Nan=40;
    if(t==5) {N=30,Numk=75,Numl=0,Numd=1,Hp=1,Bebc=Bebh=Bebb=0,bulc=bulh=bulb=0,squ=14;return;}
    if(t==4) {N=30,Numk=15,Numl=20,Numd=1,Hp=20,Bebc=500,Bebh=100,Bebb=100,bulc=bulh=bulb=1,squ=10;return;}
    if(t==3) {N=30,Numk=25,Numl=10,Numd=1,Hp=15,Bebc=100,Bebh=20,Bebb=20,bulc=bulh=bulb=1,squ=7;return;}
    if(t==2) {N=30,Numk=40,Numl=8,Numd=1,Hp=15,Bebc=20,Bebh=4,Bebb=2,bulc=bulh=bulb=1,squ=5;return;}
    if(t==1) {N=30,Numk=40,Numl=5,Numd=2,Hp=20,Bebc=10,Bebh=Bebb=0,bulc=bulh=bulb=1,squ=3;return;}
    system("cls"),t=0,Sleep(100);
    if(lanf==1) puts("Do you want to be able to shoot the bullets?");
    if(lanf==0) puts("请选择你能否发射狙击枪子弹!");
    while(1)
    {
        if(lanf==1)
        {
            print(2,0," ");
            if(t==1) puts(" Yes ");else color(112),puts(" Yes "),color(7);
            print(3,0," ");
            if(t==0) puts(" No ");else color(112),puts(" No "),color(7);
        }
        if(lanf==0)
        {
            print(2,0," ");
            if(t==1) puts(" 是 ");else color(112),puts(" 是 "),color(7);
            print(3,0," ");
            if(t==0) puts(" 否 ");else color(112),puts(" 否 "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
        Sleep(100);
    }
    bulc=1-t,t=0,system("cls"),Sleep(100);
    if(lanf==1) puts("Do you want to be able to shoot the bullets?");
    if(lanf==0) puts("请选择你能否发射高射炮子弹!");
    while(1)
    {
        if(lanf==1)
        {
            print(2,0," ");
            if(t==1) puts(" Yes ");else color(112),puts(" Yes "),color(7);
            print(3,0," ");
            if(t==0) puts(" No ");else color(112),puts(" No "),color(7);
        }
        if(lanf==0)
        {
            print(2,0," ");
            if(t==1) puts(" 是 ");else color(112),puts(" 是 "),color(7);
            print(3,0," ");
            if(t==0) puts(" 否 ");else color(112),puts(" 否 "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
        Sleep(100);
    }
    bulh=1-t,t=0,system("cls"),Sleep(100);
    if(lanf==1) puts("Do you want to be able to shoot the bullets?");
    if(lanf==0) puts("请选择你能否发射大炮子弹!");
    while(1)
    {
        if(lanf==1)
        {
            print(2,0," ");
            if(t==1) puts(" Yes ");else color(112),puts(" Yes "),color(7);
            print(3,0," ");
            if(t==0) puts(" No ");else color(112),puts(" No "),color(7);
        }
        if(lanf==0)
        {
            print(2,0," ");
            if(t==1) puts(" 是 ");else color(112),puts(" 是 "),color(7);
            print(3,0," ");
            if(t==0) puts(" 否 ");else color(112),puts(" 否 "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
        Sleep(100);
    }
    bulb=1-t,t=0,system("cls"),Sleep(100);
    if(lanf==1) puts("Please choose your pattern\nIf you choose Pattern 1, you can go up and down, while Pattern 2 can't!\n");
    if(lanf==0) puts("请选择你的模式:\n如果你选择了模式1,你可以上下左右移动;而模式2只能左右移动!\n");
    while(1)
    {
        if(lanf==1)
        {
            print(3,0," ");
            if(t==1) puts(" Pattern 1:←↑↓→ ");else color(112),puts(" Pattern 1:←↑↓→ "),color(7);
            print(4,0," ");
            if(t==0) puts("  Pattern 2:←→  ");else color(112),puts("  Pattern 2:←→  "),color(7);
        }
        if(lanf==0)
        {
            print(3,0," ");
            if(t==1) puts(" 模式1:←↑↓→ ");else color(112),puts(" 模式1:←↑↓→ "),color(7);
            print(4,0," ");
            if(t==0) puts("  模式2:←→  ");else color(112),puts("  模式2:←→  "),color(7);
        }
        if(KEY_DOWN(13)||KEY_DOWN(108)) break;
        if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
        Sleep(100);
    }
    udf=t;
    system("cls"),t=-1;
    while(t<3||t>35)
    {
        if(lanf==1) puts("Please Input an Integer: The Size of the Game(from 3 to 35):\n");
        if(lanf==0) puts("请输入一个整数:游戏界面的大小(3 ~ 35)\n");
        print(2,0," "),t=read(),N=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||90<t)
    {
        if(lanf==1) puts("Please Input an Integer: The Number of Bullets(from 1 to 90):\n");
        if(lanf==0) puts("请输入一个整数:障碍物的数量(1 ~ 90)\n");
        print(2,0," "),t=read(),Numk=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||90<t)
    {
        if(lanf==1) puts("Please Input an Integer: The Number of Backpack(from 1 to 90):\n");
        if(lanf==0) puts("请输入一个整数:回血包的数量(1 ~ 90)\n");
        print(2,0," "),t=read(),Numl=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||90<t)
    {
        if(lanf==1) puts("Please Input an Integer: The Number of Upgrade Bullets(from 1 to 90):\n");
        if(lanf==0) puts("请输入一个整数:恐怖障碍物的数量(1 ~ 90)\n");
        print(2,0," "),t=read(),Numd=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||t>100)
    {
        if(lanf==1) puts("Please Imput an Integer: The Total HP of You(from 1 to 100):\n");
        if(lanf==0) puts("请输入一个整数:初始生命值(1 ~ 100)\n");
        print(2,0," "),t=read(),Hp=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||t>100)
    {
        if(lanf==1) puts("Please Input an Integer: The Bullet You Have at First(from 1 to 100):\n");
        if(lanf==0) puts("请输入一个整数:初始狙击枪子弹数(1 ~ 100)\n");
        print(2,0," "),t=read(),Bebc=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||t>100)
    {
        if(lanf==1) puts("Please Input an Integer: The Bullet You Have at First(from 1 to 100):\n");
        if(lanf==0) puts("请输入一个整数:初始高射炮子弹数(1 ~ 100)\n");
        print(2,0," "),t=read(),Bebh=t,system("cls");
    }
    system("cls"),t=-1;
    while(t<1||t>100)
    {
        if(lanf==1) puts("Please Input an Integer: The Bullet You Have at First(from 1 to 100):\n");
        if(lanf==0) puts("请输入一个整数:初始大炮子弹数(1 ~ 100)\n");
        print(2,0," "),t=read(),Bebb=t,system("cls");
    }
}
inline void work()
{
    init();
    int die=1,luck=1,dowm=1,t;
    while(1)
    {
        for(int i=1;i<=Numk;i++) (k[i].vf+=1)%=k[i].bv;
        for(int i=1;i<=Numl;i++) (l[i].vf+=1)%=l[i].bv;
        for(int i=1;i<=Numd;i++) (d[i].vf+=1)%=d[i].bv;
        for(int i=1;i<=Numk;i++) if(k[i].y<=N&&k[i].x>0&&k[i].vf==0) print(k[i].x,k[i].y," ");
        for(int i=1;i<=Numl;i++) if(l[i].y<=N&&l[i].x>0&&l[i].vf==0) print(l[i].x,l[i].y," ");
        for(int i=1;i<=Numd;i++) if(d[i].y<=N&&d[i].x>0&&d[i].vf==0) print(d[i].x,d[i].y," ");
        t=0; 
        if(!udf&&(KEY_DOWN(87)||KEY_DOWN(38)||KEY_DOWN(104))) t=1;
        if(!udf&&(KEY_DOWN(83)||KEY_DOWN(40)||KEY_DOWN(101))) t=1;
        if(KEY_DOWN(65)||KEY_DOWN(37)||KEY_DOWN(100)) t=1;
        if(KEY_DOWN(68)||KEY_DOWN(39)||KEY_DOWN(102)) t=1;
        if(t) print(x,y," ");move_thi(),move_peo();
        for(int i=1;i<=Numk;i++) if(k[i].y<=N&&k[i].x>0&&k[i].vf==0) color(4),print(k[i].x,k[i].y,"&"),color(7);
        for(int i=1;i<=Numl;i++) if(l[i].y<=N&&l[i].x>0&&l[i].vf==0) color(2),print(l[i].x,l[i].y,"+"),color(7);
        for(int i=1;i<=Numd;i++) if(d[i].y<=N&&d[i].x>0&&d[i].vf==0) color(14),print(d[i].x,d[i].y,"!"),color(7);
        if(t) print(x,y,"*");
        die=check_die(),luck=check_luck(),dowm=check_dowm();
        if(!luck) print(hp/30+17,N+2+hp%30,"-"),hp++,score+=20,(numc+=rand()%10+5)*=bulc,(numh+=rand()%5+5)*=bulh,(numb+=rand()%5)*=bulb;
        if(!die) print((hp-1)/30+17,N+2+(hp-1)%30," "),hp--,score--;
        if(!dowm) score+=50;
        if((!die||!luck||!dowm)&&!t) print(x,y,"*");
        if(hp<=0) return;
        int xx=0,xw=1,yy=0,_90=0,_88=0,_67=0,_32=0;
        for(int i=1;i<=Numk;i++) if(k[i].y==y&&xx<k[i].x&&k[i].x<x) xx=k[i].x,yy=k[i].y,xw=i;
        for(int i=1;i<=Numl;i++) if(l[i].y==y&&xx<l[i].x&&l[i].x<x) xx=l[i].x,yy=l[i].y,xw=i+Numk;
        for(int i=1;i<=Numd;i++) if(d[i].y==y&&xx<d[i].x&&d[i].x<x) xx=d[i].x,yy=d[i].y,xw=i+Numk+Numl;
        if(KEY_DOWN(32)) {for(int i=x-1;i>xx;i--) print(i,y,"|");_32=1,color(112),print(15,N+8," Space "),color(7);}else print(15,N+8," Space ");
        if(KEY_DOWN(90)&&numc>0)
        {
            numc--,color(112),print(13,N+9," Z "),color(7),_90=1;
            if(xx!=0&&numc>0) for(int i=x-1;i>=xx;i--) print(i,y,"|");
        }
        else print(13,N+9," Z ");
        if(KEY_DOWN(88)&&numh>0)
        {
            numh--,color(112),print(13,N+12," X "),color(9),_88=1;
            if(xx!=0&&numc>0) for(int i=x-1;i>=1;i--) print(i,y,"|");
            color(7);
        }
        else print(13,N+12," X ");
        if(KEY_DOWN(67)&&numb>0)
        {
            numb--,color(112),print(13,N+15," C "),color(12),_67=1;
            if(xx!=0&&numc>0) for(int i=x-1;i>=xx;i--) print(i,y,"|");
            color(7);
        }
        else print(13,N+15," C ");
        for(int i=N+28;i<=N+35;i++) print(1,i," ");
        for(int i=N+28;i<=N+35;i++) print(3,i," ");
        for(int i=N+33;i<=N+38;i++) print(5,i," ");
        for(int i=N+31;i<=N+36;i++) print(7,i," ");
        for(int i=N+30;i<=N+36;i++) print(9,i," ");
        print(1,N+29,":"),printf("%d",hp);
        print(3,N+29,":"),printf("%d",score);
        print(5,N+33,":"),printf("%d",numc);
        print(7,N+31,":"),printf("%d",numh);
        print(9,N+30,":"),printf("%d",numb);
        Sleep(Nan);
        if(_32==1) {for(int i=x-1;i>xx;i--) print(i,y," ");}
        if(xx!=0&&_90)
        {
            for(int i=x;i>=xx;i--) print(i,y," ");
            if(xw<=Numk) k[xw].init(),k[xw].x=0,score++;
            else if(xw<=Numk+Numl) l[xw-Numk].init(),l[xw-Numk].x=0,score+=20;
            else d[xw-Numk-Numl].init(),d[xw-Numk-Numl].x=0,score++,(numc+=rand()%10+5)*=bulc,(numh+=rand()%5+5)*=bulh,(numb+=rand()%5)*=bulb;
        }
        if(_88)
        {
            for(int i=x;i>=1;i--) print(i,y," ");
            for(int i=1;i<=Numk;i++) if(k[i].y==y) k[i].init(),k[i].x=0,score++;
            for(int i=1;i<=Numl;i++) if(l[i].y==y) l[i].init(),l[i].x=0,score+=20;
            for(int i=1;i<=Numd;i++) if(d[i].y==y) d[i].init(),d[i].x=0,score++,(numc+=rand()%10+5)*=bulc,(numh+=rand()%5+5)*=bulh,(numb+=rand()%5)*=bulb;
        }
        if(xx!=0&&_67)
        {
            for(int i=x;i>=1;i--) print(i,y," ");
            for(int i=1;i<=Numk;i++)
                if(k[i].y>=yy-squ&&k[i].y<=yy+squ&&k[i].x>=xx-squ&&k[i].x<=xx+squ&&k[i].x>=1&&k[i].y<=N)
                    print(k[i].x,k[i].y," "),k[i].init(),k[i].x=0,score++;
            for(int i=1;i<=Numl;i++)
                if(l[i].y>=yy-squ&&l[i].y<=yy+squ&&l[i].x>=xx-squ&&l[i].x<=xx+squ&&l[i].x>=1&&k[i].y<=N)
                    print(l[i].x,l[i].y," "),l[i].init(),l[i].x=0,score++;
            for(int i=1;i<=Numd;i++)
                if(d[i].y>=yy-squ&&d[i].y<=yy+squ&&d[i].x>=xx-squ&&d[i].x<=xx+squ&&d[i].x>=1&&k[i].y<=N)
                    print(d[i].x,d[i].y," "),d[i].init(),d[i].x=0,score++,(numc+=rand()%10+5)*=bulc,(numh+=rand()%5+5)*=bulh,(numb+=rand()%5)*=bulb;
        }
        score++;
    }
}
int main()
{
    Begin();
    while(1)
    {
        choose(),work(),die();int t=0;
        while(1)
        {
            if(lanf==1)
            {
                print(5,0," ");
                if(t==1) puts(" Yes ");else color(112),puts(" Yes "),color(7);
                print(6,0," ");
                if(t==0) puts(" No ");else color(112),puts(" No "),color(7);
            }
            if(lanf==0)
            {
                print(5,0," ");
                if(t==1) puts(" 是 ");else color(112),puts(" 是 "),color(7);
                print(6,0," ");
                if(t==0) puts(" 否 ");else color(112),puts(" 否 "),color(7);
            }
            if(KEY_DOWN(13)||KEY_DOWN(108)) break;
            if(KEY_DOWN(87)||KEY_DOWN(83)||KEY_DOWN(38)||KEY_DOWN(40)||KEY_DOWN(104)||KEY_DOWN(101)) t=1-t;
            Sleep(100);
        }
        if(t==1) return 0;
        system("cls");
    }
}

21、贪吃蛇(彩色)

#include <stdio.h>
#include <windows.h>
#include <time.h>
#include <conio.h>
#include <stdlib.h>
using namespace std;
int maxn;
void BackGround(unsigned int ForeColor = 7, unsigned int BackGroundColor = 0) {
	HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE); 
	SetConsoleTextAttribute(handle, ForeColor + BackGroundColor * 0x10);
}
void gotoxy(int x, int y) {
	HANDLE handle;
	COORD coord;   //获取坐标轴结构体
	coord.X = x;
	coord.Y = y;
	handle = GetStdHandle(STD_OUTPUT_HANDLE);  //获取控制台句柄,值为-11
	SetConsoleCursorPosition(handle, coord);   //移动光标到x,y处
}
//**初始化地图数据**//
void restart(int bk[50][50], int look[4], int move[50][50]) {
	//bk为总的地图数据记录整个地图,为1时表示墙体,为2时表示果实,为3时表示蛇
	//look记录数据,为0时表示朝向,为1时表示长度,为3时表示胜负情况,为4表示分数
	//move记录蛇走过的路程,用来打印蛇时判断用
	int pp, qq;  //用来记录获取的随机坐标
	//接下来要初始化整个地图
	for (int i = 0; i<=maxn;i++) {
		for (int j = 0; j <= maxn; j++) {
			if (i == 0 || i == maxn || j == 0 || j == maxn)  bk[i][j] = 1;//1表示墙体
			else bk[i][j] = 0; //0表示什么都没有
			move[i][j] = 0;    //该数组用来记录蛇移动的轨迹
		}
	}
	//将蛇初始化在8,8坐标上
	bk[8][8] = 3;
	move[8][8] = 1;//则此时8,8,上的轨迹就应该记录为1
	move[0][0] = 1;//用此来记录步数
	pp = rand() % (maxn - 1) + 1;//范围是1-(maxn - 1)
	qq = rand() % (maxn - 1) + 1;
	bk[pp][qq] = 2;//表示这个位置有果实了
	look[0] = 1;//表示朝向,向上
	look[1] = 1;//表示长度
	look[2] = 0;//当为1是表示失败
	look[3] = 0;//记录得分
	//接下来要绘制地图
	for(int i = 0; i <= maxn; i++) {
		for (int j = 0; j <= maxn; j++) {
			gotoxy(i * 2, j);//光标移动,每个光标都是矩形
			switch (bk[i][j]) {
			case 0:
				BackGround(0, 0);
				break;//如果没有东西打印黑色
			case 1:
				BackGround(0, 1);
				break;//墙打印蓝色
			case 2:
				BackGround(0, 2);
				break;//果实打印绿色
			case 3:
				BackGround(0, 3);
				break;//蛇打印湖蓝色
			default:
				break;
			}
			printf("  ");//地图中直接就是涂空格符
		}
	}
	//接下来要显示积分//
	gotoxy(55, 0);
	BackGround(7, 0);//用白字黑底打印
	printf("现在得分是:%d,请再接再厉!^_^", look[2]);
}
 
//运动主体
void map(int bk[50][50], int look[4], int xy[2], int move[50][50]) {
	//bk是地图信息,look作数据记录,xy记录坐标,move记录蛇的运动轨迹
	int b[10], qq = 0, pp = 0;//b用来吸收输入,qq和pp用来随机初始化果实坐标
	if (kbhit()) {//记录按下的是哪个方向键
		b[0] = getch();//用b来记录
		if (b[0] == 224) {
			b[0] = getch();//如果为224表示为方向键,但是要再一次获取才行
		}
		if (b[0] == 72 && look[0] != 2) {
			//如果输入的为上并且朝向不为下
			look[0] = 1;
		}
		if (b[0] == 80 && look[0] != 1) {
			look[0] = 2;
		}
		if (b[0] == 75 && look[0] != 4) {
			look[0] = 3;
		}
		if (b[0] == 77 && look[0] != 3) {
			look[0] = 4;
		}
	}
	switch (look[0]) {
	case 1:
		//往上走
		xy[1]--;
		break;
	case 2:
		//往下走
		xy[1]++;
		break;
	case 3:
		//往左走
		xy[0]--;
		break;
	case 4:
		//往右走
		xy[0]++;
		break;
	}
	//接下来蛇就开始走动了
	move[0][0]++;//蛇的步数加一
	move[xy[0]][xy[1]] = move[0][0];//记录当前格子中蛇的轨迹
	gotoxy(55, 2);
	BackGround(7, 0);
	printf("横坐标:%d,纵坐标:%d", xy[0],xy[1]);
	gotoxy(xy[0] * 2, xy[1]);//这里蛇头就往前移动了
	BackGround(0, 3);//与蛇体一个颜色
	printf("  ");
 
	//如果吃了果实
	if (bk[xy[0]][xy[1]] == 2) {
		look[2]++;//分数加一
		look[1]++;//长度加一
		//更新分数
		gotoxy(55, 0);
		BackGround(7, 0);
		printf("现在得分是:%d,请再接再厉!^_^", look[2]);
		while (bk[pp][qq] != 0) {
			pp = rand() % (maxn - 1) + 1;
			qq = rand() % (maxn - 1) + 1;
		}
		bk[pp][qq] = 2;//将这个地方变为果实
		gotoxy(pp * 2, qq);
		BackGround(0, 2);
		printf("  ");
	}
 
	//如果撞了墙或者自己//
	if (bk[xy[0]][xy[1]] == 1 || bk[xy[0]][xy[1]] == 3) {
		look[3] = 1;//表示已经输了
		gotoxy(6, 6);
		BackGround(7, 0);
		printf("最后得分:%d", look[2]);
	}
	bk[xy[0]][xy[1]] = 3;//使这个位置变成蛇
	//接下来要检测蛇然后刷新蛇的位置
	for (int i = 0; i <= maxn; i++) {
		for (int j = 0; j <= maxn; j++) {
			if (move[i][j] == move[xy[0]][xy[1]]- look[1]){
				//如果符合这个条件,则表示蛇已经移动出这个位置了
				//要删除这个位置的蛇尾巴
				//一次只有一个方块会符合要求吧?
				bk[i][j] = 0;
				gotoxy(i * 2, j);
				BackGround(0, 0);
				printf("  ");
				break;//一次只找一个
			}
		}
	}
}
int main() {
	printf ("请输入您想要的难度(1简单,2中等,3困难)\n");
	int c;
	scanf ("%d", &c);
	if (c == 1) {
		maxn = 24;
	} else if (c == 2) {
		maxn = 20;
	} else if (c == 3) {
		maxn = 16;
	} else {
		printf ("输入错误!\n"); main();
	}
	int bk[50][50], xy[2], move[50][50], look[4];
	xy[1] = xy[0] = maxn / 2;
	srand((unsigned) time(NULL));//初始化随机种子
	system("pause");
	restart(bk, look, move);
	while (look[3] == 0) {
		Sleep(200);//休眠400ms一次
		map(bk, look, xy, move);
	}
	system("pause");
	printf("游戏结束,感谢游玩!^_^");
	return 0;
}

22、贪吃蛇(黑白)

#include <windows.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
#include <cstring>
#include <cstdio>
#include <iostream>
#define  N 22
using namespace std;

    int gameover;

    int x1, y1; // 随机出米

    int x,y;

    long start;

//=======================================
//类的实现与应用initialize
//=======================================

//下面定义贪吃蛇的坐标类
class snake_position
{
public:

    int x,y;      //x表示行,y表示列

    snake_position(){};

    void initialize(int &);//坐标初始化


};

snake_position position[(N-2)*(N-2)+1]; //定义贪吃蛇坐标类数组,有(N-2)*(N-2)个坐标

void snake_position::initialize(int &j)
{
        x = 1;

        y = j;
}


//下面定义贪吃蛇的棋盘图

class snake_map
{

private:

    char s[N][N];//定义贪吃蛇棋盘,包括墙壁。

    int grade, length;

    int gamespeed; //前进时间间隔

    char direction; // 初始情况下,向右运动

    int head,tail;

    int score;

    bool gameauto;

public:

    snake_map(int h=4,int t=1,int l=4,char d=77,int s=0):length(l),direction(d),head(h),tail(t),score(s){}

    void initialize();   //初始化函数

    void show_game();

    int updata_game();

    void setpoint();

    void getgrade();

    void display();


};

//定义初始化函数,将贪吃蛇的棋盘图进行初始化

void snake_map::initialize()
{
    int i,j;

    for(i=1;i<=3;i++)

        s[1][i] = '*';

    s[1][4] = '#';

    for(i=1;i<=N-2;i++)

        for(j=1;j<=N-2;j++)

            s[i][j]=' '; // 初始化贪吃蛇棋盘中间空白部分

    for(i=0;i<=N-1;i++)

        s[0][i] = s[N-1][i] = '-'; //初始化贪吃蛇棋盘上下墙壁

    for(i=1;i<=N-2;i++)

        s[i][0] = s[i][N-1] = '|'; //初始化贪吃蛇棋盘左右墙壁
}


//============================================
//输出贪吃蛇棋盘信息

void snake_map::show_game()

{

    system("cls"); // 清屏

    int i,j;

    cout << endl;

    for(i=0;i<N;i++)
    {

        cout << '\t';

        for(j=0;j<N;j++)

            cout<<s[i][j]<<' '; // 输出贪吃蛇棋盘

        if(i==2) cout << "\t等级:" << grade;

        if(i==6) cout << "\t速度:" << gamespeed;

        if(i==10) cout << "\t得分:" << score << "分" ;

        if(i==14) cout << "\t暂停:按一下空格键" ;

        if(i==18) cout << "\t继续:按两下空格键" ;

        cout<<endl;
    }
}

//输入选择等级
void snake_map::getgrade()
{
    cin>>grade;

    while( grade>7 || grade<1 )
    {
        cout << "请输入数字1-7选择等级,输入其他数字无效" << endl;

        cin >> grade;
    }
    switch(grade)
    {
        case 1: gamespeed = 1000;gameauto = 0;break;

        case 2: gamespeed = 800;gameauto = 0;break;

        case 3: gamespeed = 600;gameauto = 0;break;

        case 4: gamespeed = 400;gameauto = 0;break;

        case 5: gamespeed = 200;gameauto = 0;break;

        case 6: gamespeed = 100;gameauto = 0;break;

        case 7: grade = 1;gamespeed = 1000;gameauto = 1;break;

    }

}

//输出等级,得分情况以及称号

void snake_map::display()
{

    cout << "\n\t\t\t\t等级:" << grade;

    cout << "\n\n\n\t\t\t\t速度:" << gamespeed;

    cout << "\n\n\n\t\t\t\t得分:" << score << "分" ;

}

//随机产生米
void snake_map::setpoint()
{
    srand(time(0));

    do
    {

        x1 = rand() % (N-2) + 1;

        y1 = rand() % (N-2) + 1;

    }while(s[x1][y1]!=' ');

    s[x1][y1]='*';
}

char key;

int snake_map::updata_game()
{
    gameover = 1;

    key = direction;

    start = clock();

    while((gameover=(clock()-start<=gamespeed))&&!kbhit());

    //如果有键按下或时间超过自动前进时间间隔则终止循环



        if(gameover)
        {

            getch();

            key = getch();
        }

        if(key == ' ')

        {
            while(getch()!=' '){};//这里实现的是按空格键暂停,按空格键继续的功能,但不知为何原因,需要按两下空格才能继续。这是个bug。
        }

        else

            direction = key;

        switch(direction)
        {
            case 72: x= position[head].x-1; y= position[head].y;break; // 向上

            case 80: x= position[head].x+1; y= position[head].y;break; // 向下

            case 75: x= position[head].x; y= position[head].y-1;break; // 向左

            case 77: x= position[head].x; y= position[head].y+1; // 向右

        }

        if(!(direction==72||direction==80||direction==75 ||direction==77))   // 按键非方向键

            gameover = 0;

        else if(x==0 || x==N-1 ||y==0 || y==N-1)   // 碰到墙壁

            gameover = 0;

        else if(s[x][y]!=' '&&!(x==x1&&y==y1))    // 蛇头碰到蛇身

            gameover = 0;

        else if(x==x1 && y==y1)

        { // 吃米,长度加1

            length ++;

            if(length>=8 && gameauto)

            {

                length -= 8;

                grade ++;

                if(gamespeed>=200)

                    gamespeed -= 200; // 改变贪吃蛇前进速度

                else

                    gamespeed = 100;

            }

            s[x][y]= '#';  //更新蛇头

            s[position[head].x][position[head].y] = '*'; //吃米后将原先蛇头变为蛇身

            head = (head+1) % ( (N-2)*(N-2) );   //取蛇头坐标

            position[head].x = x;

            position[head].y = y;

            show_game();

            gameover = 1;

            score += grade*20;  //加分

            setpoint();   //产生米

        }

        else
        { // 不吃米

            s[position[tail].x][position[tail].y]=' ';//将蛇尾置空

            tail= (tail+1) % ( (N-2) * (N-2) );//更新蛇尾坐标

            s[position[head].x][position[head].y]='*';  //将蛇头更为蛇身

            head= (head+1) % ( (N-2) * (N-2) );

            position[head].x = x;

            position[head].y = y;

            s[position[head].x][position[head].y]='#'; //更新蛇头

            gameover = 1;

        }
    return gameover;

}
//====================================
//主函数部分
//====================================
int main()
{
    char ctn = 'y';

    int nodead;

    cout<<"\n\n\n\n\n\t\t\t 欢迎进入贪吃蛇游戏!"<<endl;//欢迎界面;

    cout<<"\n\n\n\t\t\t 按任意键马上开始。。。"<<endl;//准备开始;;

    getch();

    while( ctn=='y' )
    {
        system("cls"); // 清屏

        snake_map snake;

        snake.initialize();

        cout << "\n\n请输入数字选择游戏等级:" << endl;

        cout << "\n\n\n\t\t\t1.等级一:速度 1000 \n\n\t\t\t2.等级二:速度 800 \n\n\t\t\t3.等级三:速度 600 ";

        cout << "\n\n\t\t\t4.等级四:速度 400 \n\n\t\t\t5.等级五:速度 200 \n\n\t\t\t6.等级六:速度 100 \n\n\t\t\t7.自动升级模式" << endl;

        snake.getgrade();//获取等级

        for(int i=1;i<=4;i++)
        {
            position[i].initialize(i);//初始化坐标
        }

        snake.setpoint();  // 产生第一个米

        do
        {
            snake.show_game();

            nodead = snake.updata_game();

        }while(nodead);

        system("cls"); //清屏



        cout << "\n\n\n\t\t\t\tGameover!\n\n"<<endl;

        snake.display();//输出等级/得分情况

        cout << "\n\n\n\t\t    是否选择继续游戏?输入 y 继续,n 退出" << endl;

        cin >> ctn;

    }

    return 0;
}

23、坦克大战(1)

#include <stdio.h>
 
#include <windows.h>
 
#include <time.h> 
 
                           //里规格:长39*2=78 (真坐标)(假坐标宽为39)  高39
 
                           //外规格:长41*2=82 (真坐标)(假坐标宽为41)  高41
 
#define UP    1
 
#define DOWN  2
 
#define LEFT  3
 
#define RIGHT 4
 
#define MAX_LEVEL 8
 
#define BULLET_NUM 20
 
#define MAX_LIFE 4
 
 
 
//程序中未写入函数参数表中且未说明的变量只有map二维数组,level_info数组和level   
 
 
 
/*
      此程序中涉及的x,y类的坐标值,分为以下两种:                                 
                                                                                                  
假坐标:这里的坐标指的是以一个■长度为单位的坐标,而不是真正的coord坐标 (用于map数组的坐标)                             
                                                                                                  
真坐标:头文件自带的坐标结构coord中的坐标(也可以说是控制台里的真正坐标值)                                 
                                                                                                  
  区别:纵坐标y两值一致,假横坐标x值与真正coord横坐标(真坐标)关系是 x * 2 = coord 横坐标    
                                                                                                            
          coord横坐标既指GoTo函数中的x参数,因为本程序游戏界面以一个■长度为基本单位,                    
                                                                                                  
          可以说涉及的coord横坐标全是偶数。既假坐标要变真坐标(变真坐标才能发挥真正作用),横坐标须乘以2                                    
                                                           
*/
 
typedef struct             //这里的出现次序指的是一个AI_tank变量中的次序,游戏共有四个AI_tank变量
 
{                          //∵设定每个AI_tank每种特殊坦克只出现一次 ∴fast_tank & firm_tank 最多出现次数不超过1
 
    int fast_tank_order;   //fast_tank出现的次序(在第fast_tank_order次复活出现,从第0次开始),且每个AI_tank只出现一次
 
    int firm_tank_order;   //firm_tank出现的次序,同上
 
} LevInfo;                 //关卡信息(准确说是该关出现的坦克信息)
 
LevInfo level_info [MAX_LEVEL] = {{-1,-1},{3,-1},{-1,3},{2,3},{2,3},{2,3},{2,3},{2,3}};   //初始化,-1代表没有该类型坦克
 
 
 
 
 
typedef struct      //子弹结构体
 
{
 
    int x,y;        //子弹坐标,假坐标
 
    int direction;  //子弹方向变量
 
    bool exist;     //子弹存在与否的变量,1为存在,0不存在
 
    bool initial;   //子弹是否处于建立初状态的值,1为处于建立初状态,0为处于非建立初状态
 
    bool my;        //区分AI子弹与玩家子弹的标记,0为AI子弹,1为玩家(我的)子弹
 
} Bullet;
 
Bullet bullet [BULLET_NUM];  //考虑到地图上不太可能同时存在20颗子弹,所以数组元素设置20个
 
 
 
 
 
typedef struct      //坦克结构体
 
{
 
    int x,y;        //坦克中心坐标
 
    int direction;  //坦克方向
 
    int color;      //颜色参方向数,1到6分别代表不同颜色,具体在PrintTank函数定义有说明
 
    int model;      //坦克图案模型,值为1,2,3,分别代表不同的坦克图案,0为我的坦克图案,AI不能使用
 
    int stop;       //只能是AI坦克使用的参数,非0代表坦克停止走动,0为可以走动
 
    int revive;     //坦克复活次数
 
    int num;        //AI坦克编号(固定值,为常量,初始化函数中定下)0~3
 
    int CD;         //发射子弹冷却计时
 
    bool my;        //是否敌方坦克参数,我的坦克此参数为1,为常量
 
    bool alive;     //存活为1,不存活为0
 
}  Tank;
 
Tank AI_tank[4] , my_tank;  //my_tank为我的坦克,Ai_tank 代表AI坦克
 
 
 
//∵所有的函数都有可能对全局变量map进行读写(改变),
 
//∴函数中不另说明是否会对全局变量map读写
 
//基本操作与游戏辅助函数
 
void GoToxy(int x,int y);    //光标移动
 
void HideCursor();           //隐藏光标
 
void keyboard ();            //接受键盘输入
 
void Initialize();           //初始化(含有对多个数据的读写)
 
void Stop();                 //暂停
 
void Getmap();               //地图数据存放与获取
 
void Frame ();               //打印游戏主体框架
 
void PrintMap();             //打印地图(地图既地图障碍物)(含对level的读取)
 
void SideScreen ();          //副屏幕打印
 
void GameCheak();            //检测游戏输赢
 
void GameOver( bool home );  //游戏结束
 
void ClearMainScreen();      //主屏幕清屏函数∵system("cls")后打印框架有一定几率造成框架上移一行的错误∴单独编写清屏函数
 
void ColorChoose(int color); //颜色选择函数
 
void NextLevel();            //下一关(含有对level全局变量的读写)
 
 
 
//子弹部分
 
void BuildAIBullet(Tank *tank);                //AI坦克发射子弹(含有对my_tank的读取,只读取了my_tank坐标)
 
void BuildBullet  (Tank tank);                 //子弹发射(建立)(人机共用)(含全局变量bullet的修改)我的坦克发射子弹直接调用该函数,AI通过AIshoot间接调用
 
void BulletFly    (Bullet bullet[BULLET_NUM]); //子弹移动和打击(人机共用),
 
void BulletHit    (Bullet* bullet);            //子弹碰撞(人机共用)(含Tank全局变量的修改),只通过BulletFly调用,子弹间的碰撞不在本函数,子弹间碰撞已在BulletShoot中检测并处理
 
void PrintBullet  (int x,int y,int T);         //打印子弹(人机共用)
 
void ClearBullet  (int x,int y,int T);         //清除子弹(人机共用)
 
int  BulletCheak  (int x,int y);               //判断子弹前方情况(人机共用)
 
 
 
//坦克部分
 
void BuildAITank (int* position, Tank* AI_tank); //建立AI坦克
 
void BuildMyTank (Tank* my_tank);                //建立我的坦克
 
void MoveAITank  (Tank* AI_tank);                //AI坦克移动
 
void MoveMyTank  (int turn);                     //我的坦克移动,只通过keyboard函数调用,既键盘控制
 
void ClearTank   (int x,int y);                  //清除坦克(人机共用)
 
void PrintTank   (Tank tank);                    //打印坦克(人机共用)
 
bool TankCheak   (Tank tank,int direction);      //检测坦克dirtection方向的障碍物,返值1阻碍,0 畅通
 
int  AIPositionCheak (int position);           //检测AI坦克建立位置是否有障碍物AIPositionCheak
 
 
 
//DWORD WINAPI InputX(LPVOID lpParameter); //声明线程函数,用于检查X键输入并设置X键的输入冷却时间
 
 
 
 
 
//注意map数组应是纵坐标在前,横坐标在后,既map[y][x],(∵数组行长度在前,列长度在后)
 
//map里的值: 个位数的值为地图方块部分,百位数的值为坦克,子弹在map上没有值(子弹仅仅是一个假坐标)
 
//map里的值: 0为可通过陆地,1为红砖,2黄砖,5为水,100~103为敌方坦克,200为我的坦克,
 
 
 
//全局变量
 
int map[41][41];  //地图二维数组
 
int key_x;        // X键是否被“读入”的变量,也是子弹是否可以发射的变,
 
int bul_num;      //子弹编号
 
int position;     //位置计数,对应AI坦克生成位置,-1为左位置,0为中间,1为右,2为我的坦克位置
 
int speed=7;      //游戏速度,调整用
 
int level=1;      //游戏关卡数
 
int score=0;      //游戏分数
 
int remain_enemy; //剩余敌人(未出现的敌人)
 
 
 
char* tank_figure[4][3][4]=
 
{
 
  {
 
    {"◢┃◣", "◢━◣", "◢┳◣", "◢┳◣"},
 
    {"┣●┫", "┣●┫", "━●┃", "┃●━"},
 
    {"◥━◤", "◥┃◤", "◥┻◤", "◥┻◤"}
 
  }, 
 
  {
 
    {"┏┃┓", "┏┳┓", "┏┳┓", "┏┳┓"},
 
    {"┣●┫", "┣●┫", "━●┫", "┣●━"},
 
    {"┗┻┛", "┗┃┛", "┗┻┛", "┗┻┛"}
 
  }, 
 
  {
 
    {"┏┃┓", "◢━◣", "┏┳◣", "◢┳┓"},
 
    {"┣●┫", "┣●┫", "━●┃", "┃●━"},
 
    {"◥━◤", "┗┃┛", "┗┻◤", "◥┻┛"}
 
  },
 
  {
 
    {"╔┃╗", "╔╦╗", "╔╦╗", "╔╦╗"},
 
    {"╠█╣", "╠█╣", "━█╣", "╠█━"},
 
    {"╚╩╝", "╚┃╝", "╚╩╝", "╚╩╝"}
 
  }
 
};
 
 
 
 
 
 
 
int main ()                               //主函数
 
{
 
    int i;
 
    unsigned int interval[12]={1,1,1,1,1,1,1,1,1,1,1,1} ;  //间隔计数器数组,用于控制速度
 
    srand(time(NULL)); //设置随机数种子(若不设置种子而调用rand会使每次运行的随机数序列一致)随机数序列指:如首次调用rand得到1,第二次得2,第三次3,则此次随机数序列为1,2,3
 
    HideCursor();                         //隐藏光标
 
    system("mode con cols=112 lines=42"); //控制窗口大小
 
    Frame ();                             //打印游戏主体框架
 
    Initialize();                         //初始化,全局变量level初值便是1 
 
//    HANDLE h1 , h2 ;                      //定义句柄变量
 
    for(;;)
 
    {
 
        if(interval[0]++%speed==0)        //速度调整用,假设interval[0]为a, 语句意为 a % 2==0,a=a+1; 
 
        {
 
            GameCheak();                  //游戏胜负检测
 
            BulletFly ( bullet );
 
            for(i=0 ; i<=3 ; i++)         //AI坦克移动循环
 
            {
 
                if(AI_tank[i].model==2 && interval[i+1]++%2==0) //四个坦克中的快速坦克单独使用计数器1,2,3,4
 
                    MoveAITank( & AI_tank[i]);
 
                if(AI_tank[i].model!=2 && interval[i+5]++%3==0) //四个坦克中的慢速坦克单独使用计数器5,6,7,8
 
                    MoveAITank( & AI_tank[i]);
 
            }
 
            for(i=0;i<=3;i++)                                   //建立AI坦克部分
 
                     if(AI_tank[i].alive==0 && AI_tank[i].revive<4 && interval[9]++%90==0)  //一个敌方坦克每局只有4条命
 
                {                                               //如果坦克不存活。计时,每次建立有间隔  1750 ms
 
                       BuildAITank( &position, & AI_tank[i] );     //建立AI坦克(复活)
 
                      break;                                      //每次循环只建立一个坦克
 
                  }
 
            for(i=0;i<=3;i++)
 
                if(AI_tank[i].alive)
 
                    BuildAIBullet(&AI_tank[i]);                 //AIshoot自带int自增计数CD,不使用main中的CD interval
 
            if(my_tank.alive && interval[10]++%2==0 )
 
                 keyboard ();
 
            if(my_tank.alive==0 && interval[11]++%30==0 && my_tank.revive < MAX_LIFE)
 
                 BuildMyTank( &my_tank );
 
        }
 
        Sleep(5);
 
    }
 
    return 0;
 
}
 
 
 
 
 
/*//这里的多线程暂时不用                   //x键用于子弹发射,x键的冷却时间不能和上下左右一同设置,那样就太快了
DWORD WINAPI InputX(LPVOID lpParameter)    //如果不用多线程运行,那么在x键冷却时间内程序会因Sleep将会挂起,暂停运行
{                                          //因为只有一个变量改变,而且变量改变先后顺序是显而易见的,所以不必设置缓冲区
    for(;;)                              
    {                                    
        if(GetAsyncKeyState( 88 )& 0x8000) //88为x键键值,当摁下x并且x键处于可输入状态
        {
            key_x=1;                       // X键是否允许被“读入”的变量,也是子弹是否可以发射的变量
            Sleep(600);                    // 子线程Sleep中,x就不能被"读入",主线程每操作完一次子弹发射,key_x会归零
        }
        Sleep(10);
    }
    return 0;
}*/
 
 
 
 
 
void keyboard ()
 
{               // kbhit()   getch()  用法可用但是不好用            
 
/* 
   函数功能:该函数判断在此函数被调用时,某个键是处于UP状态还是处于DOWN状态,及前次调用GetAsyncKeyState函数后,
   是否按过此键.如果返回值的最高位被置位,那么该键处于DOWN状态;如果最低位被置位,那么在前一次调用此函数后,此键被按过,
   否则表示该键没被按过.
   这里GetAsyncKeyState比 kbhit() + getch() 好用,操作更顺畅.   GetAsyncKeyState的返回值表示两个内容,
   一个是最高位bit的值,代表这个键是否被按下。一个是最低位bit的值,代表上次调用GetAsyncKeyState后,这个键是否被按下。
   &为与操作,&0x8000就是判断这个返回值的高位字节。如果high-order bit是1,则是按下状态,否则是弹起状态,为0
*/
 
    int count=0;
 
    if (GetAsyncKeyState(VK_UP)& 0x8000)  
 
        MoveMyTank( UP );
 
    else if (GetAsyncKeyState(VK_DOWN)& 0x8000)  
 
        MoveMyTank( DOWN );
 
    else if (GetAsyncKeyState(VK_LEFT)& 0x8000)
 
        MoveMyTank( LEFT );
 
    else if (GetAsyncKeyState(VK_RIGHT)& 0x8000)  
 
        MoveMyTank( RIGHT );
 
    else if (GetAsyncKeyState( 0x1B )& 0x8000)  // Esc键
 
        exit(0);                                //退出程序函数
 
    else if (GetAsyncKeyState( 0x20 )& 0x8000)  //空格
 
        Stop();
 
    else if (count++%7==0)            //这里添加计数器是为了防止按键粘连不能达到微调效果
 
    {
 
        if (speed>1 && GetAsyncKeyState( 0x6B )& 0x8000)   // +键
 
        {
 
            speed--;
 
            GoToxy(102,11);           //在副屏幕打印出当前速度
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_BLUE|FOREGROUND_RED);
 
            printf("%d ",21-speed);   //副屏幕显示的速度为1~10
 
        }
 
        else if (speed<20 && GetAsyncKeyState( 0x6D )& 0x8000)  // - 键
 
        {
 
            speed++;
 
            GoToxy(102,11);           //在副屏幕打印出当前速度
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_BLUE|FOREGROUND_RED);
 
            printf("%d ",21-speed);   //副屏幕显示的速度为1~10
 
        }
 
    }
 
    if(my_tank.CD==7)
 
    {
 
        if(GetAsyncKeyState( 88 )& 0x8000)
 
        {
 
            BuildBullet(my_tank);
 
            my_tank.CD=0;
 
        }
 
    }
 
    else
 
        my_tank.CD++;
 
}
 
 
 
 
 
 
 
void BuildAIBullet(Tank *tank)   //AI子弹发射(建立)含有对my_tank的读取
 
{
 
    if(tank->CD==15)
 
    {
 
        if(!(rand()%11))     //冷却结束后在随后的每个游戏周期中有10分之一的可能发射子弹
 
        {
 
            BuildBullet(*tank);
 
            tank->CD=0;
 
        }
 
    }
 
    else
 
        tank->CD++;
 
    if(tank->CD >= 14)       //AI强化部分,在冷却到达一定范围即可使用
 
    {
 
        if(tank->y==38 )     //如果坦克在底部(这个最优先)
 
        {
 
            if(tank->x < 20) //在老家左边
 
            {
 
                if(tank->direction==RIGHT)  //坦克方向朝左
 
                {
 
                    BuildBullet(*tank);     //发射子弹
 
                    tank->CD=0;
 
                }
 
            }
 
            else             //在老家右边
 
                if(tank->direction==LEFT)   //坦克方向朝右
 
                {
 
                    BuildBullet(*tank);     //发射子弹
 
                    tank->CD=0;
 
                }
 
        }
 
        else if(tank->x==my_tank.x+1 || tank->x==my_tank.x || tank->x==my_tank.x-1)  //AI坦克在纵向上"炮口"对准我的坦克
 
        {
 
            if(tank->direction==DOWN && my_tank.y > tank->y || tank->direction==UP && my_tank.y < tank->y)
 
            {                               //若是AI朝下并且我的坦克在AI坦克下方(数值大的在下面)或者AI朝上我的坦克在AI上方
 
                int big=my_tank.y , smal=tank->y , i; 
 
                if(my_tank.y < tank->y)
 
                {
 
                    big=tank->y;
 
                    smal=my_tank.y;
 
                }
 
                for(i=smal+2;i<=big-2;i++)  //判断AI炮口的直线上两坦克间有无障碍
 
                    if(map[i][tank->x]!=0 || map[i][tank->x]!=5)      //若有障碍
 
                        break;
 
                if(i==big-1)                //若i走到big-1说明无障碍
 
                {
 
                    BuildBullet(*tank);     //则发射子弹
 
                    tank->CD=0;
 
                }
 
            }
 
        }
 
        else if(tank->y==my_tank.y+1 || tank->y==my_tank.y || tank->y==my_tank.y-1) //AI坦克在横向上"炮口"对准我的坦克
 
        {
 
            if(tank->direction==RIGHT && my_tank.x > tank->x || tank->direction==LEFT && my_tank.x < tank->x)
 
            {                  //若是AI朝右并且我的坦克在AI坦克右方(数值大的在下面)或者AI朝左我的坦克在AI左方
 
                int big=my_tank.y , smal=tank->y , i;
 
                if(my_tank.x < tank->x)
 
                {
 
                    big=tank->x;
 
                    smal=my_tank.x;
 
                }
 
                for(i=smal+2;i<=big-2;i++)  //判断AI炮口的直线上两坦克间有无障碍
 
                    if(map[tank->y][i]!=0 || map[tank->y][i]!=5)      //若有障碍
 
                        break;
 
                if(i==big-1)   //若i走到big-1说明无障碍
 
                {
 
                    BuildBullet(*tank);     //则发射子弹
 
                    tank->CD=0;
 
                }
 
            }
 
        }
 
    }
 
}
 
 
 
 
 
 
 
void BuildBullet(Tank tank)  //子弹发射(建立),传入结构体Tank,这里包含改变了全局变量结构体bullet
 
{                            //∵实现方式为顺序循环建立子弹,每次调用改变的bullet数组元素都不同
 
    switch(tank.direction)   //∴为了方便,不将bullet放入参数,bullet作为全局变量使用
 
    {
 
        case UP    :
 
                bullet [bul_num].x = tank.x;
 
                bullet [bul_num].y = tank.y-2;
 
                bullet [bul_num].direction=1;
 
                break;
 
        case DOWN  :
 
                bullet [bul_num].x = tank.x;
 
                bullet [bul_num].y = tank.y+2;
 
                bullet [bul_num].direction=2;
 
                break;
 
        case LEFT  :
 
                bullet [bul_num].x = tank.x-2;
 
                bullet [bul_num].y = tank.y;
 
                bullet [bul_num].direction=3;
 
                break;
 
        case RIGHT :
 
                bullet [bul_num].x = tank.x+2;                                     
 
                bullet [bul_num].y = tank.y; 
 
                bullet [bul_num].direction=4;
 
                break; 
 
    }     
 
    bullet [bul_num].exist = 1;    //子弹被建立,此值为1则此子弹存在
 
    bullet [bul_num].initial = 1;  //子弹处于初建立状态
 
    bullet [bul_num].my=tank.my;   //如果是我的坦克发射的子弹bullet.my=1,否则为0
 
    bul_num++;
 
    if(bul_num==BULLET_NUM)        //如果子弹编号增长到20号,那么重头开始编号
 
        bul_num=0;                 //考虑到地图上不可能同时存在20颗子弹,所以数组元素设置20个
 
}
 
 
 
 
 
void BulletFly(Bullet bullet[BULLET_NUM]) //子弹移动和打击
 
{                                         //含有全局变量Bullet的改变
 
    for(int i =0; i<BULLET_NUM;i++)
 
    {
 
        if(bullet [i].exist)              //如果子弹存在
 
        {   
 
            if(bullet [i].initial==0)     //如果子弹不是初建立的
 
            {                           
 
                if(map[bullet[i].y] [bullet[i].x]==0 || map[bullet[i].y] [bullet[i].x]==5)   //如果子弹坐标当前位置无障碍
 
                    ClearBullet( bullet[i].x , bullet[i].y , BulletCheak(bullet[i].x , bullet[i].y ));     //抹除子弹图形
 
                switch(bullet [i].direction)                                      //然后子弹坐标变化(子弹变到下一个坐标)
 
                {
 
                    case UP    :(bullet [i].y)--;break;
 
                    case DOWN  :(bullet [i].y)++;break;
 
                    case LEFT  :(bullet [i].x)--;break;
 
                    case RIGHT :(bullet [i].x)++;break;
 
                }
 
            }
 
            int collide = BulletCheak ( bullet [i].x , bullet [i].y );   //判断子弹当前位置情况,判断子弹是否碰撞,是否位于水面上。
 
            if( collide )                                                //如果检测到当前子弹坐标无障碍(无碰撞)(包括在地面上与在水面上)
 
                PrintBullet( bullet[i].x , bullet[i].y , collide);       //则打印子弹,若有碰撞则不打印
 
            else
 
                BulletHit( & bullet [i] );     //若有碰撞则执行子弹碰撞函数                  
 
            if(bullet [i].initial)             //若子弹初建立,则把初建立标记去除
 
                bullet [i].initial = 0;
 
            for(int j=0; j< BULLET_NUM ; j++)  //子弹间的碰撞判断,若是我方子弹和敌方子弹碰撞则都删除,若为两敌方子弹则无视
 
                if(bullet [j].exist && j!=i && (bullet[i].my || bullet[j].my) && bullet[i].x==bullet[j].x && bullet[i].y==bullet[j].y)
 
                {                              //同样的两颗我方子弹不可能产生碰撞
 
                    bullet [j].exist=0;
 
                    bullet [i].exist=0;
 
                    ClearBullet( bullet[j].x , bullet[j].y , BulletCheak(bullet[j].x , bullet[j].y ));  //抹除j子弹图形,子弹i图形已被抹除
 
                    break;
 
                }
 
        }
 
    }
 
}
 
 
 
 
 
void BulletHit(Bullet* bullet)  //含有Tank全局变量的修改,子弹间的碰撞不在本函数,子弹间碰撞已在BulletShoot中检测并处理
 
{                               //∵每次打中的坦克都不一样,不可能把所有坦克放在参数表中
 
    int x=bullet->x;            //∴这里的Tank使用全局变量
 
    int y=bullet->y;            //这里传入的值是子弹坐标,这两个值不需要改变
 
    int i;
 
    if(map[y][x]==1 || map[y][x]==2)  //子弹碰到砖块
 
    {
 
        if(bullet->direction==UP || bullet->direction==DOWN)   //如果子弹是纵向的
 
            for(i = -1 ; i<=1 ; i++)
 
                if(map[y][x+i]==1 || map[y][x+i]==2)  //如果子弹打中砖块两旁为砖块,则删除砖,若不是(一旁为坦克或其他地形)则忽略
 
                {
 
                    map[y][x+i]=0;    //砖块碎
 
                     GoToxy(2*x+2*i,y);
 
                    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED); //背景黑色
 
                     printf("  ");
 
                }
 
        if(bullet->direction==LEFT || bullet->direction==RIGHT)     //若子弹是横向的  (与子弹纵向实现同理)
 
            for(i = -1 ; i<=1 ; i++)
 
                if(map[y+i][x]==1 || map[y+i][x]==2)
 
                {
 
                    map[y+i][x]=0;
 
                     GoToxy(2*x,y+i);
 
                    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED); //背景黑色
 
                     printf("  "); 
 
                }
 
        bullet->exist=0;           //这颗子弹已经不存在了
 
    }
 
    else if(map[y][x]==4 || map[y][x]==6 )  //子弹碰到边框或者不可摧毁方块
 
        bullet->exist=0;
 
    else if(bullet->my && map[y][x]>=100 && map[y][x]<104 )  //若我的子弹碰到了敌方坦克
 
    {
 
        int num = map[y][x]%100;   //map[y][x]%100 等同于 tank.num ,可通过map值读取该坦克信息
 
        if(AI_tank[num].model==3 && AI_tank[num].color==2)   //若为firm tank,且color==2。该坦克为绿色,表明没有受到伤害
 
                AI_tank[num].color=3;                        //则变成黄色,color=3为黄色
 
        else if (AI_tank[num].model==3 && AI_tank[num].color==3)
 
                AI_tank[num].color=4;                        //4为红色
 
        else                       //其他类型的坦克或者firm tank为红色的情况
 
        {
 
            AI_tank[num].alive=0;
 
            ClearTank(AI_tank[num].x , AI_tank[num].y);      //清除该坦克
 
        }
 
        bullet->exist=0;
 
        score+=100;
 
        GoToxy(102,5);             //在副屏幕上打印出分数
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE);
 
        printf("%d ",score);
 
    }
 
    else if(map[y][x]==200 && bullet->my==0 )   //若敌方子弹击中我的坦克
 
    {
 
        my_tank.alive=0;
 
        ClearTank(my_tank.x , my_tank.y);
 
        bullet->exist=0;
 
        my_tank.revive++;      //我的坦克复活次数+1(∵我的坦克复活次数与生命值有关∴放在这里自减)
 
        score-=100;            //分数减少
 
        GoToxy(102,5);         //在副屏幕上打印出分数
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE);
 
        printf("%d   ",score);
 
        GoToxy(102,7);         //在副屏幕打印出我的剩余生命值
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);
 
        printf("%d   ", MAX_LIFE-my_tank.revive);
 
    }
 
//    else if(bullet->my==0 && map[y][x]>=100 && map[y][x]<104) //敌方子弹击中敌方坦克,可以设置两种子弹运行方式,这种暂时不用
 
//        bullet->exist=0;
 
    else if(map[y][x]==9)      //子弹碰到家(无论是谁的子弹)
 
    {
 
        bullet->exist=0;
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_BLUE|FOREGROUND_RED|FOREGROUND_GREEN);
 
        GoToxy(38,37);     printf("      ");
 
        GoToxy(38,38);     printf("◢◣  ");
 
        GoToxy(38,39);     printf("███");
 
        GameOver(1);           //游戏结束,传入1代表老家被毁
 
    }
 
}
 
 
 
 
 
int BulletCheak (int x,int y)  //判断子弹当前位置情况,判断子弹是否碰撞,是否位于水面上。
 
{                              //有障碍返回0,无障碍且子弹在地面返回1,子弹在水面上返回2
 
    if(map[y][x]==0)
 
        return 1;
 
    else if(map[y][x]==5)
 
        return 2;
 
    else
 
        return 0;
 
}
 
 
 
 
 
void PrintBullet (int x,int y,int T)   //当前坐标BulletCheak 的值做参量 T
 
{
 
    if(T==1)          //  T==1 表示子弹当前坐标在陆地上
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE|FOREGROUND_INTENSITY);
 
    else if(T==2)     //  T==2 表示子弹当前坐标在水面上
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE|FOREGROUND_INTENSITY|BACKGROUND_BLUE);
 
    GoToxy(2*x,y);
 
    printf("●");
 
}
 
 
 
 
 
void ClearBullet(int x,int y,int T)   //当前坐标BulletCheak 的值做参量 T
 
{
 
    GoToxy(2*x,y);
 
    if(T==2)        //  T==2 表示子弹当前坐标在水面上
 
    {
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|BACKGROUND_BLUE|FOREGROUND_BLUE|FOREGROUND_GREEN);
 
        printf("~");
 
    }
 
    else if(T==1)   //  T==1 表示子弹当前坐标在陆地上
 
    {
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_BLUE);
 
        printf("●");
 
    }
 
}
 
 
 
 
 
//position为坦克生成位置,-1为左位置,0为中间,1为右,2为我的坦克位置
 
void BuildAITank(int* position, Tank* AI_tank)   //执行一次该函数只建立一个坦克
 
{                                         //rand函数公式:0<=rand()%(a+1)<=a  0+m<=rand()%(n-m+1)+m<=n  
 
                                          //rand函数实现1到n:1<=rand()%(n)+1<=n
 
       if(AIPositionCheak(*position))        //若此位置无障碍,可生成。position参数详见AIPositionCheak函数定义
 
    {
 
        AI_tank->x= 20 + 18*(*position);  //20 + 18 * position 对应三个生成位置的x假坐标
 
        AI_tank->y=2;
 
        if(AI_tank->revive==level_info[level-1].firm_tank_order)  //坦克出现(复活)次序==关卡信息(level_info)中firm tank的出现次序
 
        {
 
            AI_tank->model = 3;           //3为firm tank的模型(外观)
 
            AI_tank->color = 2;           //颜色参数2为绿色,具体详见函数ColorChoose
 
        }
 
        else if(AI_tank->revive==level_info[level-1].fast_tank_order)  //同上if,这里是fast_tank的
 
        {
 
            AI_tank->model = 2;
 
            AI_tank->color = rand()%6+1;  //若不是firm tank则随机颜色,颜色参数为1~6,分别代表不同颜色,详见函数ColorChoose
 
        }
 
        else      //普通坦克
 
        {
 
            AI_tank->model = 1;
 
               AI_tank->color = rand()%6+1;  //若不是firm tank则随机颜色
 
        }
 
        AI_tank->alive = 1;       //坦克变为存在
 
        AI_tank->direction = 2 ;  //方向朝下
 
        AI_tank->revive++;        //复活次数+1
 
        PrintTank(*AI_tank);
 
        (*position)++; 
 
        remain_enemy--;
 
        GoToxy(102,9);            //在副屏幕上打印剩余坦克数
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED);
 
        printf("%d ",remain_enemy);
 
        if(*position==2)          //position只能为0,1,-1,这里position循环重置
 
            *position = -1;
 
             return ;                  //若生成了一辆坦克,则结束该函数
 
    }
 
}
 
 
 
 
 
int AIPositionCheak( int position )    //position为坦克生成位置2为我的坦克位置,其余为AI位,-1为左位,0为中间位置,1为右位
 
{
 
    int    x,y;
 
    if(position==2)                    //2为我的坦克位置,现在暂时用不到
 
        x=15,y=38;
 
    else
 
        y=2 , x= 20 + 18 * position ;  //20 + 18 * position 对应三个生成位置的x假坐标
 
    for(int i=0;i<3;i++)
 
        for(int j=0;j<3;j++)
 
            if( map[y+j-1][x+i-1]!=0)  //如果遍历的九宫格里有障碍物
 
                return 0;              //则返回0,表示此生成位置有阻碍
 
    return 1;                          //否则生成1,表示此生成位置无阻碍
 
}
 
 
 
 
 
void MoveAITank(Tank* AI_tank) //AI专用函数,该函数主要为AI加强
 
{
 
       if(AI_tank->alive)         //如果坦克活着
 
    {
 
        if(AI_tank->stop!=0)   //坦克是否停止运动的判断,若stop参数不为0
 
        {
 
            AI_tank->stop--;   //则此坦克本回合停止运动
 
            return;
 
        }
 
        if( !(rand()%23) )     //22分之1的概率执行方向重置
 
        {
 
            AI_tank->direction = rand()%4+1;
 
            if( rand()%3 )     //在方向重置后有2分之1的概率停止走动3步的时间
 
            {
 
                AI_tank->stop=2;
 
                return;
 
            }
 
        }
 
        ClearTank (AI_tank->x , AI_tank->y);
 
        if(TankCheak ( *AI_tank , AI_tank->direction))   //如果前方无障碍
 
            switch ( AI_tank->direction )
 
            {
 
                   case UP   : AI_tank->y--; break;  //上前进一格
 
                case DOWN : AI_tank->y++; break;  //下前进一格
 
                 case LEFT : AI_tank->x--; break;  //左前进一格
 
                case RIGHT: AI_tank->x++; break;  //右前进一格
 
            }
 
        else                     //前方有障碍
 
        {
 
            if(!(rand()%4))      //3分之1的概率乱转
 
            {
 
                AI_tank->direction=rand()%4+1;
 
                AI_tank->stop=2; //乱转之后停止走动3步的时间
 
                PrintTank(*AI_tank);
 
                return;          //∵continue会跳过下面的打印函数,∴这里先打印
 
            }
 
            else                 //另外3分之2的几率选择正确的方向
 
            {
 
                int j;
 
                for(j=1;j<=4;j++)
 
                    if(TankCheak ( *AI_tank , j ))  //循环判断坦克四周有无障碍,此函数返值1为可通过
 
                        break;
 
                if(j==5)         //j==5说明此坦克四周都有障碍物,无法通行
 
                {
 
                    PrintTank(*AI_tank);
 
                    return;      //则跳过下面的while循环以防程序卡死
 
                }
 
                while(TankCheak ( *AI_tank , AI_tank->direction) == 0)  //如果前方仍有障碍
 
                    AI_tank->direction=(rand()%4+1);                    //则换个随机方向检测
 
            }
 
        }
 
        PrintTank(*AI_tank);     //打印AI坦克
 
    }
 
}
 
 
 
 
 
void BuildMyTank (Tank* my_tank) //建立我的坦克
 
{
 
    my_tank->x=15;
 
       my_tank->y=38;
 
       my_tank->stop=NULL;
 
       my_tank->direction=1;
 
    my_tank->model=0;
 
    my_tank->color=1;
 
    my_tank->alive=1;
 
    my_tank->my=1;
 
    my_tank->CD=7;
 
    PrintTank (*my_tank) ;   //打印我的坦克
 
}
 
 
 
 
 
void MoveMyTank(int turn )   //玩家专用函数,turn为keyboard函数里因输入不同方向键而传入的不同的值
 
{
 
    ClearTank(my_tank.x , my_tank.y);        //map 数组中“我的坦克”参数清除工作已在此函数中完成
 
    my_tank.direction=turn;                  //将键盘输入的方向值传入我的坦克方向值
 
    if(TankCheak ( my_tank , my_tank.direction ))  //若此时我的坦克当前方向上无障碍
 
        switch (turn)
 
        {
 
            case UP   : my_tank.y--; break;  //上前进一格
 
            case DOWN : my_tank.y++; break;  //下前进一格
 
            case LEFT : my_tank.x--; break;  //左前进一格
 
            case RIGHT: my_tank.x++; break;  //右前进一格
 
    }                                        //若坦克当前方向上有障碍则跳过坐标变化直接打印该转向的坦克
 
    PrintTank (my_tank);
 
}
 
 
 
 
 
bool TankCheak(Tank tank,int direction)  //检测坦克前方障碍函数,参量为假坐标。返值1为可通过,返值0为阻挡(人机共用)
 
{
 
    switch(direction)                    //direction变量   1上,2下,3左,4右
 
    {
 
        case UP:
 
            if (map[tank.y-2][tank.x]==0 && map[tank.y-2][tank.x-1]==0 && map[tank.y-2][tank.x+1]==0)
 
                return 1;
 
            else
 
                return 0;
 
        case DOWN:
 
            if (map[tank.y+2][tank.x]==0 && map[tank.y+2][tank.x-1]==0 && map[tank.y+2][tank.x+1]==0)
 
                return 1;
 
            else
 
                return 0;
 
        case LEFT:
 
            if (map[tank.y][tank.x-2]==0 && map[tank.y-1][tank.x-2]==0 && map[tank.y+1][tank.x-2]==0)
 
                return 1;
 
            else
 
                return 0;
 
        case RIGHT:
 
            if (map[tank.y][tank.x+2]==0 && map[tank.y-1][tank.x+2]==0 && map[tank.y+1][tank.x+2]==0)
 
                return 1;
 
            else
 
                return 0;
 
        default:
 
            printf("错误!!");
 
            Sleep(5000);
 
            return 0;
 
    }
 
}
 
 
 
 
 
void ClearTank(int x,int y)   //清除坦克函数(人机共用)
 
{
 
    for(int i=0;i<3;i++)
 
        for(int j=0;j<3;j++)
 
        {                     //将坦克占用的地图上的九格去掉
 
             map[y+j-1][x+i-1]=0;
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN);
 
            GoToxy(2*x+2*j-2,y+i-1);
 
            printf("  ");
 
        }
 
}
 
 
 
 
 
void PrintTank(Tank tank)     //打印坦克(人机共用) 由于读取的Tank参数较多,故就不将参数一一传入了
 
{                             // tank.color参数对应不同的颜色,范围 1 ~ 6
 
    ColorChoose(tank.color);  //颜色选择函数   定义一个数组里装着字符指针(既装字符串)的数组指针(指向一维数组首地址的指针)
 
    char *(*tankF)[4] = tank_figure[tank.model];  //将二维数组首址赋初值给数组指针 model==0为我的坦克,4为电脑1坦克,8为电脑2,类推
 
    for(int i = 0; i < 3; i++)   
 
    {
 
        GoToxy((tank.x-1)*2 , tank.y-1+i);        //在坦克中心坐标的左边,上中下三行打印
 
        printf("%s", tankF[i][tank.direction-1]); //打印的是地址,地址既字符串
 
         for(int j=0;j<3;j++)
 
            if(tank.my)       //若为我的坦克
 
                map[tank.y+j-1][tank.x+i-1]=200;  //在map上把"坦克"九格填满代表敌我坦克的参数。敌方此值为100~103,我方为200
 
            else
 
                map[tank.y+j-1][tank.x+i-1]=100+tank.num;  //这样可以通过map值读取坦克编号,读取操作在BulletHit 函数
 
    }
 
}
 
 
 
 
 
void HideCursor()  //隐藏光标
 
{                  //CONSOLE_CURSOR_INFO结构体包含控制台光标的信息,DWORD dwSize光标百分比厚度(1~100)和BOOL bVisible光标是否可见
 
    CONSOLE_CURSOR_INFO cursor_info={1,0};
 
    SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE),&cursor_info); //SetConsoleCursorInfo用来设置指定的控制台光标的大小和可见性。
 
}
 
 
 
 
 
void GoToxy(int x,int y)  //光标移动函数,X表示横坐标,Y表示纵坐标。
 
{
 
    COORD  coord;         //使用头文件自带的坐标结构
 
    coord.X=x;            //这里将int类型值传给short,不过程序中涉及的坐标值均不会超过short范围
 
    coord.Y=y;
 
    HANDLE a=GetStdHandle(STD_OUTPUT_HANDLE);  //获得标准输出句柄
 
    SetConsoleCursorPosition(a,coord);         //以标准输出的句柄为参数设置控制台光标坐标
 
}
 
 
 
 
 
void ColorChoose(int color)   //颜色选择函数
 
{
 
    switch(color)
 
    {
 
           case 1:               //天蓝色(我的坦克颜色)
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_BLUE);
 
            break;
 
        case 2:               //绿色
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);    
 
            break;
 
        case 3:               //黄色
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN);
 
            break;
 
        case 4:               //红色
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED);
 
            break;
 
        case 5:               //紫色
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_BLUE);
 
            break;
 
        case 6:               //白色
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_BLUE|FOREGROUND_GREEN);
 
            break;
 
        case 7:               //深蓝色(∵颜色深难与黑色背景辨识度不高 ∴坦克颜色不选用此颜色),只用在字体颜色闪烁中
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_BLUE);
 
            break;
 
    }
 
}
 
 
 
 
 
void Stop()    //暂停
 
{
 
    int color=1,timing=0;
 
    while(1)
 
    {
 
        if(timing++%30==0)
 
        {
 
            ColorChoose(color);   //颜色选择
 
            GoToxy(100,13);       //副屏幕打印
 
            printf("游戏暂停");
 
            GoToxy(88,17);
 
            printf("按回车键回到游戏");
 
            GoToxy(88,18);
 
            printf("或按 Esc键退出游戏");
 
            if(++color==8)
 
                color=1;
 
        }
 
        if (GetAsyncKeyState( 0xD )& 0x8000)      //回车键
 
        {
 
            GoToxy(100,13);       //副屏幕打印
 
            SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_BLUE);
 
            printf("正在进行");   //覆盖掉原来的提示
 
            GoToxy(88,17);
 
            printf("                     ");
 
            GoToxy(88,18);
 
            printf("                     ");
 
            break;
 
        }
 
        else if(GetAsyncKeyState( 0x1B )& 0x8000) //Esc键退出    
 
            exit(0);
 
        Sleep(20);
 
    }
 
}
 
 
 
 
 
void ClearMainScreen()  //主屏幕清屏函数,因使用system("cls");再打印框架有一定几率造成框架上移一行的错误,所以单独编写清屏函数
 
{
 
    for(int i=1;i<40;i++)
 
    {
 
        GoToxy(2,i);
 
        printf("                                                                              ");
 
    }
 
}
 
 
 
 
 
void Frame ()     //打印游戏主体框架
 
{                 //SetConsoleTextAttribute为设置文本颜色和文本背景颜色函数
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN|FOREGROUND_RED|FOREGROUND_INTENSITY);
 
    printf("  ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁  ");
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY|FOREGROUND_BLUE); 
 
    printf("  ▂▂▂▂▂▂▂▂▂▂▂▂▂ \n");
 
    for(int i=0;i<14;i++)
 
    {
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN|FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_INTENSITY);
 
        printf("▕                                                                              ▏");
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY|FOREGROUND_BLUE); 
 
        printf(" |                          |\n");
 
    }
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN|FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_INTENSITY);
 
    printf("▕                                                                              ▏");
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY|FOREGROUND_BLUE); 
 
    printf(" |═════════════|\n");
 
    for(int i=0;i<24;i++)
 
    {
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN|FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_INTENSITY);
 
        printf("▕                                                                              ▏");
 
        SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), FOREGROUND_INTENSITY|FOREGROUND_BLUE); 
 
        printf(" |                          |\n");
 
    }
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_GREEN|FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_INTENSITY);
 
    printf("  ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔  ");
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY| FOREGROUND_BLUE); 
 
    printf(" ﹊﹊﹊﹊﹊﹊﹊﹊﹊﹊﹊﹊﹊﹊\n");
 
    SideScreen ();  //打印副屏幕
 
}
 
 
 
 
 
void PrintMap()     // 打印地图(地图既地图障碍物)
 
{
 
    for(int j=0;j<41;j++)
 
        for(int i=0;i<41;i++)
 
            if(map[i][j]==6)
 
            {
 
                SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN
 
                    |FOREGROUND_RED|FOREGROUND_BLUE|BACKGROUND_GREEN|BACKGROUND_RED|BACKGROUND_BLUE);
 
                GoToxy(2*j,i);
 
                printf("■");
 
            }
 
            else if(map[i][j]==2)
 
            {
 
                SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED|BACKGROUND_GREEN|BACKGROUND_RED);
 
                GoToxy(2*j,i);
 
                printf("▓");
 
            }
 
            else if(map[i][j]==1)
 
            {
 
                SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|BACKGROUND_GREEN|BACKGROUND_RED);
 
                GoToxy(2*j,i);
 
                printf("▓");
 
            }
 
            else if(map[i][j]==5)
 
            {                      
 
                SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|BACKGROUND_BLUE|FOREGROUND_BLUE|FOREGROUND_GREEN);
 
                GoToxy(2*j,i);
 
                printf("~");
 
            }
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_BLUE|FOREGROUND_RED|FOREGROUND_GREEN);
 
    GoToxy(38,37);     printf("◣◢");
 
    GoToxy(38,38);     printf("███");    //∵无论地图怎么变,家所在位置不变,且家的字符多种,不方便用上述方式打印
 
    GoToxy(38,39);     printf("◢█◣");    //∴直接打印(且家的map值与符号无关)
 
}
 
 
 
 
 
void GetMap()      //地图存放函数
 
{                   //map里的值: 个位数的值为地图方块部分,百位数的值为坦克
 
    int i ,j;      //map里的值: 0为可通过陆地,1为红砖,2待定,5为水,100为敌方坦克,200为我的坦克,
 
    int Map[8][41][41]=
 
    {
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4}, 
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,6,6,6,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,6,6,6,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,6,6,6,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4}, 
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,4}, 
 
            {4,6,6,6,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4}, 
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,4},
 
            {4,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,6,6,6,1,1,1,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,6,6,6,1,1,1,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,6,6,6,1,1,1,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,6,6,6,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,6,6,6,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,6,6,6,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,2,2,2,1,1,1,6,6,6,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,6,6,6,6,6,6,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,4},
 
            {4,2,2,2,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,4},
 
            {4,2,2,2,6,6,6,6,6,6,6,6,6,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,4},
 
            {4,2,2,2,6,6,6,6,6,6,6,6,6,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,6,6,6,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,1,1,1,5,5,5,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,5,5,5,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,5,5,5,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,5,5,5,0,0,0,1,1,1,1,1,1,4},
 
            {4,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},    
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,0,0,0,0,1,1,1,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,0,0,0,0,1,1,1,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,0,0,0,0,1,1,1,0,0,0,6,0,0,0,0,0,6,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,4},
 
            {4,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,1,1,1,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,1,1,1,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,4},
 
            {4,5,5,5,5,5,5,0,0,0,5,5,5,5,5,5,0,0,0,5,5,5,1,1,1,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,4},
 
            {4,0,0,0,5,5,5,5,5,5,5,5,5,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,5,5,5,0,0,0,5,5,5,5,5,5,4},
 
            {4,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,0,4},
 
            {4,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,4},
 
            {4,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,2,2,2,2,2,2,2,0,0,0,1,1,0,0,0,0,0,0,0,1,1,4},
 
            {4,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,6,6,6,6,6,6,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,6,6,6,6,6,6,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,4},
 
            {4,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,6,6,6,6,6,6,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,4},
 
            {4,0,1,1,0,0,0,0,0,0,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,0,0,1,1,1,1,4},
 
            {4,0,1,1,1,0,0,0,0,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,4},
 
            {4,0,0,1,1,1,1,1,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,1,1,1,1,1,1,1,1,1,4},
 
            {4,0,0,0,1,1,1,1,1,1,1,1,1,6,6,6,6,6,6,1,1,1,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,0,4},
 
            {4,0,0,0,1,1,1,1,1,1,1,1,1,6,6,6,6,6,6,1,1,1,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,0,4},
 
            {4,0,0,0,0,1,1,1,1,1,1,1,1,6,6,6,6,6,6,1,1,1,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,0,0,4},
 
            {4,0,0,0,0,0,1,1,1,1,1,1,1,6,6,6,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,6,6,6,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,6,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,0,0,0,6,6,6,6,6,6,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,1,1,1,0,0,0,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,6,6,6,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4},
 
            {4,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,4},
 
            {4,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,6,6,6,0,0,0,6,6,6,0,0,0,0,0,0,1,1,1,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,6,6,6,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
        {
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,6,6,6,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,1,1,1,0,0,0,0,0,0,4},
 
            {4,0,0,0,6,6,6,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,6,6,6,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,6,6,6,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,5,5,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,5,5,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,5,5,5,5,5,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,6,6,6,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,1,1,1,5,5,5,5,5,5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,6,6,6,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,6,6,6,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,4},
 
            {4,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,1,1,1,6,6,6,0,0,0,4},
 
            {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}
 
        },
 
    };
 
        for(i=0;i<41;i++)
 
            for(j=0;j<41;j++)
 
                    map[i][j]=Map[level-1][i][j];
 
    PrintMap();         //打印地图
 
}
 
 
 
 
 
void GameOver(bool home)
 
{
 
    int timing=0,color=1;
 
    while(1)
 
    {
 
        if(timing++%30==0)         //游戏结束原因为生命值为0
 
        {
 
            ColorChoose(color);    //颜色选择
 
            if(home)               //游戏结束原因为老家被毁,则多打印一行字以提示玩家
 
            {
 
                GoToxy(37,19);     //主屏幕中心打印
 
                printf("老家被毁!");
 
            }
 
            GoToxy(37,20);         //主屏幕中心打印
 
            printf("游戏结束!");
 
            GoToxy(100,13);        //副屏幕打印
 
            printf("游戏结束");
 
            GoToxy(88,17);
 
            printf("请按回车键重新开始!");
 
            GoToxy(88,18);
 
            printf("或按 Esc键退出游戏!");
 
            if(++color==8)
 
                color=1;
 
        }
 
        if (GetAsyncKeyState( 0xD )& 0x8000)  //回车键
 
        {
 
//            system("cls");       //清屏,这里清屏后再次打印框架有一定几率造成框架上移一行的bug,因此选用自建清屏函数
 
//            Frame ();            //重新打印游戏框架
 
            score-=500;          //分数-500
 
            ClearMainScreen();   //主屏清屏函数,无需再次打印框架
 
            Initialize();        //从本关重新开始
 
            break;
 
        }
 
        else if(GetAsyncKeyState( 0x1B )& 0x8000)  //Esc键退出    
 
            exit(0);
 
        Sleep(20);
 
    }
 
}
 
 
 
 
 
void NextLevel()
 
{
 
    int timing=0,color=1;
 
    level++;
 
    if(level<=MAX_LEVEL)
 
        while(1)
 
        {
 
            if(timing++%10==0)
 
            {
 
                ColorChoose(color);   //颜色选择   
 
                GoToxy(37,20);        //主屏幕中心打印
 
                printf("恭喜过关!");
 
                GoToxy(100,13);       //副屏幕打印
 
                printf("等待下关");
 
                GoToxy(87,17);
 
                printf("请按回车键进入下一关!");
 
                GoToxy(88,18);
 
                printf("或按 Esc键退出游戏!");
 
                if(++color==8)    
 
                    color=1;
 
            }
 
            if (GetAsyncKeyState( 0xD )& 0x8000)  //回车键
 
            {
 
                GoToxy(88,17);        //抹除副屏幕中的提示
 
                printf("                     ");
 
                GoToxy(88,18);
 
                printf("                     ");
 
                ClearMainScreen();   //主屏清屏函数,无需再次打印框架
 
                Initialize();        //初始化从下一关开始,level已++
 
                break;
 
            }
 
            else if(GetAsyncKeyState( 0x1B )& 0x8000)  //Esc键退出    
 
                exit(0);
 
            Sleep(20);
 
        }
 
    else   //level>8 通关
 
        while(1)
 
        {
 
            if(timing++%5==0)
 
            {
 
                ColorChoose(color);
 
                GoToxy(33,20);        //主屏幕中心打印
 
                printf("恭喜通过全部关卡!");
 
                GoToxy(100,13);       //副屏幕打印
 
                printf("已通全关");
 
                GoToxy(88,17);
 
                printf("恭喜通过全部关卡!");
 
                GoToxy(88,19);
 
                printf("按 Esc键退出游戏!");
 
                if(++color==8)    
 
                    color=1;
 
            }
 
            if(GetAsyncKeyState( 0x1B )& 0x8000)  //Esc键退出    
 
                exit(0);
 
            Sleep(10);
 
        }
 
}
 
 
 
 
 
void GameCheak()
 
{                           //剩余敌人为0且四坦克全部不存活
 
    if(remain_enemy<=0 && !AI_tank[0].alive && !AI_tank[1].alive && !AI_tank[2].alive && !AI_tank[3].alive )
 
        NextLevel();        //进入下一关
 
    if(my_tank.revive>=MAX_LIFE)   //我的生命值(复活次数)全部用完 MAX_LIFE
 
        GameOver(0);        //游戏结束,传入0代表我的复活次数用光(生命值为0)。游戏结束有两种判断,另一种是老家被毁
 
}
 
 
 
 
 
void SideScreen ()  //副屏幕 行(84起,110末,若双字符宽则在108打印最后一个字)列(11上屏末,13下屏初,39下屏末。为美观最好打在38)
 
{                   // |         第  d  关         |   " |                          |\n"
 
    GoToxy(93,2);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED);
 
    printf("第     关");
 
    GoToxy(92,5);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED|FOREGROUND_BLUE);
 
    printf("分  数:");
 
    GoToxy(92,7);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);
 
    printf("生  命:");
 
    GoToxy(86,9);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED);
 
    printf("剩余敌方坦克:");
 
    GoToxy(86,11);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_BLUE);
 
    printf("当前游戏速度:  %d",21-speed);
 
    GoToxy(86,13);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_BLUE);
 
    printf("当前游戏状态:");
 
    GoToxy(94,19);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED);
 
    GoToxy(94,24);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED);
 
    printf("帮  助");
 
    GoToxy(86,27);
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);
 
    printf("方向键  ←↑→↓  移动");
 
    GoToxy(93,29);
 
    printf("x 键 射击");
 
    GoToxy(89,31);
 
    printf("+ - 调整游戏速度");
 
    GoToxy(90,33);
 
    printf("游戏速度范围1~20");
 
    GoToxy(90,35);
 
    printf("回车键 暂停游戏");
 
    GoToxy(90,37);
 
    printf("Esc键  退出游戏");
 
/*    printf("帮  助");     //这是第二种详细说明的样式
    GoToxy(86,21);
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);
    printf("方向键  ←↑→↓  移动");
    GoToxy(93,23);
    printf("x 键 射击");
    GoToxy(89,25);
    printf("+ - 调整游戏速度");
    GoToxy(90,27);
    printf("游戏速度范围1~20");
    GoToxy(90,29);
    printf("回车键 暂停游戏");
    GoToxy(90,31);
    printf("Esc键  退出游戏");
    GoToxy(86,33);
    printf("敌方坦克全部消灭则过关");
    GoToxy(87,34);
    printf("己方坦克生命值为0 或");
    GoToxy(86,35);
    printf("正下方的老家被毁则失败");
    GoToxy(86,36);
    printf("己坦克与敌坦克子弹碰撞");
    GoToxy(87,37);
    printf("则抵消,敌坦克间子弹碰");
    GoToxy(86,38);
    printf("撞不抵消且可穿过敌坦克");*/
 
}
 
 
 
 
 
void Initialize()      //初始化
 
{
 
    remain_enemy=16;
 
    my_tank.revive=0;  //我的坦克复活次数为0
 
    position=0;
 
    bul_num=0;
 
    GetMap();
 
    BuildMyTank( &my_tank );
 
    for(int i=0;i<12;i++)     //子弹初始化
 
    {
 
        bullet [i].exist=0;
 
        bullet [i].initial=0;
 
    }
 
    for(int i=0;i<=3;i++)         //AI坦克初始化
 
    {
 
        AI_tank [i].revive=0;
 
        AI_tank [i].alive=0;  //初始化坦克全是不存活的,BuildAITank()会建立重新建立不存活的坦克
 
        AI_tank [i].stop=0;
 
        AI_tank [i].num=i;
 
        AI_tank [i].my=0;
 
        AI_tank [i].CD=0;
 
    }
 
    GoToxy(97,2);                        //在副屏幕上关卡数
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN);
 
    printf("%d",level);
 
    GoToxy(102,5);                       //在副屏幕上打印分数
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_RED|FOREGROUND_BLUE);
 
    printf("%d   ",score);
 
    GoToxy(102,7);                       //在副屏幕打印我的剩余生命值
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN);
 
    printf("%d", MAX_LIFE-my_tank.revive);
 
    GoToxy(102,9);                       //在副屏幕上打印剩余坦克数
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED);
 
    printf("%d ",remain_enemy);
 
    GoToxy(100,13);                      //在副屏幕上打印状态
 
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_BLUE|FOREGROUND_GREEN);
 
    printf("正在游戏");
 
}

24、坦克大战(2)

#include <iostream>
#include <time.h> 
#include <windows.h>
 
 
#define W 1       //上
#define S 2         //下
#define A 3         //左
#define D 4          //右
#define L 5       // 坦克有4条命
 
void HideCursor() {  //隐藏光标            
    CONSOLE_CURSOR_INFO cursor_info = { 1,0 };
    SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info); 
}
void GoToxy(int x, int y) {  //光标移动,X、Y表示横、纵坐标
    COORD coord = { x, y };
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);  
}
 
//全局变量
int map[50][40];//地图二维数组
int B_num;      //子弹编号
int Pos;     //敌方坦克生成位置,-1为左边,0为中间,1为右边,2为我的坦克位置
int Speed = 7;  //游戏速度
int Enemy; //还未出现的敌人
const char* Tank_Model[3][4] ={
    {"◢┃ ◣", "◢╦ ◣", "◢╦◣", "◢╦◣"},
    {"╠ █╣", "╠ █╣", "━█╣", "╠█━"},
    {"◥╩ ◤", "◥┃ ◤", "◥╩◤", "◥╩◤"}
     }; 
 
//坦克
class Tank{
public:
    int x, y; //中心坐标
    int Direction; //方向
    int Model;  //模型
    int Revival; //复活次数
    int Num; //敌方坦克编号  
    bool Type;   //我方坦克此参数为1
    bool Exist;  //存活为1,不存活为0
}AI_tank[6], my_tank;
//子弹
class Bullet{      
public:
    int x, y;    //坐标
    int Direction;  //方向
    bool Exist;  //1为存在,0不存在
    bool Type;   //0为敌方子弹,1为我方子弹
}bullet[50] ;
 
//基本函数
void GoToxy(int x, int y);    //光标移动
void HideCursor();           //隐藏光标
 
void Key();  //键盘输入
void Init(); //初始化
void Pause(); //暂停
void Show(); //打印框架
void Print_Map();  //打印地图
void Cheak_Game(); //检测游戏胜负
void GameOver();  //游戏结束
 
//坦克
void Creat_AI_T(Tank* AI_tank); //建立坦克  
void Creat_My_T(Tank* my_tank);               
 
void Move_AI_T(Tank* AI_tank);//坦克移动
void Move_My_T(int turn);                     
 
void Clear_T(int x, int y);  //清除坦克
void Print_T(Tank tank);  //打印坦克
bool Cheak_T(Tank tank, int direction); //检测障碍,1阻碍
 
//子弹
void Creat_AI_B(Tank* tank);  //敌方坦克发射子弹
void Creat_My_B(Tank tank);//我方坦克发射子弹
void Move_B(Bullet bullet[50]); //子弹移动
void Break_B(Bullet* bullet); //子弹碰撞
void Print_B(int x, int y);//打印子弹
void Clear_B(int x, int y); //清除子弹
int  Cheak_B(int x, int y);  //子弹前方情况
 
void Show() {       //打印框架   
    std::cout << "  ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁";
    std::cout << "▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁\n";
    for (int i = 0; i < 48; i++) {
        std::cout << "▕                                                                             ▏\n";
    }
    std::cout << "  ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔";
    std::cout << "▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔\n";
}
void Print_Map() {     // 打印地图   
    int Map[50][40] = {
//map里的值: 0为可通过陆地,1为砖,6为墙,100~105为敌方坦克,200为我的坦克,
       { 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,6,6,6,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,6,6,6,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,4 },
       { 4,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,4 },
       { 4,6,6,6,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,6,6,6,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,9,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4 },
       { 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4 }
    };
    for (int i = 0; i < 50; i++)
        for (int j = 0; j < 40; j++)        
            map[i][j] = Map[i][j];
    for (int i = 0; i < 50; i++)
        for (int j = 0; j < 40; j++)        
            if (map[i][j] == 1) {
                GoToxy(2 * j, i);
                std::cout << "▓";
            }            
            else if (map[i][j] == 6) {
                GoToxy(2 * j, i);
                std::cout << "■";
            }             
    GoToxy(38, 46);     
    std::cout << " ◣◢";
    GoToxy(38, 47);     
    std::cout << "◣█ ◢";
    GoToxy(38, 48);     
    std::cout << "◢█ ◣"; 
}
void Cheak_Game() {
    //敌人坦克全部不存活
    if (Enemy <= 0 && !AI_tank[0].Exist && !AI_tank[1].Exist && !AI_tank[2].Exist
        && !AI_tank[3].Exist && !AI_tank[4].Exist && !AI_tank[5].Exist)
        GameOver();
    if (my_tank.Revival >= L)//我复活次数用完
        GameOver();//游戏结束
}
void GameOver() {
    bool home = 1;
    while (home) { 
        GoToxy(37, 21);
        std::cout << "游戏结束!";        
        if (GetAsyncKeyState(0xD) & 0x8000) {  //回车键
            system("cls");   //清屏
            Show();
            Init(); //初始化
            break;
        }
        else if (GetAsyncKeyState(0x1B) & 0x8000)  //Esc键退出   
                 exit(0);
    }
}
void Creat_My_T(Tank* my_tank) {//建立我的坦克
    my_tank->x = 15;
    my_tank->y = 47;
    my_tank->Direction = 1;
   // my_tank->Model = 0;
    my_tank->Exist = 1;
    my_tank->Type = 1;
    Print_T(*my_tank);   //打印我的坦克
}
void Move_My_T(int turn) {//turn为Key()函数传入的方向值
    Clear_T(my_tank.x, my_tank.y);
    my_tank.Direction = turn; 
    if (Cheak_T(my_tank, my_tank.Direction))  //我方坦克当前方向上无障碍
        switch (turn) {
        case W: my_tank.y--; break;  //上
        case S: my_tank.y++; break;  //下
        case A: my_tank.x--; break;  //左
        case D: my_tank.x++; break;  //右
        }  
    Print_T(my_tank);
}
void Print_T(Tank tank) {//打印
    for (int i = 0; i < 3; i++) {
        GoToxy((tank.x - 1) * 2, tank.y - 1 + i);//在坦克中心坐标的左边,上中下三行打印
        std::cout << Tank_Model[i][tank.Direction - 1]; //打印的是地址,地址既字符串
        for (int j = 0; j < 3; j++)
            if (tank.Type)//若为我的坦克
                map[tank.y + j - 1][tank.x + i - 1] = 200;
        //在map上敌方值为100~105,我方为200
            else
                map[tank.y + j - 1][tank.x + i - 1] = 100 +tank.Num;
        //这样可以通过map值读取坦克编号
    }
}
void Creat_AI_T(Tank* AI_tank) {
        AI_tank->x = 19 + 17 * (Pos); //pos为坦克生成位置,-1为左位置,0为中间,1为右,2为我的坦克位置
        AI_tank->y = 2;
        AI_tank->Direction = 2;  //方向朝下
        AI_tank->Revival++; //复活次数+1
        AI_tank->Exist = 1;//存在
        Pos++;
        Enemy--;
        if (Pos == 2)  //循环重置(pos只能为-1,0,1)
            Pos = -1;
        Print_T(*AI_tank);
        return;          
}
void Move_AI_T(Tank* AI_tank) { 
    if (AI_tank->Exist) {  //存在 
        Clear_T(AI_tank->x, AI_tank->y);
        if (Cheak_T(*AI_tank, AI_tank->Direction))//前方无障碍
            switch (AI_tank->Direction) {
            case W: AI_tank->y--; break;  //上
            case S: AI_tank->y++; break;  //下
            case A: AI_tank->x--; break;  //左
            case D: AI_tank->x++; break;  //右
            }
        else {//前方有障碍 
           for (int i = rand() % 4 + 1; i <= 4; i++)
                if (Cheak_T(*AI_tank, i)){  //循环判断,返1可通过
                    AI_tank->Direction = i;
                    break;
               }
        }
        Print_T(*AI_tank);     //打印敌方坦克
    }
}
bool Cheak_T(Tank tank, int direction) {  //检测坦克前方障碍,返1为可通过
    switch (direction) {                   
    case W: 
        if (map[tank.y - 2][tank.x] == 0 && map[tank.y - 2][tank.x - 1] == 0 && map[tank.y - 2][tank.x + 1] == 0)
            return 1;
        else return 0;
    case S:
        if (map[tank.y + 2][tank.x] == 0 && map[tank.y + 2][tank.x - 1] == 0 && map[tank.y + 2][tank.x + 1] == 0)
            return 1;
        else return 0;
    case A:
        if (map[tank.y][tank.x - 2] == 0 && map[tank.y - 1][tank.x - 2] == 0 && map[tank.y + 1][tank.x - 2] == 0)
            return 1;
        else return 0;
    case D:
        if (map[tank.y][tank.x + 2] == 0 && map[tank.y - 1][tank.x + 2] == 0 && map[tank.y + 1][tank.x + 2] == 0)
            return 1;
        else return 0;
    default: return 0;
    }
}
void Clear_T(int x, int y) {   //清除坦克
    for (int i = 0; i <= 2; i++)
        for (int j = 0; j <= 2; j++) {//将坦克占用的地图清零
            map[y + j - 1][x + i - 1] = 0;
            GoToxy(2 * x + 2 * j - 2, y + i - 1);
            std::cout << "  ";
        }
}
 
//键盘输入
void Key() {                 
    //上下左右键
    if (GetAsyncKeyState('W') & 0x8000)
        Move_My_T(W);
    else if (GetAsyncKeyState('S') & 0x8000)
        Move_My_T(S);
    else if (GetAsyncKeyState('A') & 0x8000)
        Move_My_T(A);
    else if (GetAsyncKeyState('D') & 0x8000)
        Move_My_T(D);
//子弹发射
    else if (GetAsyncKeyState('P') & 0x8000) {
            Creat_My_B(my_tank);
        }
    else if (GetAsyncKeyState(0x1B) & 0x8000)// Esc键退出
        exit(0); 
    else if (GetAsyncKeyState(0x20) & 0x8000)//空格暂停
        Pause();
}
void Pause() {    //暂停
    while (1) {
        if (GetAsyncKeyState(0xD) & 0x8000) {      //回车键继续  
            break;
        }
        else if (GetAsyncKeyState(0x1B) & 0x8000) //Esc键退出   
            exit(0);
    }
}
void Creat_AI_B(Tank* tank){ //敌方发射子弹
        if (!(rand() % 10)) { //在随后的每个游戏周期中有10分之一的可能发射子弹       
            Creat_My_B(*tank);
        }
}
void Creat_My_B(Tank tank) {
    switch (tank.Direction) 
    {  
    case W:
        bullet[B_num].x = tank.x;
        bullet[B_num].y = tank.y - 2;
        bullet[B_num].Direction = 1;//1表示向上
        break;
    case S:
        bullet[B_num].x = tank.x;
        bullet[B_num].y = tank.y + 2;
        bullet[B_num].Direction = 2;//2表示向下
        break;
    case A:
        bullet[B_num].x = tank.x - 2;
        bullet[B_num].y = tank.y;
        bullet[B_num].Direction = 3;//3表示向左
        break;
    case D:
        bullet[B_num].x = tank.x + 2;
        bullet[B_num].y = tank.y;
        bullet[B_num].Direction = 4;//4表示向右
        break;
    }
    bullet[B_num].Exist = 1; //子弹存在
    bullet[B_num].Type = tank.Type; //我方坦克发射的子弹bullet.Type=1
    B_num++;
    if (B_num == 50) //如果子弹编号增长到50号,那么重头开始编号
        B_num = 0;   //考虑到地图上不可能同时存在50颗子弹,所以数组元素设置50个
}
void Move_B(Bullet bullet[50]) {  //子弹移动                            
    for (int i = 0; i < 50; i++) {
        if (bullet[i].Exist) {//如果子弹存在        
           if (map[bullet[i].y][bullet[i].x] == 0) {         
                Clear_B(bullet[i].x, bullet[i].y);//子弹当前位置无障碍,抹除子弹图形
                switch (bullet[i].Direction) {//子弹变到下一个坐标
                    case W:(bullet[i].y)--; break;
                    case S:(bullet[i].y)++; break;
                    case A:(bullet[i].x)--; break;
                    case D:(bullet[i].x)++; break;
                }
           }
            //判断子弹当前位置情况
           if (map[bullet[i].y][bullet[i].x] == 0) //子弹坐标无障碍
               Print_B(bullet[i].x, bullet[i].y);//打印
           else Break_B(&bullet[i]);     //子弹碰撞       
           for (int j = 0; j < 50; j++) 
                //子弹间的碰撞判断,若是我方子弹和敌方子弹碰撞则都删除,若为两敌方子弹则无视
                if (bullet[j].Exist && j != i && (bullet[i].Type || bullet[j].Type) 
                    && bullet[i].x == bullet[j].x && bullet[i].y == bullet[j].y)
                {                              //同样的两颗我方子弹不可能产生碰撞
                    bullet[j].Exist = 0;
                    bullet[i].Exist = 0;
                    Clear_B(bullet[j].x, bullet[j].y);
  
                    break;
                }
        }
    }
}
void Break_B(Bullet* bullet) {  
    int x = bullet->x;  
    int y = bullet->y;  //子弹坐标
    int i;
    if (map[y][x] == 1) {  //子弹碰到砖块   
        if (bullet->Direction == A || bullet->Direction == D)     
            //若子弹是横向的
            for (i = -1; i <= 1; i++)
                if (map[y + i][x] == 1) {
                    map[y + i][x] = 0;
                    GoToxy(2 * x, y + i);
                    std::cout << "  ";
                }
        if (bullet->Direction == W || bullet->Direction == S)   //子弹是向上或是向下移动的
            for (i = -1; i <= 1; i++)
                if (map[y][x + i] == 1) {  //如果子弹打中砖块两旁为砖块,则删除砖,若不是则忽略    
                    map[y][x + i] = 0;    //砖块碎
                    GoToxy(2 * (x + i), y);
                    std::cout << "  ";
                }
        bullet->Exist = 0; //子弹不存在
    }
    else if (map[y][x] == 4 || map[y][x] == 6)  //子弹碰到边框或者不可摧毁方块
        bullet->Exist = 0;
    else if (bullet->Type ==1 && map[y][x] >= 100 && map[y][x] <= 105) { //我方子弹碰到了敌方坦克    
        AI_tank[(int)map[y][x] % 100].Exist = 0;
        bullet->Exist = 0; 
        Clear_T(AI_tank[(int)map[y][x] % 100].x, AI_tank[(int)map[y][x] % 100].y);  //清除坦克
        
    }
    else if (bullet->Type == 0 && map[y][x] == 200) {   //若敌方子弹击中我的坦克    
        my_tank.Exist = 0;
        bullet->Exist = 0;
        Clear_T(my_tank.x, my_tank.y);
        my_tank.Revival++; //我方坦克复活次数加1
    }
    else if (map[y][x] == 9) { //子弹碰到巢    
        bullet->Exist = 0;
        GoToxy(38, 46);      std::cout << "      "; 
        GoToxy(38, 47);      std::cout << "      ";
        GoToxy(38, 48);      std::cout << "◢◣  ";
        GameOver();
    }
}
int Cheak_B(int x, int y) {//子弹当前位置情况
    if (map[y][x] == 0)
        return 1;
    else
        return 0;
}
void Print_B(int x, int y){
    GoToxy(2 * x, y);
    std::cout << "o";
}
void Clear_B(int x, int y){
    GoToxy(2 * x, y);
    if (Cheak_B(x, y) == 1) {//子弹当前坐标在空地上 
        std::cout << "  ";
    }
}
 
void Init() {      //初始化
    Enemy = 24;
    my_tank.Revival = 0;  //我的坦克复活次数为0
    Pos = 0;
    B_num = 0;
    Print_Map();
    Creat_My_T(&my_tank);
    for (int i = 0; i < 50; i++) {//子弹
        bullet[i].Exist = 0;
    }
    for (int i = 0; i <= 5; i++) {//敌方坦克
        AI_tank[i].Revival = 0;
        AI_tank[i].Exist = 0;  //初始化坦克全是不存活的,用Creat_AI_T()建立不存活的坦克
        AI_tank[i].Num = i;
        AI_tank[i].Type = 0;
    }
}
 
int main() {                              
    int i;
    int gap[16] = { 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 };  //间隔数组,用于控制速度
    HideCursor();     //隐藏光标
    Show();      //打印框架
    Init();     //初始化
    while(1) {
        if (gap[0]++ % Speed == 0) {
            //速度调整,     
            Cheak_Game();  //游戏胜负检测
            for (i = 0; i <= 5; i++) {//敌方坦克移动循环
                if (gap[i + 7]++ % 3 == 0)
                    Move_AI_T(&AI_tank[i]);
            }
            for (i = 0; i <= 5; i++)//建立敌方坦克
                if (AI_tank[i].Exist == 0 && AI_tank[i].Revival < 4 && gap[i+1]++ % 50 == 0) {  //一个敌方坦克每局只有4条命
                                 //坦克死掉后间隔一段时间建立
                    Creat_AI_T(&AI_tank[i]);
                    break;          
                } 
            for (i = 0; i <= 5; i++)
                if (AI_tank[i].Exist)
                    Creat_AI_B(&AI_tank[i]);
            if (my_tank.Exist && gap[14]++ % 2 == 0)
                Key();
            if (my_tank.Exist == 0 && my_tank.Revival < L && gap[15]++ % 15 == 0)//我方坦克复活
                Creat_My_T(&my_tank);            
            Move_B(bullet);            
        }
        Sleep(5);
    }
    return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值