<samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
<ul id="e4iaa"></ul>
<blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>

      代寫FIT9131、Java程序設計代做

      時間:2024-05-20  來源:  作者: 我要糾錯



      FIT9131 Assignment B: Fellowship of Code: a Java Adventure in Middle Earth

      Introduction

      In preparing your program, please note the following:

      You must use the workspace environment in the Ed platform to code all parts of your program. You must not copy and paste large sections of code from somewhere else. 

      You must acknowledge all code in your assignment that you have taken from other sources.

      The Java source code for this assignment must be implemented according to the FIT9131 Java Coding Standards. 

      Only a text interface is to be used for this program.  More marks will be gained for a program that is easy to follow with clear navigation information and error messages.

      In this assessment, you must not use generative artificial intelligence (AI) to generate any materials or content in relation to the assessment task.

      Any points needing clarification may be discussed with your tutor in your applied learning class. You should not make any assumptions about the program without consulting your tutor.

      Completion of this assignment contributes towards the following FIT9131 learning outcomes:

      Design and construct Java programs according to standard object-oriented principles

      Apply and demonstrate debugging processes to Java applications

      Develop strategies for efficient and effective program testing

      Document code according to specific programming standards

      Identify and apply the "object-oriented" concepts of encapsulation, abstraction and polymorphism

      Explain and apply software engineering principles of maintainability, readability and modularisation

      Specification
      For this assignment you will write a program to play a game Fellowship of Code: a Java Adventure in Middle Earth. This section specifies the required functionality of the program. 

      Special Note: Before your Applied class in Week 11 there will be a small enhancement to the specification, so good design for your program will be important to allow easy modification to incorporate this change. 

      Background
      Fellowship of Code is a game where a group of adventurers go on a quest through a labyrinth in Middle Earth to deliver a secret code stored on a floppy disk to a Java wizard on Mount Api. During the quest the group must protect the secret code from being stolen by any evil creatures they encounter. The group of adventurers are known as the Fellowship. The Fellowship is led by a hobbit and other members of the group are elves and dwarves. The evil creatures that try to steal the code are orcs, trolls, and goblins. 

      The aim of the quest is for the Fellowship to travel through a labyrinth and safely deliver the code. The labyrinth consists of a series of connected caves, with each one having at least one entry into another cave.  At least one of the caves will have an exit to Mount Api. The Fellowship must decide which option to take as they navigate through the labyrinth.   When entering a cave the Fellowship may encounter an orc, a troll or a goblin. As a consequence, they may suffer damage, and may have the code stolen from them. If the code is stolen then the Fellowship may try to steal it back if they encounter the same creature again. If any creature suffers too much damage, then they die and no longer participate in the game.  The game ends successfully when at least one of the Fellowship reaches Mount Api with the secret code to deliver to the Java wizard. 

      Note that some of the characters and places in this assignment are taken from the "The Lord of the Rings" novels by  J.R.R. Tolkien.

      This section specifies the required functionality of the program. Only a text interface is required for this program; however, more marks will be gained for a simulation that is easy to follow with clear information/error messages to the user.

      Fellowship of code
      The Fellowship of Code game is controlled by a player. The player chooses the members of the Fellowship, chooses which members of the Fellowship will fight and makes the navigation decisions.  The evil creatures appear randomly in each cave and the player must decide how to deal with them.  The structure of the labyrinth is pre-determined and is read in from a file.

      Program start up 

      The program begins by displaying a welcome message and brief instructions for the game. 

      The player is prompted for the type of creatures they would like to have as members of the Fellowship. They can choose up to 4 members. The leader will be a hobbit and the remainder must be elves or dwarves, in any combination.  Each creature starts with no damage points and the following power ratings, which is used to determine their chances of winning a fight:

      hobbit: power = 3 points

      elf:   power = 5 points

      dwarf: power = 7 points 

      In addition, the hobbit and each elf will have a special weapon, which can be used once and will always win a fight. Dwarves have greater power but no special weapon.

      The labyrinth structure is read in from a file labyrinth.txt. The file consists of a number of lines, with each line containing the details of one cave.  Each line has five comma separated integers: cave identity, north cave identity, east cave identity, south cave identity, west cave identity.  A zero value for a north, east, south, west cave identity means that the entry to the cave is blocked or there is no cave in that direction. A value of 100 is the identity of Mount Api.

      A collection of caves is created from the details read from the file. Each cave will have the following details. 

      cave identity:  an integer

      north: identity of the northern cave or Mount Api, or 0 if the entry is blocked. 

      east: identity of the eastern cave or Mount Api, or 0 if the entry is blocked. 

      south: identity of the southern cave or Mount Api, or 0 if the entry is blocked. 

      west: identity of the western cave or or Mount Api, or 0 if the entry is blocked. 

      Living in the caves are orcs, trolls, and goblins. These are aggressive creatures that will fight to steal the code.  These creatures start with no damage points and the following power ratings:

      orc:  power = 5

      troll:  power = 9

      goblin: power = 3

      Note that these creatures do not have any special weapons. 

      The game begins with the Fellowship entering the first cave with the secret code. The Fellowship navigates from cave to cave through the labyrinth until they reach Mount Api or die along the way. 

      Specific actions in a cave

      When the Fellowship enters a cave the following may occur:

      1. There is a 75% chance of an orc, troll, or goblin being present in the cave.  No more than one creature will be in the cave. Each creature has the same probability of appearing. The creature remains in the cave for the duration of the game.

      2. If there is no orc, troll, or goblin in the cave then:

      the Fellowship members have a chance to recover and each member loses a damage point. Note that the damage points can't  be negative.

      the Fellowship chooses the next cave to enter or takes the exit to Mount Api, if available.  

      3. If there is an orc, troll, or goblin in the cave then this aggressive creature will fight to steal the code.  The player decides which member of the Fellowship will fight the creature.  Possible outcomes of the fight depend on the difference in power rating. If a creature has a power rating of:

      4 or more points greater than their opponent, they have a 90% chance of winning.

      3 or more points greater than their opponent, they have a 80% chance of winning.

      2 or more points greater than their opponent, they have a 70% chance of winning.

      1 or more points greater than their opponent, they have a 60% chance of winning.

      equal to their opponent then each has a 50% chance of winning. 

      4. A creature can use their special weapon once in the game. The special weapon will kill the opponent.

      5. As a result of a fight:

      The winner steals the secret code. 

      The damage points of the winner is increased by 1 point.

      The damage points of the loser is increased by 4 points.

      The creature will die if a special weapon has been used against them.

      6. A creature can use their special weapon once in the game. The special weapon will kill the opponent and there will be no damage to the creature that used the weapon.

      7.  If a creature has 10 or more damage points then they unfortunately die and are no longer in the game. 

      8.  If the last member of the Fellowship dies then the game ends.

      9.  If the orc, troll, and goblin are all killed then the Fellowship can navigate the labyrinth safely until they reach Mount Api.

      10.  After a fight the player chooses the next cave for the Fellowship to enter. 

      If there is only one cave option then the Fellowship must enter this cave.

      If there is an exit to Mount Api then the Fellowship may take this exit to deliver the secret code to the Java wizard and the game ends. 

      If the Fellowship does not have the secret code then they would try to navigate back to the cave to steal back the code from the creature that has the code. 

      11. After these events and before moving to the next cave, the following information is displayed:

      a list of caves the Fellowship has visited showing whether there is a creature in the cave 

      an indication of which creature holds the code

      the damage points for each creature

      the identity of the cave that the Fellowship will enter

      Specific actions at the end of the game

      At the end of the game a summary is displayed.

      The outcome of the quest, whether it was successful or not and the creature that delivered the code

      The number of caves visited by the Fellowship

      The number of times the secret code changed hands

      A list of the creatures that died.

      The Fellowship fight success rate given as:  
       number of fights won by the Fellowship * 100 / total fights

      A summary is written to the file fellowship.txt.

      請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp





       

      標簽:

      掃一掃在手機打開當前頁
    • 上一篇:ENG5284代做、代寫C++,Python/MATLAB編程
    • 下一篇:COMP30023代做、代寫C/C++編程語言
    • 無相關信息
      昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲
      油炸竹蟲
      酸筍煮魚(雞)
      酸筍煮魚(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚
      香茅草烤魚
      檸檬烤魚
      檸檬烤魚
      昆明西山國家級風景名勝區(qū)
      昆明西山國家級風景名勝區(qū)
      昆明旅游索道攻略
      昆明旅游索道攻略
    • 幣安app官網(wǎng)下載 幣安app官網(wǎng)下載

      關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

      Copyright © 2023 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
      ICP備06013414號-3 公安備 42010502001045

      主站蜘蛛池模板: 亚洲国产精品无码久久一线| 亚洲成A∨人片天堂网无码| 国产成人精品无码免费看| 亚洲国产精品成人精品无码区在线| 无码一区二区三区| 亚洲av无码有乱码在线观看| 一本色道无码道在线观看| 亚洲a∨无码一区二区| 无码日韩人妻精品久久蜜桃 | 成人av片无码免费天天看| 欧洲成人午夜精品无码区久久| 无码天堂亚洲国产AV| 日韩人妻无码一区二区三区99| 亚洲无码精品浪潮| 日本精品无码一区二区三区久久久| 亚洲色无码专区在线观看| 亚洲AV无码乱码在线观看性色扶| 久久亚洲AV无码精品色午夜麻豆 | 国产精品无码av在线播放| 日韩精品无码Av一区二区| 亚洲AV成人片无码网站| 无码精品视频一区二区三区| 亚洲欧洲精品无码AV| 国产aⅴ无码专区亚洲av麻豆| 无码国内精品久久人妻麻豆按摩| 无码熟妇αⅴ人妻又粗又大| 亚洲av日韩aⅴ无码色老头| 精品亚洲成A人无码成A在线观看| 亚洲AV日韩AV高潮无码专区| 久久久无码精品亚洲日韩蜜桃| 亚洲精品无码久久久久| 国产精品无码午夜福利| 无码人妻熟妇AV又粗又大| 秋霞鲁丝片Av无码少妇| 日韩精品无码中文字幕一区二区| 国产精品亚洲а∨无码播放| 久久无码专区国产精品| 亚洲美免无码中文字幕在线| 无码人妻一区二区三区一| 亚洲爆乳大丰满无码专区| 无码精品人妻一区二区三区免费 |