您好,欢迎访问三七文档
小组成员及分工情况市场调研情况软件开发情况汇报代码附录小组成员及分工情况Part1小组成员及分工情况组长:李艺博成员:王亚龙、刘学烨、张林优秀Part1团队分工团队任务分工:李艺博:市场调研,用户推广,PPT制作张林:博客编辑,文档编辑王亚龙:软件代码,后台调试刘学烨:软件开发,样例测试262422280102030405060708090100李艺博张林王亚龙刘学烨任务量分配市场调研情况Part2市场调研情况选择开发休闲小游戏的原因:一、中国游戏市场增长率呈理性态势。二、中国单机游戏市场的快速发展。三、中国游戏市场的持续增长。Part2市场调研情况职业学生年级是否有生活压力学生87%其他13%学生其他大一10%大二17%大三58%大四15%大一大二大三大四是65%否35%是否Part2市场调研情况√×有大约91.3%的人认为会去试玩一款能够帮助你缓解压力的休闲小游戏。对于休闲小游戏的看法有大约8.7%的人不会去试玩一款能够帮助你缓解压力的休闲小游戏对于休闲小游戏的看法软件开发情况汇报Part3软件开发情况汇报123代码编写完成后小组成员又对软件进行了多种测试。测试团队软件开发成员通过对游戏分析编写代码。编写小组通过对市场调研数据分析,确定贪吃蛇游戏开发。立项Part3软件开发情况汇报软件开始界面。点击开始游戏即可运行该软件进入游戏。软件运行界面,界面正上方拥有计时功能,右上角有记录得分功能,正下方EST键是暂停功能,右下角是返回功能。代码附录Part4附录packageorg.wing.jfx.game.core.component;importjavafx.beans.property.BooleanProperty;importjavafx.beans.property.DoubleProperty;importjavafx.beans.property.SimpleBooleanProperty;importjavafx.beans.property.SimpleDoubleProperty;importjavafx.scene.canvas.GraphicsContext;publicabstractclassWObject{protectedDoublePropertywidthProperty=newSimpleDoubleProperty(0);protectedDoublePropertyheightProperty=newSimpleDoubleProperty(0);protectedDoublePropertyxProperty=newSimpleDoubleProperty(0);protectedDoublePropertyyProperty=newSimpleDoubleProperty(0);protectedBooleanPropertyvisibleProperty=newSimpleBooleanProperty(true);protectedBooleanPropertyupdateProperty=newSimpleBooleanProperty(true);publicWObject(doublex,doubley,doublewidth,doubleheight){this.xProperty=newSimpleDoubleProperty(x);this.yProperty=newSimpleDoubleProperty(y);this.widthProperty=newSimpleDoubleProperty(width);this.heightProperty=newSimpleDoubleProperty(height);}publicWObject(){this.xProperty=newSimpleDoubleProperty(0);this.yProperty=newSimpleDoubleProperty(0);this.widthProperty=newSimpleDoubleProperty(0);this.heightProperty=newSimpleDoubleProperty(0);}publicabstractvoiddraw(GraphicsContextgc);publicabstractvoidupdate();publicDoublePropertywidthProperty(){returnwidthProperty;}publicdoublegetWidth(){returnwidthProperty.get();}publicvoidsetWidth(doublewidth){this.widthProperty.set(width);}publicDoublePropertyheightProperty(){returnheightProperty;}publicdoublegetHeight(){returnheightProperty.get();}publicvoidsetHeight(doubleheight){this.heightProperty.set(height);}publicDoublePropertyxProperty(){returnxProperty;}publicdoublegetX(){returnxProperty.get();}publicvoidsetX(doublex){this.xProperty.set(x);}publicDoublePropertyyProperty(){returnyProperty;}publicdoublegetY(){returnyProperty.get();}publicvoidsetY(doubley){this.yProperty.set(y);}publicBooleanPropertyvisibleProperty(){returnvisibleProperty;}publicvoidsetVisible(booleanisVisible){this.visibleProperty.set(isVisible);}publicbooleanisVisible(){returnvisibleProperty.get();}publicBooleanPropertyupdateProperty(){returnupdateProperty;}publicvoidsetUpdate(booleanisUpdate){this.updateProperty.set(isUpdate);}publicbooleanisUpdate(){returnupdateProperty.get();}publicvoidmoveX(doublex){this.xProperty.set(getX()+x);}publicvoidmoveY(doubley){this.yProperty.set(getY()+y);}publicbooleanisCollisionWith(WObjectbaseObject){if(getX()+getWidth()baseObject.getX()&&getX()baseObject.getX()+baseObject.getWidth()&&getY()+getHeight()baseObject.getY()&&getY()baseObject.getY()+baseObject.getHeight()){returntrue;}returnfalse;}}THANKS
本文标题:软工作业
链接地址:https://www.777doc.com/doc-6402087 .html