• 大小: 38.41MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-11
  • 语言: C/C++
  • 标签: win32  

资源简介

C++语言编写的基于win32的飞机大战游戏设计与实现,本资源包含所有代码,可直接运行。

资源截图

代码片段和文件信息

#include “StdAfx.h“
#include “BossBullet.h“


CBossBullet::CBossBullet(void)
{
hBullet=(HBITMAP)LoadImageA(NULL“image/bullet/bullet4.bmp“IMAGE_BITMAP3036LR_LOADFROMFILE);
}


CBossBullet::~CBossBullet(void)
{
}

void CBossBullet::GetBossPoint(POINT PlanePoint)//获取位置
{
BossPoint=PlanePoint;
}


void CBossBullet::InitBullet(void)//生成子弹
{
if (isExist==false)
{
point.x=BossPoint.x+62;
point.y=BossPoint.y+90;
isExist=true;
}
}


void CBossBullet::Display(HDC hdc)//显示子弹
{
HDC bufDC=CreateCompatibleDC(hdc);
Selectobject(bufDChBullet);
TransparentBlt(hdcpoint.xpoint.y3036bufDC003036RGB(255255255));
DeleteDC(bufDC);
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-18 15:24  飞机大战\
     目录           0  2018-07-18 15:24  飞机大战\.vs\
     目录           0  2018-07-18 15:24  飞机大战\.vs\飞机大战\
     目录           0  2018-07-24 11:44  飞机大战\.vs\飞机大战\v15\
     文件      129536  2018-07-24 11:44  飞机大战\.vs\飞机大战\v15\.suo
     文件    33185792  2018-07-24 11:44  飞机大战\.vs\飞机大战\v15\Browse.VC.db
     目录           0  2018-07-20 16:20  飞机大战\.vs\飞机大战\v15\ipch\
     文件    24182784  2018-07-24 11:38  飞机大战\.vs\飞机大战\v15\ipch\31856400cb732eb8.ipch
     目录           0  2018-07-18 16:49  飞机大战\Debug\
     文件      146432  2018-07-23 21:20  飞机大战\Debug\飞机大战.exe
     文件      537188  2018-07-23 21:20  飞机大战\Debug\飞机大战.ilk
     文件     1101824  2018-07-23 21:20  飞机大战\Debug\飞机大战.pdb
     目录           0  2018-07-18 15:01  飞机大战\ipch\
     目录           0  2018-07-18 15:01  飞机大战\ipch\飞机大战-c0f82151\
     文件    17432576  2018-07-18 06:47  飞机大战\ipch\飞机大战-c0f82151\飞机大战-9efe71c3.ipch
     目录           0  2018-07-23 21:20  飞机大战\飞机大战\
     文件    24727552  2018-07-18 14:54  飞机大战\飞机大战.sdf
     文件         903  2017-12-16 15:39  飞机大战\飞机大战.sln
     文件       54272  2018-07-18 14:54  飞机大战\飞机大战.suo
     文件         702  2017-12-23 21:21  飞机大战\飞机大战\BossBullet.cpp
     文件         312  2017-12-17 22:06  飞机大战\飞机大战\BossBullet.h
     文件        2252  2017-12-27 08:43  飞机大战\飞机大战\BossPlane.cpp
     文件         579  2017-12-23 22:48  飞机大战\飞机大战\BossPlane.h
     文件         167  2017-12-16 16:07  飞机大战\飞机大战\Bullet.cpp
     文件         216  2017-12-16 19:45  飞机大战\飞机大战\Bullet.h
     文件       22464  2018-07-23 21:20  飞机大战\飞机大战\Control.cpp
     文件        3174  2017-12-27 08:13  飞机大战\飞机大战\Control.h
     文件         533  2017-12-19 21:42  飞机大战\飞机大战\data.h
     目录           0  2018-07-23 21:20  飞机大战\飞机大战\Debug\
     文件        8098  2018-07-19 13:42  飞机大战\飞机大战\Debug\BossBullet.obj
     文件       11829  2018-07-19 13:42  飞机大战\飞机大战\Debug\BossPlane.obj
............此处省略107个文件信息

评论

共有 条评论