• 大小: 30.54MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-16
  • 语言: C/C++
  • 标签: c++  

资源简介

操作: 方向键 -- 控制移动 空 格 -- 开火 P -- 打开商店,再起按下关闭 0~9和+-键 -- 购买(需打开商店) Enter -- 开始或继续 Esc -- 暂停游戏 R -- Hero死亡后继续游戏(也可以用Enter键) 说明: Hero初始攻击力为2,怪物血量会随着时间增加,因此需要在商店升级攻击。 打Boss可以获得材料,升级武器。

资源截图

代码片段和文件信息

#include “inc.h“
#include “BackGround.h“

BackGround::BackGround(HBITMAP hbmp) :Gameobject(hbmp)
{

}


BackGround::~BackGround()
{

}

void BackGround::DrawMe( HDC hdc) //虚函数,渲染物体
{
if (this->GetVisible())
{
HDC hdcsrc = CreateCompatibleDC(hdc);
Selectobject(hdcsrc GetHBitMap());
BitBlt(hdc GetX() GetY() - 600 GetWidth() GetHeight() hdcsrc 0 0 SRCCOPY);
BitBlt(hdc GetX() GetY() GetWidth() GetHeight() hdcsrc 0 0 SRCCOPY);

DeleteDC(hdcsrc);
}
}

void BackGround::BackGroundRun()
{
static int i = 0;
this->SetY(++i % 600);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      46072  2014-07-24 22:19  Raiden\Debug\audio\dang.au

     文件      92176  2014-07-24 22:19  Raiden\Debug\audio\dang.wav

     文件     122904  2014-07-25 00:18  Raiden\Debug\audio\explode.au

     文件     245840  2014-07-25 00:18  Raiden\Debug\audio\explode.wav

     文件      57368  2014-07-25 00:18  Raiden\Debug\audio\fire.au

     文件     114768  2014-07-25 00:18  Raiden\Debug\audio\fire.wav

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\addhealth.bmp

     文件       1554  2014-07-23 22:32  Raiden\Debug\images\addhealth.png

     文件     162056  2015-06-26 20:22  Raiden\Debug\images\boss.bmp

     文件      63053  2014-07-23 22:11  Raiden\Debug\images\boss.png

     文件        536  2015-06-26 20:22  Raiden\Debug\images\bullet.bmp

     文件       3217  2014-07-23 02:01  Raiden\Debug\images\bullet.png

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\changefire1.bmp

     文件       4034  2014-07-24 21:27  Raiden\Debug\images\changefire1.png

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\changefire2.bmp

     文件       1407  2014-07-24 21:27  Raiden\Debug\images\changefire2.png

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\changefire3.bmp

     文件       3915  2014-07-24 21:27  Raiden\Debug\images\changefire3.png

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\changefire4.bmp

     文件       3867  2014-07-24 21:27  Raiden\Debug\images\changefire4.png

     文件       3032  2015-06-26 20:22  Raiden\Debug\images\changefire5.bmp

     文件       1613  2014-07-25 00:44  Raiden\Debug\images\changefire5.png

     文件     102728  2015-06-29 13:35  Raiden\Debug\images\continue.bmp

     文件      24472  2014-07-24 01:41  Raiden\Debug\images\continue.png

     文件        376  2015-06-26 20:22  Raiden\Debug\images\enemybullet.bmp

     文件       3037  2014-07-24 00:36  Raiden\Debug\images\enemybullet.png

     文件     121640  2015-06-26 20:22  Raiden\Debug\images\enter.bmp

     文件      69069  2014-07-24 03:03  Raiden\Debug\images\enter.png

     文件       7504  2015-06-26 20:22  Raiden\Debug\images\explode (1).bmp

     文件       1197  2014-07-24 19:29  Raiden\Debug\images\explode (1).png

............此处省略378个文件信息

评论

共有 条评论