EssayGhost Assignment代写,Essay代写,网课代修,Quiz代考

EssayGhost-Essay代写,作业代写,网课代修代上,cs代写代考

一站式网课代修,论文代写

高质量的Assignment代写、Paper代写、Report代写服务

EG1hao
网课代修代上,cs代写代考
Java代做
您的位置: 主页 > 编程案例 > Java代做 >
代做Java:programming language代写 project代写 UML diagram代写 - Java代做
发布时间:2021-07-25 21:25:42浏览次数:
The University of MelbourneJava programming language代写 In this project, you will create a graphical real-time strategy game in the Java programming language, continuing from your workDepartment of Computer Science and Software Engineering SWEN20003 Object Oriented Software DevelopmentProject 2, Semester 1, 2019Released: Monday 29th of April    Java programming language代写Project 2A due: Friday 10th of May, 7:00pmProject 2B due: Friday 31st of May, 7:00pmUpdated Saturday 11th of MayOverview Java programming language代写In this project, you will create a graphical real-time strategy game in the Java programming language, continuing from your work in Project 1. We will provide a full working solution for Project 1; you are welcome to use all or part of it, provided you add a comment explaining where you found the code.This is an individual project. You can discuss it with other students, but all submitted code must be your own work. You can use any platform and tools you like to develop the game, but we recommend using the Eclipse IDE, since that is what we are supporting in class.You will not be required to design any aspect of the game itself;Java programming language代写this document should provide all necessary information about how the game works. You will, however, be required to design the classes for your software solution before you implement it.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 plan to implement the game. This should be submitted in the form of a UML diagram showing all the classes 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 setters need not be explicitly included.) If you so choose, you may show the relationships separately to the class members, but you must use correct UML notation. Please submit as PDF only.Java programming language代写The second task,  Project 2B, is to complete the implementation of the game as described in the    rest of this specification. You  do not have  to follow your class design; it is there to encourage you  to think about object-oriented principles before you start programming. If you do end up changing your design, we ask that you produce an updated UML diagram and submit it with your project.Java programming language代写Shadow BuildGame overview Java programming language代写Shadow Build is a strategy game where the  player must build structures  on an  alien planet and  train units to mine the planet for the precious resource unobtainium.   The game takes place on         a large map containing different kinds of terrain and resources. Broadly speaking, the game is divided into units  that can be controlled to travel to different parts of the map, buildings  that can  be controlled to create new units, and resources that certain types of units can collect.The two resources are metal and unobtainium. The goal of the game is to collect unobtainium as efficiently as possible; it has no other purpose. Creating buildings and units costs a certain amount of metal.Java programming language代写The game mapThe map contains background tiles, some which are solid and cannot be moved through by units,  and others which are not solid.  The map should be loaded in the same manner as in Project 1.   Some tiles are now occupied,  which means that buildings may not be created such that the centre    of the building lies on them. This is a property implemented in the same way as the solid property from Project 1.For Project 2, you will additionally have a file objects.csv; this file contains a list of  units,  buildings, and resources that should be created at the start of the game. It is in comma-separated value (CSV) format, and contains lines of the following form:commandcentre,812,748  Java programming language代写The first entry is the name of the object to be created, followed by the x coordinate and the ycoordinate it should be created at.UnitsThere are four types of units in this game. All units can be selected  by  left-clicking within 32  pixels of them; only one unit can be selected at a time, and if you click away from any unit, the selected unit (if there is one) should be deselected. If there are multiple units close to a click, you  may choose any one to be selected. When a unit is selected, right-clicking should make the unit move towards the location that was clicked until the unit reaches that location.A unit that is selected should have a highlight drawn under it; this can be found in the file highlight.png. Units can move through buildings and resources. The scout moves the fastest out of any unit, but has no other special attributes. The scout should move at a rate of 0.3 pixels per millisecond.Java programming language代写The builder can create factories to train trucks. When the builder is selected and the 1 key is pressed, the builder starts building at a cost of 100 metal. After 10 seconds, a factory should  be created at the builder’s current location.  The builder should not move  during this time.    If there is not enough metal available, pressing the 1 key should do nothing.The builder should move at a rate of 0.1 pixels per millisecond. The engineer can mine metal and unobtainium.When the engineer has spent 5 seconds near a resource, the engineer starts carrying some of the resource, beginning at 2 units of the resource. The engineer cannot carry more than this maximum, unless pylons are activated (see below).When this happens, the engineer should start moving directly (in a straight line)towards the nearest command centre. When the engineer reaches the command centre, they should drop  the resource off, and the amount should be added to the player’s total. The engineer should then start moving directly back towards the resource.Java programming language代写If the engineer is interrupted by being ordered to move to another location, the engineer stops their planned motion.The engineer should move at a rate of 0.1 pixels per millisecond.Java programming language代写The truck can create command centres.  It should behave similarly to the builder,  except that  it should take 15 seconds, cost no metal, and when the command centre is complete the truck should be destroyed.The truck should move at a rate of 0.25 pixels per millisecond.ResourcesResources are located at different parts of the map. They begin with a  certain amount  of the relevant resource which is depleted when engineers mine them. When the resource has none of the resource left, it should be destroyed. The metal mine begins with 500 metal.Java programming language代写 The unobtainium mine begins with 50 unobtainium.Buildings Java programming language代写Buildings are either already on the map, or can be constructed by units. They can be selected in the same way as units; a building and a unit cannot both be selected at the same time. If a unit and a building are close together, the unit should be selected first.When a building is selected, it should have a highlight drawn under it, given by the file highlight large.png. The command centre can train (create) most units when selected.When the 1 key is pressed,  a scout should begin training at a cost of 5 metal. When the 2 key is pressed, a builder unit should begin training at a cost of 10 metal. When the 3 key is pressed, an engineer should begin training at a cost of 20 metal.Java programming language代写A unit takes 5 seconds to train, and only one unit can be trained at a time. When the time  is up, the unit should be created at the building’s location. The factory can train trucks in the same manner as the command centre. When the 1 key is pressed, a truck should begin training at a cost of 150 metal.Java programming language代写The pylon cannot be built. Instead, they are already on the map. When a unit comes within 32 pixels of the pylon, the pylon becomes activated and should change to the active image (permanently). Each active pylon should allow all engineers to carry 1 additional resource.Java programming language代写The cameraThe camera should behave similarly to Project 1, except that it should follow the currently selected unit or building.  If the player presses the W, A, S, and D keys, the camera should stop following   the selected unit, and move 0.4 pixels per millisecond up, left, down, or right respectively. If a unit  is selected after the player presses one of these keys, the camera should start following that unit  until the player presses one of the keys again (moving instantly to follow the unit).The text displayJava programming language代写The player needs to know some information about the game. At the coordinate (32,32), the text Metal: amount Unobtainium: amount should be drawn, with the appropriate amounts listed.  When a unit or building that can create other units or buildings is selected, the actionsassociated with the 1, 2, and 3 keys should be drawn at the coordinate (100,32)(32,100). For example,  the  command  centre  should  draw  1-  Create  Scout 2-  Create  Builder 3-  Create Engineer .Implementation checklist Java programming language代写This project may seem daunting. As there are a lot of things you need to implement, we have provided a feature checklist, ordered roughly in the order we think you should implement them in, together with the marks each feature is worth:Theinitial objects are loaded and visible on screen (1 mark)Allunits can be selected and deselected, and move correctly (1 mark)Engineermines the resources correctly (1 mark)The text display is correct (1mark)Command centre can create units (1mark)Java programming language代写Builder can create factories (1mark)Factory can create trucks (0.5marks)Truck can create command centres (0.5marks)Pylonsactivate when a unit is near them (0.5 marks)Pylonsallow engineers to mine faster (0.5 marks)Customisation Java programming language代写Optional: we want to encourage creativity with this project. We have tried to outline every aspect of the game design here, but if you wish, you may customise any part of the game, including the graphics, 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 above implementation checklist.For those of you with far too much time on your hands, we will hold a competition for the best game extension or modification, judged by the lecturer and tutors. The winning three will be demonstrated at the final lecture, and there will be a prize for our favourite. Past modifications haveincluded drastically increasing the scope of the game, implementing jokes and creative game design, 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, at [email protected] with your username and a short description of the modifications you came up with. I can’t wait to see what you’ve done!The supplied packageYou will be given a package, oosd-project2-package.zip, which contains all of the graphics and other files you need to build the game. You can use these in any way you like.Submission and marking Java programming language代写Technical requirementsTheprogram must be written in the Java programming language.The program must not depend upon any libraries other than the Java standard library and the Slick library.Theprogram must compile fully without errors.Every public method, attribute, and class must have Javadoc comments as explained in later lectures.Submission will take place through the LMS. Please zip your project folder in its entirety, and  submit this .zip file. Do not submit a .rar, .7z, .tar.gz, or any other type of compressed folder. Especially do not submit one of these files that has simply been renamed to have a .zip extension, as then we will be unable to open your file.1Ensure all your code is contained in this folder.Java programming language代写1This may sound ridiculous, but it has happened several times in the past!Good Coding StyleGood coding style is a contentious issue; however, we will be marking your code based on some of the following criteria:You  should notgo back and comment your code after the fact.  You  should be commenting   as youYou should be taking care to ensure proper use of visibility modifiers. Unless you have a very goodreason for it, all instance variables should beAnyconstant should be defined as a static final  Don’t use magic numbers!Make sure each class makes sense as a cohesive whole. A class should contain all of the data and methods relevant to its purpose.Make sure no single class is too large. Responsibilities should be carefully delegated to keep the code comprehensible.Java programming language代写Extensions and late submissionsIf you need an extension for the project, please email Eleanor at [email protected] explaining your situation with some supporting documentation (medical certificate, academic ad- justment plan, wedding invitation). If an extension has been granted, you may submit via the LMS as usual; please do however email Eleanor once you have submitted your project.The project is due at 7:00pm sharp. Any submissions received past this time (from 7:01pm onwards) will be considered late unless an extension has been granted. There will be no exceptions. There is a penalty of 1 mark for a late project, plus an additional 1 mark per 24 hours. If you submit late, you must email Eleanor with your student ID so that we can ensure your late submission is marked correctly.Marks Java programming language代写Project 2 is worth 22 marks out of the total 100 for the subject.Project 2A is worth 6–Correct UML notation for methods (1mark)– Correct UML notation for attributes (1mark)– CorrectUML notation for associations (1 mark)– Good breakdown into classes (1mark)– Sensible delegation of methods and attributes (1mark)– Appropriate use of inheritance and interfaces (1mark)Project 2B is worth 16–Features implemented correctly: 8 marks (see Implementation checklistfor details) Java programming language代写– Codingstyle, documentation, and good object-oriented principles: 8 marks∗Delegation: breaking the code down into appropriate classes (2marks)∗Use of methods: avoiding repeated code and overly complex methods (1mark)∗Cohesion:  classes are complete units that contain all their data (1mark)∗Coupling:  interactions between classes are not overly  complex (1 mark)∗Generalcode style: visibility modifiers, magic numbers, commenting  (1 mark)∗Use of documentation (javadocs) (1mark)Java programming language代写其他代写:考试助攻 计算机代写 java代写 function代写 paper代写  web代写 编程代写 report代写 数学代写 algorithm代写 python代写 java代写 code代写 project代写 Exercise代写 dataset代写 analysis代写 C++代写 代写CS 金融经济统计代写 C语言代写 lab代写合作平台:315代写 315代写 写手招聘 Essay代写

所有的编程代写范围:essayghost为美国、加拿大、英国、澳洲的留学生提供C语言代写、代写C语言、C语言代做、代做C语言、数据库代写、代写数据库、数据库代做、代做数据库、Web作业代写、代写Web作业、Web作业代做、代做Web作业、Java代写、代写Java、Java代做、代做Java、Python代写、代写Python、Python代做、代做Python、C/C++代写、代写C/C++、C/C++代做、代做C/C++、数据结构代写、代写数据结构、数据结构代做、代做数据结构等留学生编程作业代写服务。