资源简介
操作:
方向键 -- 控制移动
空 格 -- 开火
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个文件信息
- 上一篇:Accelerated C++中英文版
- 下一篇:Proessentials v7
相关资源
- Accelerated C++中英文版
- C/C++软件工程师就业求职手册.胡凌云
- Dev C++ 5.6.3
- 《Visual C++开发实战1200例第2卷》+源代
- C++多线程编程实战(完整版).pdf
- C++ 16进制和字符串批量转换
- 串口调试助手c++源码
- C++必知必会高清版
- c++写的魂斗罗.rar(源代码+编译好的程
- 算法V(C++实现)-图算法(第三版)
- MFCquxian.rar
- 数据结构与算法分析C++版(中文版)
- 基于百度sdk的语音识别 C++版本demo V
- Visual C++实践与提高-COM和COM+篇高清p
- C++的USB上位机程序.zip
- 医院管理系统_VC++源码
- Accelerated C++中文版(扫描版)
- 基于winPcap开发嗅探器c++,带界面
- C++ primer第五版英文版pdf+全书源代码
- Visual C++2010 CLR开发电子书+源程序
- C++ primer第五版(高清版)pdf+全书源代
- 轻松搞定C++语言pdf有详细目录
- DX11,DX图形设计游戏跳一跳C++实现.
- Essential C++源代码
- The C++ Programming Language中文版
- 海康 最新的 sdk demo c++
- 数据结构与程序设计C++语言描述(中
- C++网络编程(卷I和卷II高清扫描版)
- A Tour of C++ (2nd Edition)
- C++读取Excel源代码
评论
共有 条评论