1 Star 0 Fork 0

WanPJ007/mfc_plane_game

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Enemy4.cpp 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
KinderRiven 提交于 2016-06-20 13:07 . 2016.6.20 upload
#include "stdafx.h"
#include "Enemy4.h"
#include "AllHurt.h"
#include "AllLife.h"
#include "AllScore.h"
#include "AllSpeed.h"
#include "GameMessage.h"
//int speed; //速度.
//bool is_dead; //判断是否死亡
//CBitmap bmp; //图片
//int width, height; //模型的大小
//int x, y; //位置坐标
//int dir_x, dir_y; //方向向量
//int hurt; //每个物品的伤害,包括碰撞伤害,子弹伤害,物品伤害
Enemy4::Enemy4(int xx,int yy,int dx,int dy)
{
x = xx; y = yy; dir_x = dx; dir_y = dy;
width = 200; height = 121;
speed = AllSpeed::speed_enemy4;
hurt = AllHurt::hurt_enemy4;
score = AllScore::score_enemy4;
life = AllLife::life_enemy4;
is_dead = false;
bmp.LoadBitmap(Enemy_y5);
}
Enemy4::~Enemy4()
{
}
void Enemy4::move()
{
x = x + dir_x * speed;
y = y + dir_y * speed;
SetPos();
}
void Enemy4::SetPos()
{
int w = GameMessage::rect.Width();
int h = GameMessage::rect.Height();
if (y > h) y = -200;
}
void Enemy4::draw(CDC* pDC)
{
CDC memDC;
memDC.CreateCompatibleDC(NULL);
memDC.SelectObject(&bmp);
if (!is_dead){
pDC->TransparentBlt(x, y, 150, 100, &memDC, 0, 0, width, height, RGB(0, 0, 0));
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/WanPJ/mfc_plane_game.git
git@gitee.com:WanPJ/mfc_plane_game.git
WanPJ
mfc_plane_game
mfc_plane_game
master

搜索帮助