FIT9131编程 写作、 辅导Java程序

” FIT9131编程 写作、 辅导Java程序FIT9131 November Semester 2020 Assignment 1Escape from IvaliceIntroductionThis document specifies the programming component of Assignment 1. This component is due by10pm Friday of Week 7 (18th December, 2020). Heavy penalties will apply for late submission.This is an individual assessment task and must be your own work. You must attribute the source ofany part of your code which you Have not written yourself. However, you must ensure to be able tounderstand, explain, and/or modify any part of your program. Please note the section on plagiarism inthis document.The assignment must be done using the BlueJ environment.The Java source code for this assignment must be implemented according to the Java CodingStandards for this unit.Any points needing clarification may be discussed with your tutor in the lab classes.Completion of this Assignment contributes towards the following FIT9131 learning outcomes:1. design, construct, test and document small computer programs using Java;2. interpret and demonstrate software engineering principles of maintainability, readability, andmodularisation;3. explain and apply the concepts of the object-oriented style of programming.SpecificationFor this assignment you will write a program which will allow a player to play a game Escape fromIvalice. This section specifies the required functionality of the program. Only a text interface isrequired for this program; however, more marks will be gained for a game that is easy to followwith clear information and error messages to the player.In the game, Escape from Ivalice, the player is a wielder of magical powers. The new king of the landhas made the practice of Magic illegal. As such, the player must try to escape Ivalice as soon aspossible by opening a magical doorway (i.e. a portal) to another realm. To prevent this, the king hascreated a series of mazes which must be navigated first. The aim of Escape from Ivalice is for a playerto choose the correct magical portal which will lead them to the final exit so they can leave IvaliceFIT9131 November Semester 2020 Assignment 1Page 2 of 5without landing in prison. The player either manages to escape or is captured. There is no other wayout!Game playThe Escape from Ivalice game gameplay can be described as follows:1. The game begins with a simple screen which prompts the user to enter their name, whichmust be between 3 and 12 characters long (both inclusive). If this criterion is not met, theplayer is asked to re-enter their name until correct.2. Next the player is placed in the middle of a room. The rules for the room are as follows:a. Each room may have up to 4 portals possible which allows the player to go from onerealm to another to the north, to the south, to the east, and to the west.b. The rules for the portal are as follows:i. The north portal has a 80% chance of existing1.If the player selects the north portal, the probability of finding the finalexit portal decreases by 2%. (The minimum probability cannot gobelow 1%)ii. The west portal Has a 60% chance of existingiii. The east portal has a 40% chance of existingiv. The south portal has a 20% chance of existing1. The south portal also has the final escape portal which has anindependent 5% chance of appearing only IF the south portal isopen.2.Based on this the south direction can either be another portal or thefinal exit portal.3. Each time the player takes the south portal, if there is no exit, theprobability of finding the final exit portal the next time increases by5%. (The maximum probability can only be 100%)c. The system will randomly generate which portals are available to the user and askthe player to make a choice. The system will also display the current probability offinding the exit portal.d. The players main goal is to find the final escape portal which will only appear onthe south side.e. The player will then make a choice to go in one available direction.f. The game Will end when one of two things happens:i. The player finds the final exit portal in the south directionii. The player ends up in jail a room where none of the portals are available tojump to in any of the four directions.g. The game will continue until the player ends up in jail or manages to find the finalexit portal.FIT9131 November Semester 2020 Assignment 1Page 3 of 5Game Requirements The existence of a portal must be randomly determined. The final exit portal can only appear in the south direction. Students MUSTo demonstrate an understanding of the logical flow for the game. A clear and concisegameplay should be demonstrated.o demonstrate a scalable class design for the program with a minimum of threeclasses. Additional classes which are justified will score more marks. If in doubt,consult your tutor.o demonstrate the correct use of fixed size collections where necessary. Students should check the demo video of the assignment which will be uploaded in Week4 on Moodle to get a better idea of the runtime requirements for the game. Students should aim to develop their own game execution that doesnt copy the demovideo. Marks will be awarded for a creative approach to displaying the game. (The gameshould still be text based only!)Hints and Suggestions When working With multiple classes you are encouraged to understand, and apply pass byreference so as to ensure appropriate design is included within your program. For assignment 1, you are not required to validate numeric inputs with the exception ofthe menu choice (if using numbers). All other numeric inputs are not required to bevalidated.FIT9131 November Semester 2020 Assignment 1Page 4 of 5AssessmentProgramming Task AssessmentAssessment for this component will be done via an interview with your tutor.The marks for your program code will be allocated as follows: 40% – Object-oriented design quality. This will be assessed on appropriate implementation ofclasses, fields, constructors, methods and validation of the objects state. 10% – Adherence to FIT9131 Java coding standards. 50% – Program functionality in accordance to the requirements.You must submit your work by the submission deadline on the due date (a late penalty of 20% perday, inclusive of weekends, of the possible marks will apply – up to a maximum of 100%). There willbe no extensions – so start working on it early.Marks will be deducted for untidy/incomplete submissions, and non-conformances to the FIT9131Java Coding Standards.Please note that your program code will be submitted to a code similarity checker.InterviewYou will be asked to demonstrate your program at an interview following the submission date. Atthe interview, you will be asked to explain your code/design, modify your code, and discuss yourdesign decisions and alternatives. Marks will not be awarded for any section ofcode/design/functionality that you cannot explain satisfactorily (the marker may also delete excessivein-code comments before you are asked to explain that code).In other words, you Will be assessed on your understanding of the code, and not on the actual codeitself.Interview times will be arranged in the tutorial labs in Week 7. It is your responsibility to attend thelab and arrange an interview time with your tutor. Any student who does not attend an interviewwill receive a mark of 0 for the assignment.FIT9131 November Semester 2020 Assignment 1Page 5 of 5Submission RequirementsThe assignment must be uploaded to Moodle by 10pm Friday of Week 7 (18th December, 2020).The submission requirements for Assignment 1 are as follows:A .zip file uploaded to Moodle containing the following components: the BlueJ project you created to implement your assignment. a completed Assignment Cover Sheet. This will be available for download from the unitsMoodle site before the submission deadline. You simply complete the editable sections of thedocument, save it, and include it in your .zip file for submission.The .zip file should be named with your Student ID Number. For example, if your id is 12345678,then the file Should be named 12345678_A1.zip. Do not name your zip file with any other name.It is your responsibility to check that your ZIP file contains all the correct files, and is not corrupted,before you submit it. If you tutor cannot open your zip file, or if it does not contain the correct files,you will not be assessed.Marks will be deducted for any of these requirements that are not complied with.Warning: there will be no extensions to the due date. Any late submission will incur the 20% per daypenalty. It is strongly suggested that you submit the assignment well before the deadline, in case thereare some unexpected complications on the day (e.g. interruptions to your home internet connection).ExtensionsAll requests for extensions must follow the faculty guidelines and submit the required forms as soonas possible. Please Note that for any extension to be granted you must submit the request centrally viathe link below: httpss://www.monash.edu/exams/changes/special-considerationIn addition, please remember to have supporting documentation available. This assignment cannot becompleted in a few days and requires students to apply what we learn each week as we move closer tothe submission date. Please remember to show your progress weekly to your tutor.Extensions due to starting late and not having enough time to complete will not be approved.PlagiarismCheating and plagiarism are viewed as Serious offences. In cases where cheating has been confirmed,students have been severely penalised, with penalties ranging from losing all marks for an assignment,to facing disciplinary action at the Faculty level. Monash has several policies in relation to theseoffences and it is your responsibility to acquaint yourself with these.Plagiarism ( https://www.policy.Monash.edu/policy-bank/academic/education/conduct/plagiarismpolicy.html)All submissions will be checked for plagiarism and collusion.如有需要,请加QQ:99515681 或邮箱:99515681@qq.com

添加老师微信回复‘’官网 辅导‘’获取专业老师帮助,或点击联系老师1对1在线指导