Skip to main content
留学咨询

墨尔本大学 SWEN20003 Project2 课业解析

By May 15, 2020No Comments

题意:用Java设计与实现一款结合消除、弹珠等元素的Shadow Bounce游戏,包括绘制UML图及代码实现解析:在一张2D棋盘上有一些不同类别的钉子,玩家通过投掷球消除所有的红色钉子进入下一关,每一关玩家有20次机会,通过所有关卡赢得游戏,若机会用尽游戏失败。钉子有四种颜色:蓝色钉子最普通;灰色钉子不能被消除;红色钉子在初始化关卡时,由随机从蓝色钉子取出的5分之1转换而来;绿色钉子在每关初始化时随机生成1枚,和其它钉子不同的是,普通球碰到其他钉子将反弹,碰到绿色钉子将分裂产生两个新的球,分别以10像素每秒的速度分别以斜向右上和斜向左下方向移动;球有两种类型:普通球和爆炸球,普通球碰到普通钉子反弹,爆炸球碰到第一个钉子将自爆,伤害以钉子位置为中心周围70个像素范围并消除包含的所有钉子。每关开始时有0.1的机会随机生成一个不断移动的爆炸源,当普通球撞上爆炸源powerup后,将升级为爆炸球,同时爆炸源消失;幸运桶:bucket是一个运动在地图底部的幸运回收桶,初始位置是(512,744),以每帧4像素的速度向地图左侧移动,当球撞进桶内,本次投掷不计数;若桶超出地图,重置为初始位置,而球超出屏幕则玩家次数减1;游戏一共有5关,地图信息存储在对应的csv文件中,每行信息代表了钉子在地图的位置涉及知识点:UML、面向对象、Bagel库更多可加微信讨论
微信号:yzr5211234  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. How
ever, 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, [email protected] 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 [email protected] 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  

admin

Author admin

More posts by admin