#include
#include
#include
#include // gotoxy 和HideCursor的头文件
using namespace std;
int sizex=50;//空间的宽
int sizey=40;//空间的高度;
int plane_x=sizex/2;//飞机的位置x,y;
int plane_y=sizey/2;
int gunx=0,guny=0;
int speed=0;
int score=0;
int dp_x=rand()%sizex,dp_y=0; //敌机位置
char ss;//输入按键;
void notin();
void in();
void gotoxy(int x,int y) //清屏,屏幕不抖动
{
HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
COORD pos;
pos.X=x;
pos.Y =y;
SetConsoleCursorPosition(handle,pos);
}
void HideCursor() //隐藏光标;
{
CONSOLE_CURSOR_INFO cursor_info={1,0};//第二个值为0 表示隐藏光标
SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE),&cursor_info);
}
void show()//初始化显示
{
gotoxy(0,0) ;
HideCursor() ;
for(int y=1;y<=sizey;++y)
{ for(int x=1;x<=sizex;++x)
{
if(x==plane_x&&y==plane_y)
{
cout<<"*" ;
}
else if(x==gunx&&y==guny)
{
cout<<"|";
}
else if(x==dp_x&&y==dp_y)
{
cout<<"&" ;
}
else
{
cout<<" ";
}
}
cout<
2021-06-04 13:04:54
1.79MB
c++
1