墨尔本大学 SWEN20003 Project2 课业解析

墨尔本大学 SWEN20003 Project2 课业解析

题意:

用Java设计与实现一款结合消除、弹珠等元素的Shadow Bounce游戏,包括绘制UML图及代码实现

解析:

在一张2D棋盘上有一些不同类别的钉子,玩家通过投掷球消除所有的红色钉子进入下一关,每一关玩家有20次机会,通过所有关卡赢得游戏,若机会用尽游戏失败。

钉子有四种颜色:蓝色钉子最普通;灰色钉子不能被消除;红色钉子在初始化关卡时,由随机从蓝色钉子取出的5分之1转换而来;绿色钉子在每关初始化时随机生成1枚,和其它钉子不同的是,普通球碰到其他钉子将反弹,碰到绿色钉子将分裂产生两个新的球,分别以10像素每秒的速度分别以斜向右上和斜向左下方向移动;

球有两种类型:普通球和爆炸球,普通球碰到普通钉子反弹,爆炸球碰到第一个钉子将自爆,伤害以钉子位置为中心周围70个像素范围并消除包含的所有钉子。每关开始时有0.1的机会随机生成一个不断移动的爆炸源,当普通球撞上爆炸源powerup后,将升级为爆炸球,同时爆炸源消失;

幸运桶:bucket是一个运动在地图底部的幸运回收桶,初始位置是(512,744),以每帧4像素的速度向地图左侧移动,当球撞进桶内,本次投掷不计数;若桶超出地图,重置为初始位置,而球超出屏幕则玩家次数减1;

游戏一共有5关,地图信息存储在对应的csv文件中,每行信息代表了钉子在地图的位置

涉及知识点:

UML、面向对象、Bagel库

更多可加

薇❤号:qing1119X

pdf

SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019The University of MelbourneDepartment of Computer Science and Software EngineeringSWEN20003 Object Oriented Software DevelopmentProject 2, Semester 2, 2019Released: Friday 13th SeptemberProject 2A due: Friday 27th of September, 11:59pmProject 2B due: Friday 18th of October, 11:59pmUpdated Thursday 19th of SeptemberOverviewIn this project, you will create a graphical arcade game in the Java programming language, continuing from your work in Project 1. We will provide a full working solution for Project 1; you arewelcome to use all or part of it, provided you add a comment explaining where you found the codeat the top of each file that uses the sample code.This is an individual project. You can discuss it with other students, but all submitted code mustbe your own work.There are two parts to this project, with different submission dates.The first task, Project 2A, requires that you produce a class design demonstrating how you planto implement the game. This should be submitted in the form of a UML diagram showing all theclasses you plan to implement, the relationships (e.g. inheritance and associations) between them,and their attributes, as well as their primary public methods. (Methods such as getters and settersneed not be explicitly included.) If you so choose, you may show the relationships separately tothe class members in the interests of neatness, but you must use correct UML notation. Pleasesubmit as PDF only.The second task, Project 2B, is to complete the implementation of the game as described in therest of this specification. You do not have to follow your class design; it is there to encourage youto think about object-oriented principles before you start programming. Indeed, it is expected thatsome aspects of your design will need to change when you start programming.1SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019Shadow BounceGame overviewShadow Bounce is an arcade game where the player must attempt to clear the game board of redpegs with a limited number of shots. Once the board is cleared, the player can progress to the nextboard, and so on until all boards are cleared or the player runs out of shots, whereupon the gameshould end. A turn begins when the board is first loaded, and ends when all balls from the turnhave fallen off the bottom of the screen. When the turn ends, a new one begins.The player begins with 20 shots. Each turn after the first, the number of shots should decrease by1. When there are no more shots left, the game should end.The game can be divided into three main types of objects: pegs, which can be destroyed to advanceto the next level; balls, which are used to destroy pegs; and a powerup, which can be activated bystriking it with the ball to get a bonus.Boards are loaded from comma-separated value (.csv) files, numbered 0.csv (the first board) to4.csv (the final board). You will not be tested on any other boards. Boards 1 through4 will be released at a later date. Each line of these files is in the following format:type,x,ywhere type is the type of peg to be created, x is an integer representing the x-coordinate to createthe peg at, and y is an integer representing the y-coordinate to create the peg at. The pegs shouldbe created with their centre at these coordinates.The pegsPegs come in three shapes. The shape will be specified along with the type; e.g. blue horizontal peg,grey vertical peg. If it is not specified, the shape should be normal.• Normal pegs:These are the usual circular pegs from Project 1.• Horizontal pegs:these pegs are a horizontal rectangle shape.• Vertical pegs:these pegs are a vertical rectangle shape.They come in four types. Blue and grey pegs are specified in the board files; the others are createdafter the board is loaded.• Blue pegs: these pegs have no special behaviour.2SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019• Grey pegs:these pegs behave as the blue pegs, but cannot be destroyed.• Red pegs:at the start of each board, one fifth (rounded down) of the blue pegs should become redinstead. When all red pegs are destroyed, the game should advance to the next board.• Green pegs:at the beginning of each turn, a random blue peg should become green. If the green peg isdestroyed, two balls of the striking ball’s type should be created at the green peg’s position,with an initial velocity of 10 pixels per second diagonally upwards and to the left and rightrespectively. At the end of each turn, if the green peg was not destroyed, it should becomeblue again.The ballsThere are two types of ball the player has access to. In Project 2, balls should bounce off pegs theystrike. If the ball strikes the peg from the top or bottom, it should reverse its vertical direction.Similarly, if the ball strikes the peg from the left or right, it should reverse its horizontal direction.The Rectangle class in Bagel contains a method to help you with this. As in Project 1, the circularpegs may be treated as though they were square.• The normal ball:this ball has no special behaviour. It is created in the same way as Project 1, and moveswith the same gravity. Note: If your screen is too small to display the window fully, youmay reduce the size of the window (by calling AbstractGame’s constructor). The ball shouldthen be created with an x value of half the window width, and a y value of 32. All pegs mustremain visible.• The fire ball:the fire ball behaves as the normal ball, except when it strikes a peg, all pegs within 70 pixelsof the struck peg’s centre are destroyed. When the turn finishes, the ball returns to normal.The powerupAt the start of each turn, with a 1/10 chance a powerup should be created at a random position onthe screen. The other 9/10 of the time, no powerup should be created. The powerup should choosea random position on the screen and move towards it at a speed of 3 pixels per frame. When the3SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019powerup is within 5 pixels of its destination, it should choose another random position. If the ballstrikes the powerup, the powerup is activated and destroyed.• Fire Ball: when this powerup is activated, the player’s ball should be replaced with the fireball.The bucketThe bucket begins at the coordinate (512, 744). Note: As with the ball, if you need to reduce thewindow size, you can; the bucket should begin with an x value of half the window’s width, and ay value equal to the window’s height minus 24.The bucket moves left at a rate of 4 pixels per frame. When any part of the bucket reaches the leftor right sides of the screen, it should reverse direction.If a ball leaves the bottom of the screen while making contact with the bucket, the player shouldget an additional shot.Implementation checklistThis project may seem daunting. As there are a lot of things you need to implement, we haveprovided a feature checklist, ordered roughly in the order we think you should implement them in,together with the marks each feature is worth:1. The board is loaded and visible on screen (1 mark)2. Grey pegs cannot be destroyed (0.5 marks)3. Pegs are randomly chosen to be red when the board is loaded (0.5 marks)4. The game advances to the next board when all red pegs are cleared (1 mark)5. The game ends when all boards are cleared or the player runs out of shots (0.5 marks)6. A peg is randomly chosen to be green pegs each turn (0.5 marks)7. When the green peg is destroyed, the extra balls appear and move correctly (1 mark)8. Powerup appears and moves as described (1 mark)9. Powerup causes fire ball (0.5 marks)10. Fire balls destroy multiple pegs (0.5 marks)11. The bucket functions correctly (1 mark)4SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019CustomisationOptional: we want to encourage creativity with this project. We have tried to outline every aspectof the game design here, but if you wish, you may customise any part of the game, including thegraphics, types of units, buildings, resources, game mechanics, etc. You can also add entirely newfeatures. However, to be eligible for full marks, you must implement all of the features in the aboveimplementation checklist.For those of you with too much time on your hands, we will hold a competition for the bestgame extension or modification, judged by the lecturer and tutors. The winning three will bedemonstrated at the final lecture, and there will be a prize for our favourite. Past modificationshave included drastically increasing the scope of the game, implementing jokes and creative gamedesign, adding polish to the game, and even introducing networked gameplay.If you would like to enter the competition, please email the head tutor, Eleanor McMurtry, atmcmurtrye@unimelb.edu.au with your username and a short description of the modifications youcame up with. I can’t wait to see what you’ve done!If you like, you may submit a minimal version of the game to be assessed, and email a secondextended version to Eleanor. Extensions submitted this way may use any libraries you like, notjust Bagel and the Java standard library.The supplied packageYou will be given a package, oosd-project2-package.zip, which contains all of the graphics andother files you need to build the game. You can use these in any way you like.Submission and markingTechnical requirements• The program must be written in the Java programming language.• The program must not depend upon any libraries other than the Java standard library, theBagel library, and Bagel’s dependencies.• The program must compile fully without errors.• Every public method, attribute, and class must have Javadoc comments, as explained inlater lectures.Submission will take place through the LMS. Please zip your project folder in its entirety, andsubmit this .zip file. Do not submit a .rar, .7z, .tar.gz, or any other type of compressedfolder.Ensure all your code is contained in this folder.5SWEN20003 Object Oriented Software Development Project 2, Semester 2, 2019Extensions and late submissionsIf you need an extension for the project, please email Eleanor at mcmurtrye@unimelb.edu.auexplaining your situation with some supporting documentation (medical certificate, academic adjustment plan, wedding invitation). If an extension has been granted, you may submit via the LMSas usual; please do however email Eleanor once you have submitted your project.The project is due at 11:59pm sharp. Any submissions received past this time (from 12:00amonwards) will be considered late unless an extension has been granted. There will be no exceptions.There is a penalty of 1 mark per day or part thereof for a late submission. If you submit late, youmust email Eleanor with your student ID so that we can ensure your late submission is markedcorrectly.MarksProject 2 is worth 22 marks out of the total 100 for the subject.• Project 2A is worth 6 marks.{ Correct UML notation for methods (1 mark){ Correct UML notation for attributes (1 mark){ Correct UML notation for associations (1 mark){ Good breakdown into classes (1 mark){ Sensible use of methods and attributes (1 mark){ Appropriate use of inheritance, interfaces, and abstract (1 mark)• Project 2B is worth 16 marks.{ Features implemented correctly: 8 marks (see Implementation checklist for details){ Coding style, documentation, and good object-oriented principles: 8 marks∗ Delegation: breaking the code down into appropriate classes (2 marks)∗ Use of methods: avoiding repeated code and overly complex methods (1 mark)∗ Cohesion: classes are complete units that contain all their data (1 mark)∗ Coupling: interactions between classes are not overly complex (1 mark)∗ General code style: visibility modifiers, magic numbers, commenting etc. (2 marks)∗ Use of documentation (javadocs) (1 mark)6
更多可加薇❤号:qing1119X

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容