【c语言】飞机大战终

简介: 【c语言】飞机大战终

效果展示

效果演示

源码展示

#include<stdio.h>
#include <graphics.h>
#include <assert.h>
#include <stdlib.h>
#include<conio.h>//_getch();
#include <time.h>
#include <math.h>
#include<mmsystem.h>//包含多媒体设备接口头文件
#pragma comment(lib,"winmm.lib")//加载静态库
#define PI 3.1415926
#define HEIGHT  503
#define WIDTH 700
int score = 0;
static int enemy = 0;
static int mode = 0;
IMAGE img_bk, img_plane, img_a, img_b, img_c, img_abullet, img_bbullet, img_cbullet, img_planebullet, img_tmp, img_start, img_sta, img_fail, img_history,img_hp,img_nam,img_score,img_select;
typedef struct bullet
{
  float x, y;
  float vx, vy;
  int  isexist;
  struct bullet* next;
}list;
list* planebullet = NULL;
list* abullet = NULL;
list* bbullet = NULL;
void pushback2(list** pphead, float vx, float vy);
void pushback3(list** pphead, float vx, float vy);
void pushback1(list** pphead, list* newnode);//尾插;
struct aircraft
{
  int x, y;
  int width;
  int height;
  int speed;
  int bornflag;
  int hp;
};
aircraft plane, a, b, c;
static int dir1 = 1;
bool Timer(int ms, int id)
{
  static DWORD t[10];
  if (clock() - t[id] > ms)
  {
    t[id] = clock();
    return true;
  }
  return false;
}
void bgm()
{    //打开音乐
  mciSendString("open ./bgm.MP3", 0, 0, 0);//后面参数不用管
  //播放音乐
  mciSendString("play ./bgm.MP3", 0, 0, 0);//后面参数不用管
}
void bgm1()
{
  mciSendString("close ./shoot.MP3", 0, 0, 0);//后面参数不用管
  //打开音乐
  mciSendString("open ./shoot.MP3", 0, 0, 0);//后面参数不用管
  //播放音乐
  mciSendString("play ./shoot.MP3", 0, 0, 0);//后面参数不用管
}
void bgm2()
{    //打开音乐
  mciSendString("open ./boom.MP3", 0, 0, 0);//后面参数不用管
  //播放音乐
  mciSendString("play ./boom.MP3", 0, 0, 0);//后面参数不用管
}
void bgm3()
{
  mciSendString("close ./change.MP3", 0, 0, 0);//后面参数不用管
  //打开音乐
  mciSendString("open ./change.MP3", 0, 0, 0);//后面参数不用管
  //播放音乐
  mciSendString("play ./change.MP3", 0, 0, 0);//后面参数不用管
}
void bgm4()
{
  
  mciSendString("open ./win.MP3", 0, 0, 0);//后面参数不用管
  //播放音乐
  mciSendString("play ./win.MP3", 0, 0, 0);//后面参数不用管
}
void datainit()
{
  plane.x = 150;
  plane.y = 150;
  //a = { 0,0 };
  /*b = { 300,0 };*/
  /*c = { 450,0 };*/
  a.speed = 1;
  a.bornflag = 1;
  b.bornflag = 1;
  c.bornflag = 1;
  a.width = 100;
  a.height = 100;
  b.speed = 1;
  b.width = 80;
  b.height = 100;
  c.height = 70;
  c.width = 70;
  c.speed = 3;
  plane.hp = 500;
  a.hp = 500;
  b.hp = 500;
  c.hp = 500;
}
list* BuyabulletNode(float vx, float vy)
{
  list* newnode = (list*)malloc(sizeof(list));//空间申请
  assert(newnode);//断言,新结点是否申请到了
  newnode->vx = vx;//数据赋值
  newnode->vy = vy;//数据赋值
  newnode->x = a.x + a.width / 2-10;
  newnode->y = a.y+80;
  newnode->isexist = 1;
  newnode->next = NULL;//指向的地址赋值
  return newnode;//将申请好的空间首地址返回回去
}
list* BuybbulletNode(float vx, float vy)
{
  list* newnode = (list*)malloc(sizeof(list));//空间申请
  assert(newnode);//断言,新结点是否申请到了
  newnode->vx = vx;//数据赋值
  newnode->vy = vy;//数据赋值
  newnode->x = b.x + b.width / 2 - 10;
  newnode->y = b.y + 80;
  newnode->isexist = 1;
  newnode->next = NULL;//指向的地址赋值
  return newnode;//将申请好的空间首地址返回回去
}
list* BuyplanebulletNode(float vx, float vy)
{
  list* newnode = (list*)malloc(sizeof(list));//空间申请
  assert(newnode);//断言,新结点是否申请到了
  newnode->vx = vx;//数据赋值
  newnode->vy = vy;//数据赋值
  newnode->x = plane.x + plane.width / 2+17;
  newnode->y = plane.y;
  newnode->isexist = 1;
  newnode->next = NULL;//指向的地址赋值
  return newnode;//将申请好的空间首地址返回回去
}
void drawAlpha(IMAGE* picture, int  picture_x, int picture_y) //x为载入图片的X坐标,y为Y坐标
{
  // 变量初始化
  DWORD* dst = GetImageBuffer();    // GetImageBuffer()函数,用于获取绘图设备的显存指针,EASYX自带
  DWORD* draw = GetImageBuffer();
  DWORD* src = GetImageBuffer(picture); //获取picture的显存指针
  int picture_width = picture->getwidth(); //获取picture的宽度,EASYX自带
  int picture_height = picture->getheight(); //获取picture的高度,EASYX自带
  int graphWidth = getwidth();       //获取绘图区的宽度,EASYX自带
  int graphHeight = getheight();     //获取绘图区的高度,EASYX自带
  int dstX = 0;    //在显存里像素的角标
  // 实现透明贴图 公式: Cp=αp*FP+(1-αp)*BP , 贝叶斯定理来进行点颜色的概率计算
  for (int iy = 0; iy < picture_height; iy++)
  {
    for (int ix = 0; ix < picture_width; ix++)
    {
      int srcX = ix + iy * picture_width; //在显存里像素的角标
      int sa = ((src[srcX] & 0xff000000) >> 24); //0xAArrggbb;AA是透明度
      int sr = ((src[srcX] & 0xff0000) >> 16); //获取RGB里的R
      int sg = ((src[srcX] & 0xff00) >> 8);   //G
      int sb = src[srcX] & 0xff;              //B
      if (ix >= 0 && ix <= graphWidth && iy >= 0 && iy <= graphHeight && dstX <= graphWidth * graphHeight)
      {
        if ((ix + picture_x) >= 0 && (ix + picture_x) <= graphWidth)  //防止出边界后循环显示
        {
          dstX = (ix + picture_x) + (iy + picture_y) * graphWidth; //在显存里像素的角标
          int dr = ((dst[dstX] & 0xff0000) >> 16);
          int dg = ((dst[dstX] & 0xff00) >> 8);
          int db = dst[dstX] & 0xff;
          draw[dstX] = ((sr * sa / 255 + dr * (255 - sa) / 255) << 16)  //公式: Cp=αp*FP+(1-αp)*BP  ; αp=sa/255 , FP=sr , BP=dr
            | ((sg * sa / 255 + dg * (255 - sa) / 255) << 8)         //αp=sa/255 , FP=sg , BP=dg
            | (sb * sa / 255 + db * (255 - sa) / 255);              //αp=sa/255 , FP=sb , BP=db
        }
      }
    }
  }
}
void selectplane()
{
  while (1)
  {
    BeginBatchDraw();
    loadimage(&img_select, "./22.png");
    drawAlpha(&img_select, 0, 0);
    loadimage(&img_select, "./23.png");
    drawAlpha(&img_select, 0, 0);
    loadimage(&img_select, "./24.png");
    drawAlpha(&img_select, 0, 400);
    if (mode == 0)
    {
      
      loadimage(&img_plane, "./1.png");
      drawAlpha(&img_plane, 300, 200);
    }
    
    if (mode == 1)
    {
      loadimage(&img_plane, "./10.png");
      drawAlpha(&img_plane, 300, 200);
    }
    else if (mode == 2)
    {
      loadimage(&img_plane, "./11.png");
      drawAlpha(&img_plane, 300, 200);
    }
    else if (mode == 3)
    {
      loadimage(&img_plane, "./12.png");
      drawAlpha(&img_plane, 300, 200);
    }
    else if (mode == 4)
    {
      loadimage(&img_plane, "./13.png");
      drawAlpha(&img_plane, 300, 200);
    }
    else if (mode == 5)
    {
      loadimage(&img_plane, "./25.png");
      drawAlpha(&img_plane, 300, 200);
    }
    
  
    
    if (GetAsyncKeyState(VK_LEFT) || GetAsyncKeyState('A') && Timer(300, 1))
    {
      bgm3();
      if (mode == 0)
      {
        mode = 0;
      }
      else
      {
        mode--;
      }
    }
    
    if (GetAsyncKeyState(VK_RIGHT) || GetAsyncKeyState('D') && Timer(300, 1))
    {
      bgm3();
      if (mode == 5)
      {
        mode = 5;
      }
      else
      {
        mode++;
      }
    }
    if ((GetAsyncKeyState(VK_SPACE)) && Timer(300, 1))
    {
      break;
    }
    EndBatchDraw();
  }
}
void load()
{
  loadimage(&img_bk, "./back.png");
  if (mode == 0)
  {
    loadimage(&img_plane, "./1.png");
  }
  loadimage(&img_a, "./2.png");
  loadimage(&img_b, "./3.png");
  loadimage(&img_c, "./4.png");
  loadimage(&img_abullet, "./5.png");
  loadimage(&img_bbullet, "./6.png");
  loadimage(&img_cbullet, "./7.png");
  if (mode == 0)
  {
    loadimage(&img_planebullet, "./8.png");
  }
  if (mode == 1)
  {
    loadimage(&img_planebullet, "./8.png");
  }
  if (mode == 2)
  {
    loadimage(&img_planebullet, "./5.png");
  }
  if (mode == 3)
  {
    loadimage(&img_planebullet, "./16.png");
  }
  if (mode == 4)
  {
    loadimage(&img_planebullet, "./7.png");
  }
  if (mode == 5)
  {
    loadimage(&img_planebullet, "./19.png");
  }
}
void draw()
{
  putimage(0, 0,&img_bk);
  loadimage(&img_nam, "./20.png");
  drawAlpha(&img_nam, 500, 0);
  
  if (plane.hp == 500)
  {
    //img_hp
    loadimage(&img_hp, "./19.png");
    drawAlpha(&img_hp, 628, 0);
  }
  if (plane.hp == 1000)
  {
    //img_hp
    loadimage(&img_hp, "./19.png");
    loadimage(&img_hp, "./19.png");
    drawAlpha(&img_hp, 628, 0);
    drawAlpha(&img_hp, 652, 0);
  }
  if (plane.hp == 1500)
  {
    //img_hp
    loadimage(&img_hp, "./19.png");
    loadimage(&img_hp, "./19.png");
    loadimage(&img_hp, "./19.png");
    drawAlpha(&img_hp, 628, 0);
    drawAlpha(&img_hp, 652, 0);
    drawAlpha(&img_hp, 676, 0);
  }
  if (plane.x > -1 && plane.x < WIDTH && plane.y>-1 && plane.y + 48< HEIGHT)
  {
    drawAlpha(&img_plane, plane.x, plane.y);
  }
  else
  {
    putimage(plane.x, plane.y, &img_plane);
  }
  if (a.x > -1 && a.x < WIDTH && a.y>0&& a.y + 98 < HEIGHT)
  {
    drawAlpha(&img_a, a.x, a.y);
  }
  else
  {
    putimage(a.x, a.y, &img_a);
  }
  if (b.x > -1 && b.x < WIDTH && b.y>-1 && b.y +120 < HEIGHT)
  {
    drawAlpha(&img_b, b.x, b.y);
  }
  else
  {
    putimage(b.x, b.y, &img_b);
  }
  if (c.x > -1 && c.x < WIDTH && c.y>-1 && c.y + 120 < HEIGHT)
  {
    drawAlpha(&img_c, c.x, c.y);
  }
  else
  {
    putimage(c.x, c.y, &img_c);
  }
  
  
  
    
}
void ufoamove()
{
  
  static int cnt = 0;
  if (a.bornflag == 1)
  {
    a.bornflag = 0;
    a.x = rand() % (WIDTH - a.width);
    a.y = -50;
  }
  if (a.y > 200)
  {
    dir1 = 0;
  }
  else if (a.y < -150)
  {
    dir1 = 1;
    a.bornflag = 1;
  }
  if (1 == dir1)
  {
    a.y += a.speed;
  }
  else
  {
    a.y -= a.speed;
  }
  if (++cnt % 50 == 0)
  {
    pushback2(&abullet, 0, 10);
  
  }
  if (cnt > 99999)
  {
    cnt = 0;
  }
}
void ufobmove()
{
  static int num = 0;
  static int step = b.speed;
  if (b.bornflag == 1)
  {
    b.bornflag = 0;
    b.x = rand() % (WIDTH - b.width);
    b.y = -b.height;
  }
  if (b.x <= 0 || b.x + b.width >= WIDTH)
  {
    step = -step;
  }
  b.x += step;
  b.y++;
  if (b.y >= HEIGHT)
  {
    b.bornflag = 1;
  }
  if (++num % 100 == 0)
  {
    pushback3(&bbullet, 0, 10);
    /*for (int i = 0; i < 10; i++)
    {
      float angle = i * 2 * PI / 10;
      float vx = 1* sin(angle);
      float vy = 1 * cos(angle);
      pushback3(&bbullet, vx, vy);
    }*/
  }
  if (num > 99999)
  {
    num = 0;
  }
}
void pushback1(list** pphead,float vx,float vy)//尾插
{
  
  
  list* newnode = BuyplanebulletNode(vx, vy);
  
  if (*pphead == NULL)//链表无结点
  {
    *pphead = newnode;// 将创建好的头节点的地址给给*pphead,作为新头节点的地址
    
  }
  else
  {
    
    list* tail = *pphead;//定义一个指针,先指向头结点的地址
    while (tail->next != NULL)//循环遍历找尾结点
    {
      tail = tail->next;//指针指向下一个结点
    }
    tail->next = newnode;//找到尾结点,将尾结点的next存放新接结点的地址
  }
}
void pushback2(list** pphead, float vx, float vy)//尾插
{
  
  list* newnode = BuyabulletNode(vx, vy);
  if (*pphead == NULL)//链表无结点
  {
    *pphead = newnode;// 将创建好的头节点的地址给给*pphead,作为新头节点的地址
  }
  else
  {
    
    list* tail = *pphead;//定义一个指针,先指向头结点的地址
    while (tail->next != NULL)//循环遍历找尾结点
    {
      tail = tail->next;//指针指向下一个结点
    }
    tail->next = newnode;//找到尾结点,将尾结点的next存放新接结点的地址
  }
}
void pushback3(list** pphead, float vx, float vy)//尾插
{
  
  list* newnode = BuybbulletNode(vx, vy);
  if (*pphead == NULL)//链表无结点
  {
    *pphead = newnode;// 将创建好的头节点的地址给给*pphead,作为新头节点的地址
  }
  else
  {
    
    list* tail = *pphead;//定义一个指针,先指向头结点的地址
    while (tail->next != NULL)//循环遍历找尾结点
    {
      tail = tail->next;//指针指向下一个结点
    }
    tail->next = newnode;//找到尾结点,将尾结点的next存放新接结点的地址
  }
}
void removebullet(list** pplist)
{
  if (*pplist == NULL)
    return;
  list* cur = *pplist;
  list* prev = NULL;
  while (cur != NULL)
  {
    if (cur->isexist == 0)
    {
      if (*pplist == cur)
      {
        *pplist = cur->next;
        free(cur);
        cur = *pplist;
      }
      else
      {
        prev->next = cur->next;
        free(cur);
        cur = prev;
      }
    }
    else
    {
      prev = cur;
      cur = cur->next;
    }
  }
}
void listchangexy(list** pplist)
{
  if (*pplist == NULL)
    return;
  list* cur = *pplist;
  while (cur != NULL)
  {
    cur->x += cur->vx;
    cur->y += cur->vy;
    
    if ((cur->y<0 )|| (cur->y>HEIGHT) || (cur->x >0) || (cur->x <WIDTH))
      cur->isexist = 0;
    cur = cur->next;
  }
}
void showbullet()
{
  static int count1 = 0;
  
  
  listchangexy(&planebullet);
  if (++count1 == 20)
  {
    removebullet(&planebullet);
    removebullet(&abullet);
    removebullet(&bbullet);
  }
  
  ///}
  if (count1 > 99999)
  {
    count1 = 0;
  }
  for (list* cur = planebullet; cur!= NULL; cur = cur ->next)
  {
    if (mode == 0)
    {
      if (cur->x > 5 && cur->x + 15 < WIDTH && cur->y > 5 && cur->y + 15 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
    }
  if (mode == 1)
    {
      if (cur->x > 5 && cur->x + 15 < WIDTH && cur->y > 5 && cur->y + 15 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
    }
    if (mode == 2)
    {
      if (cur->x > 5 && cur->x + 25 < WIDTH && cur->y > 5 && cur->y + 35 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
    }
    if (mode == 3)
    {
      if (cur->x > 5 && cur->x + 15 < WIDTH && cur->y > 5 && cur->y + 40 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
    }
    if (mode == 4)
    {
      if (cur->x > 5 && cur->x + 25< WIDTH && cur->y > 5 && cur->y + 43 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
    }
      if (mode == 5)
    {
      if (cur->x > 5 && cur->x + 25< WIDTH && cur->y > 5 && cur->y + 43 < HEIGHT)
      {
        drawAlpha(&img_planebullet, cur->x, cur->y);
      }
      else
      {
        putimage(cur->x, cur->y, &img_planebullet);
      }
     }
    
    
    
    
    
    
    
    
    
    
    
    if (cur->x + 10 < a.x || cur->x > a.x + a.width || cur->y + 10 > a.y || cur->y > a.y + a.height)
    {
    }
    else
    {
      cur->isexist = 0;
      score += 600;
      a.hp -= 500;
    }
    if (cur->x + 10 < b.x || cur->x > b.x + b.width || cur->y + 10 > b.y || cur->y > b.y + b.height)
    {
    }
    else
    {
      cur->isexist = 0;
      score += 400;
      b.hp -= 500;
    }
    if (cur->x + 10 < c.x || cur->x > c.x + c.width || cur->y + 10 > c.y || cur->y > c.y + c.height)
    {
    }
    else
    {
      cur->isexist = 0;
      score += 200;
      c.hp -= 500;
    }
  }
  
  listchangexy(&abullet);
  
  
  
  for (list* cur = abullet; cur != NULL; cur = cur->next)
  {
    if (cur->x > 5 && cur->x + 25 < WIDTH && cur->y > 5 && cur->y + 30 < HEIGHT)
    {
      drawAlpha(&img_abullet, cur->x, cur->y);
      
    }
    else
    {
      putimage(cur->x, cur->y, &img_abullet);
    }
    
    
      if (cur->x + 20 < plane.x || cur->x > plane.x + plane.width || cur->y + 30 > plane.y || cur->y > plane.y + plane.height)
      {
        
      }
      else
      {
        cur->isexist = 0;
      
        plane.hp -= 1000;
      }
    
    
    
  
  }
  listchangexy(&bbullet);
  for (list* cur = bbullet; cur != NULL; cur = cur->next)
  {
    if (cur->x > 5 && cur->x + 15 < WIDTH && cur->y > 5 && cur->y + 20 < HEIGHT)
    {
      drawAlpha(&img_bbullet, cur->x, cur->y);
    }
    else
    {
      putimage(cur->x, cur->y, &img_bbullet);
    }
    
  
    if (cur->x + 10< plane.x || cur->x > plane.x + plane.width || cur->y + 15 > plane.y || cur->y > plane.y + plane.height)
    {
    }
    else
    {
      cur->isexist = 0;
      plane.hp -= 1000;
    }
  
  }
}
void ufocmove()
{
  static float disx = 0, disy = 0;
  static float tmpx = 0, tmpy = 0;
  static float vx = 0, vy = 0;
  
  float step = 1000 / c.speed;
  if (1 == c.bornflag)
  {
    c.bornflag = 0;
    tmpx = rand() % (WIDTH - c.width);
    tmpy = -c.height;
    disx = plane.x - tmpx;
    disy = plane.y - tmpy;
    vx = disx / step;
    vy = disy / step;
  }
  tmpx += vx;
  tmpy += vy;
  c.x = (int)(tmpx + 0.5);
  c.y = (int)(tmpy + 0.5);
  if (c.x < -c.width)
  {
    c.bornflag = 1;
  }
  if (c.x > WIDTH)
  {
    c.bornflag = 1;
  }
  if (c.y > HEIGHT)
  {
    c.bornflag = 1;
  }
  if (c.hp <= 0)
  {
    c.bornflag = 1;
    c.hp = 500;
  }
}
void player_move(int speed) //处理飞机移动
{
  int reload_time = 100;
  static int fire_start = 0;
  int tmp = clock();
  if (GetAsyncKeyState(VK_UP) || GetAsyncKeyState('W'))
  {
    if (plane.y > 0)
      plane.y -= speed;
  }
  if (GetAsyncKeyState(VK_DOWN) || GetAsyncKeyState('S'))
  {
    if (plane.y + 51 < HEIGHT)
      plane.y += speed;
  }
  if (GetAsyncKeyState(VK_LEFT) || GetAsyncKeyState('A'))
  {
    if (plane.x > 0)
      plane.x -= speed;
  }
  if (GetAsyncKeyState(VK_RIGHT) || GetAsyncKeyState('D'))
  {
    if (plane.x + 51 < WIDTH)
      plane.x += speed;
  }
  if ((GetAsyncKeyState(VK_SPACE))&& Timer(300, 1))
  {
    
    
    if (mode == 0)
    {
      //bgm1();
      pushback1(&planebullet, 0, -20);
      
    }
    if (mode == 1)
    {
      //bgm1();
      pushback1(&planebullet, 0, -20);
    }
    if (mode == 2)
    {
      //bgm1();
      pushback1(&planebullet, 0, -10);
      
    }
    if (mode == 3)
    {
      //bgm1();
      pushback1(&planebullet, 0, -10);
      }
      
    if (mode == 4)
    {
      //bgm1();
      pushback1(&planebullet, 0, -10);
    }
    if (mode == 5)
    {
      
      
      pushback1(&planebullet, 0, -10);
      
    }
    
    
    
  }
  if (GetAsyncKeyState(VK_SPACE))
  {
    bgm1();
  }
}
void begin()
{
  
  char beginstring[] = "开始游戏";
  char closestring[] = "退出游戏";
  char tipstring[] = "游戏说明: 空格:发射子弹";
  setfillcolor(LIGHTBLUE);
  solidrectangle(240, 300, 380, 350);//画矩形
  solidrectangle(240, 360, 380,410);//左上坐标,右下坐标
  loadimage(&img_start,"./start.jpg");
  loadimage(&img_sta, "./sta.png");
  
  
  
  //putimage(0, 0, &img_start);
  drawAlpha(&img_start,0,0);
  drawAlpha(&img_sta, 0, 0);
    
  settextcolor(RED);
  setbkmode(TRANSPARENT);
  settextstyle(30, 0, "楷体");
  outtextxy(240 + 10, 300 + 10, beginstring);
  outtextxy(240 + 10, 360 + 10, closestring);
  outtextxy(130, 250, tipstring);
  while (1)
  {
    MOUSEMSG m = GetMouseMsg();//鼠标在矩形显示外框
    if (m.x >= 240 && m.x <= 380 && m.y >= 300 && m.y <= 350)
    {
      setlinecolor(RED);
      rectangle(240 - 5, 300 - 5, 380 + 5, 350 + 5);
      if (m.uMsg == WM_LBUTTONDOWN)
      {
        break;
      }
    }
    else if (m.x >= 240 && m.x <= 380 && m.y >= 360 && m.y <= 410)
    {
      setlinecolor(RED);
      rectangle(240 - 5, 360 - 5, 380 + 5, 410 + 5);
      //退出游戏
      if (m.uMsg == WM_LBUTTONDOWN)
      {
        exit(0);
      }
    }
    else//没在擦除
    {
      setlinecolor(WHITE);
      rectangle(240 - 5, 300 - 5, 380 + 5, 350 + 5);
      rectangle(240 - 5, 360 - 5, 380 + 5, 410 + 5);
    }
  }
}
void crash2()
{
  if (b.x + b.width<plane.x || b.x>plane.x + plane.width || b.y + b.height<plane.y || b.y>plane.y + plane.height)
  {
  }
  else
  {
    plane.hp=0;
    bgm2();
    Timer(4000, 1);
    if (plane.hp == 0)
    {
      loadimage(&img_fail, "./18.png");
      drawAlpha(&img_fail, 120, 0);
      loadimage(&img_plane, "./boom5.png");
      drawAlpha(&img_plane, plane.x, plane.y);
      
      if (Timer(3000, 1))
        exit(0);
    }
  }
}
void crash1()
{
  if (a.x + a.width<plane.x || a.x>plane.x + plane.width || a.y + a.height<plane.y || a.y>plane.y + plane.height)
  {
  }
  else
  {
    plane.hp -= 500;
    bgm2();
    Timer(4000, 1);
    if (plane.hp == 0)
    {
      loadimage(&img_fail, "./18.png");
      drawAlpha(&img_fail, 120, 0);
      loadimage(&img_plane, "./boom5.png");
      drawAlpha(&img_plane, plane.x, plane.y);
      
      if (Timer(3000, 1))
        exit(0);
    }
  
    
  }
  
}
void crash3()
{
  if (c.x + c.width<plane.x || c.x>plane.x + plane.width || c.y + c.height<plane.y || c.y>plane.y + plane.height)
  {
  }
  else
  {
    plane.hp = 0;
    bgm2();
    Timer(4000, 1);
    if (plane.hp == 0)
    {
      loadimage(&img_fail, "./18.png");
      drawAlpha(&img_fail, 120, 0);
      loadimage(&img_plane, "./boom5.png");
      drawAlpha(&img_plane, plane.x, plane.y);
      
      if (Timer(4000, 1))
        exit(0);
    }
  }
}
void showScore(int x, int y, int score)
{
  TCHAR time_text[50];
  _stprintf_s(time_text, _T("Score:%d"), score);
  outtextxy(x, y, time_text);
}
int main()
 {
  initgraph(WIDTH, HEIGHT,CONSOLE_FULLSCREEN);
  
  datainit();
  begin();
  selectplane();
  BeginBatchDraw();
  bgm();
  
  while (1)
  {
    
    
  
    
  
    
    load();
    draw();
    ufoamove();
    ufobmove();
    ufocmove();
    player_move(5);
    crash1();
    crash2();
    crash3();
    showScore(520, 50, score);
    printf("hp:%d\n", c.hp);
    if (plane.hp<=0)
    {
      loadimage(&img_fail, "./18.png");
      drawAlpha(&img_fail, 120, 0);
      loadimage(&img_plane, "./boom5.png");
      drawAlpha(&img_plane, plane.x, plane.y);
      
      if (Timer(3000, 1))
        exit(0);
    }
    if (a.hp <= 0)
    {
      
      a.bornflag = 1;
      a.hp = 500;
    }
    if (b.hp <= 0)
    {
      
      b.bornflag =1;
      b.hp = 500;
    }
    if (score > 10000)
    {
      bgm4();
      loadimage(&img_fail, "./26.png");
      drawAlpha(&img_fail, 100, 0);
    
      if (Timer(2000, 1))
      exit(0);
    }
    
  
  
    showbullet();
  FlushBatchDraw();
  }
  EndBatchDraw();
  getchar();
}

还有一些bug,等我考完试了在改改

目录
相关文章
|
7月前
|
算法 C语言 C++
【c语言】飞机大战(1)
【c语言】飞机大战(1)
61 1
|
C语言
c语言小游戏-飞机大战
c语言小游戏-飞机大战
123 0
|
存储 C语言
【C语言】飞机大战游戏还原,源码在文末,应用“循环”与“数组”实现游戏开发,一起玩一下经典小游戏吧
众所周知昂,飞机大战,重在大战嘛,你这一颗子弹一架敌机,打的那是一点儿激情也没有。所以我们这章内容,就来对前文做修改,运用上数组手法,给它盘圆咯 在二维数组中存储游戏画面数据,元素为0时输出“ (空格)”,元素为1时输出大灰机“ * ”,元素为2输出子弹“¥”元素为3时输出敌机“@”定义二维数组存储游戏画面中元素的数组暂且定为4.基础功能的实现在飞机大战中,用人类语言来描述相关内容,则有以下这些,积分计算(包括击毁敌机,未击毁,飞机升级子弹,多架敌机产生……)这些我们都要一一实现 多架敌机产生这块儿,
【C语言】飞机大战游戏还原,源码在文末,应用“循环”与“数组”实现游戏开发,一起玩一下经典小游戏吧
|
10天前
|
存储 C语言 开发者
【C语言】字符串操作函数详解
这些字符串操作函数在C语言中提供了强大的功能,帮助开发者有效地处理字符串数据。通过对每个函数的详细讲解、示例代码和表格说明,可以更好地理解如何使用这些函数进行各种字符串操作。如果在实际编程中遇到特定的字符串处理需求,可以参考这些函数和示例,灵活运用。
29 10
|
10天前
|
存储 程序员 C语言
【C语言】文件操作函数详解
C语言提供了一组标准库函数来处理文件操作,这些函数定义在 `<stdio.h>` 头文件中。文件操作包括文件的打开、读写、关闭以及文件属性的查询等。以下是常用文件操作函数的详细讲解,包括函数原型、参数说明、返回值说明、示例代码和表格汇总。
28 9
|
10天前
|
存储 Unix Serverless
【C语言】常用函数汇总表
本文总结了C语言中常用的函数,涵盖输入/输出、字符串操作、内存管理、数学运算、时间处理、文件操作及布尔类型等多个方面。每类函数均以表格形式列出其功能和使用示例,便于快速查阅和学习。通过综合示例代码,展示了这些函数的实际应用,帮助读者更好地理解和掌握C语言的基本功能和标准库函数的使用方法。感谢阅读,希望对你有所帮助!
28 8
|
10天前
|
C语言 开发者
【C语言】数学函数详解
在C语言中,数学函数是由标准库 `math.h` 提供的。使用这些函数时,需要包含 `#include <math.h>` 头文件。以下是一些常用的数学函数的详细讲解,包括函数原型、参数说明、返回值说明以及示例代码和表格汇总。
28 6
|
10天前
|
存储 C语言
【C语言】输入/输出函数详解
在C语言中,输入/输出操作是通过标准库函数来实现的。这些函数分为两类:标准输入输出函数和文件输入输出函数。
61 6
|
10天前
|
存储 缓存 算法
【C语言】内存管理函数详细讲解
在C语言编程中,内存管理是至关重要的。动态内存分配函数允许程序在运行时请求和释放内存,这对于处理不确定大小的数据结构至关重要。以下是C语言内存管理函数的详细讲解,包括每个函数的功能、标准格式、示例代码、代码解释及其输出。
36 6
|
10天前
|
C语言 开发者
【C语言】断言函数 -《深入解析C语言调试利器 !》
断言(assert)是一种调试工具,用于在程序运行时检查某些条件是否成立。如果条件不成立,断言会触发错误,并通常会终止程序的执行。断言有助于在开发和测试阶段捕捉逻辑错误。
19 5