- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
ShootGame测评1
软件的业务需求分析 ShootGame 英雄机Hero 敌机Airplane 蜜蜂Bee 子弹Bullet 软件概要设计 数据建模:使用一个数据模型,描述对象的关系,使用绘图坐标系作为参考模型,英雄机,敌机,蜜蜂,子弹都是矩形区域。 飞行物的区域 类的设计 创建抽象父类(飞行物) protected int x; protected int y; protected int width; protected int height; protected BufferedImage image; 创建抽象父类(飞行物) //飞行物走一步 public abstract void step (); //敌人(敌机、小蜜蜂)被子弹打 this:敌人,bullet:子弹 public boolean shootBy(Bullet bullet){ int x =bullet.x; int y =bullet.y; 创建抽象父类(飞行物) return xthis.x xthis.x+this.width ythis.y ythis.y+this.height; public abstract boolean outOfBounds(); 得分接口 public interface Enemy {//得分接口 int getScore();//得分 奖励接口 public interface Award { int DOUBLE_FIRE = 0;//双倍火力值 int LIFE = 1;//生命 int getType(); 英雄机 public class Hero extends FlyingObject private int life; private int doubleFire; private BufferedImage[] images; private int index; 英雄机 public Hero(){ image=ShootGame.hero0; width=image.getWidth(); height=image.getHeight(); x=150; y=400; 英雄机 life=3; doubleFire=0; images=new BufferedImage[] {ShootGame.hero0,ShootGame.hero1}; index=0; public void step(){ image=images[index++/10%images.length]; 英雄机与敌人碰撞this:英雄机 other:敌人 public boolean hit(FlyingObject other){ int x1= other.x-this.width/2; int x2= other.x+other.width+this.width/2; int y1=other.y-this.height/2; int y2=other.y+other.height+this.height/2; 英雄机与敌人碰撞this:英雄机 other:敌人 int hx=this.x+this.width/2; int hy=this.y+this.height/2; return hxx1 hxx2 hyy1 hyy2; 敌机 public class Airplane extends FlyingObject implements Enemy private int speed = 2; public Airplane(){ image=ShootGame.airplane; width=image.getWidth(); height=image.getHeight(); 敌机 Random rand =new Random(); x=rand.nextInt(ShootGame.WIDTH-this.width); y=-this.height; 蜜蜂 public class Bee extends FlyingObject implements Award private int xSpeed=1;//x坐标 private int ySpeed=2;//y坐标 private int awardType;//奖励类型 子弹 public class Bullet extends FlyingObject private i
您可能关注的文档
- raptor简明教程(参考).ppt
- RG-LGQ-300-6 化学品管理制度 130729.doc
- RJ-iTop(榕基)网络隐患扫描系统.doc
- RKC智能温控器 温控表 温度调节器REX-C100.doc
- renjiao 二年级下册语文《雷雨》.ppt
- RFID通讯技术实验报告.doc
- rkc温控表说明书.doc
- Reading(共29张PPT).ppt
- RF 基本观念简介(F5).ppt
- rs232和485串口GPRS DTU说明书.doc
- 特发性高血压病因介绍.pptx
- 2025年国家电网招聘之其他工学类考试题库带答案(典型题).docx
- 2025年国家电网招聘之其他工学类考试题库附参考答案(巩固).docx
- 2025年国家电网招聘之其他工学类考试题库及答案【夺冠系列】.docx
- 2025年国家电网招聘之其他工学类考试题库【全优】.docx
- 2025年国家电网招聘之公共与行业知识考试题库附参考答案(b卷).docx
- 2025年国家电网招聘之其他工学类考试题库及参考答案【研优卷】.docx
- 2025年禁毒防毒题库附答案【培优b卷】.docx
- 2025年国家电网招聘之自动控制类考试题库附完整答案【典优】.docx
- 2025年国家电网招聘之其他工学类考试题库及参考答案ab卷.docx
文档评论(0)