- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
ShootPlane.cpp
资源名称:LwGame2.0.rar [点击查看]
上传用户:semy2100
上传日期:2013-01-22
资源大小:3633k
文件大小:2k
源码类别:
射击游戏
开发平台:
Visual C++
- /********************************************************************
- * 空运爆发 *
- * Version 2.0 *
- * 本游戏全部代码由: *
- * 冲天实验室 梁锋 编写 *
- * 邮箱:lenwine@126.com *
- * bbs: http://free2.e-168.cn/lenwind (正在开发中...) *
- **********************************************************************/
- #include "stdafx.h"
- int ShootPlane::i=0;
- ShootPlane::ShootPlane(Manager *mgr,int xv,int yv):MemberStatus(mgr,xv,yv)
- {
- EndShoot=0;
- blow_up_value=8*4;
- blow_up_current=-1;
- }
- void ShootPlane::Update()
- {
- MemberStatus::Update();
- if(Shooting)
- Shoot();
- if(alive<=0)//这里是爆炸贞
- {
- if(++blow_up_current==0)
- {
- x+=Bitlong/2-82;
- y+=Bittall/2-73;
- Bitlong=180;
- Bittall=135;
- spx=0;
- spy=0;
- bx=0;
- by=115;
- Shooting=false;
- }
- else if(blow_up_current==blow_up_value)
- Work=false;
- else
- {
- bx=180*(blow_up_current/4%4);
- by=115+135*(blow_up_current/4/4);
- }
- }
- }
- void ShootPlane::Update2()
- {
- MemberStatus::Update2();
- if(Shooting)
- Shoot();
- if(alive2<=0)//这里是爆炸贞
- {
- if(++blow_up_current==0)
- {
- x+=Bitlong/2-82;
- y+=Bittall/2-73;
- Bitlong=180;
- Bittall=135;
- spx=0;
- spy=0;
- bx=0;
- by=115;
- Shooting=false;
- }
- else if(blow_up_current==blow_up_value)
- Work=false;
- else
- {
- bx=180*(blow_up_current/4%4);
- by=115+135*(blow_up_current/4/4);
- }
- }
- }
- void ShootPlane::beginShoot()
- {
- Shooting=true;
- }
- void ShootPlane::stopShoot()
- {
- Shooting=false;
- }
- void ShootPlane::SetEndShoot()
- {
- EndShoot=mManager->Time-rand()%Bomb::GetShoot(bombStyle);
- }
- ShootPlane::~ShootPlane()
- {
- }