99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

F27SB代寫、c++,Java程序代做

時間:2024-05-02  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



F27SB: Software Development 2 CW2: GUI 2023/2024
Implementing the Hangman Game
In this coursework, your task is to implement a version of the classic word-guessing game commonly
known as “Hangman”. The game needs to be playable using a graphical user interface (GUI) implemented
in Java. The deadline for this coursework is Friday April 5th (5pm local time).
1. Hangman – Description of the Game
Hangman is a word-guessing game, meaning that the player’s goal is to guess a word. At the beginning of
the game a word is selected for the player to guess. The game is played in a series of rounds.
Each round proceeds as follows:
1. The player is presented with the current information they have about the word — the letters they
have guessed so far are shown, and in place of the letters not yet guessed a dash is displayed. (In
particular, this means that in the first round of the game, all that the player sees is a series of dashes,
one for each letter of the word they are guessing.)
2. The player guesses a letter.
3. If the guessed letter appears in the word, the player is informed of the correct guess by replacing the
corresponding dashes in the word’s display with the guessed letter.
4. If the guessed letter does not appear in the word, the player is informed that the guess was incorrect.1
The player has a limited number of incorrect guesses they are allowed to make before guessing the word.
The player wins by guessing all the letters of the word before using up the allowed incorrect guesses or lives
if you will. If the player reaches the limit of the incorrect guesses before guessing the word, they lose the
game. You can see a screen shot of what this could look like at the end of the document and you can find
more detailed information on the game itself here: https://en.wikipedia.org/wiki/Hangman_(game).
2. Coursework Specification
The goal is to implement a single-player version of Hangman with a graphical interface.2 The program
picks the word, and the player is trying to guess it.
2.1. Mandatory Features
This is the list of the mandatory features. For the submission to be considered complete, all of the following
have to be implemented. You can find specific weekly tasks in section 3.
• The program has to implement the hangman game for guessing words in the English language.
• At startup, the program will read a list of words from a file. Make sure there are no limitations
on the number of words your program can support. Any limitations on the supported file format
need to be clearly documented (e.g., one word per line, only uppercase letters). For testing your
program, you can use the example word list files provided in appendix B.
1Traditionally, this is done by adding an element to a drawing of a hanged man. This is where the game’s name comes
from.
2The emphasis of this coursework is on the interface but in order to get the full marks, you will need to implement the
functionality as well. Please, refer to the rubric in the end of the document.
Deadline: April 5th – 5pm local time Page 1 of 6
F27SB: Software Development 2 CW2: GUI 2023/2024
• At startup, the program will display the game GUI and start a new game.
• Whenever a new game is started, the word to be guessed will be picked by selecting a random word
from the list that was loaded at startup.
• The game’s GUI has to have the following features:
– Display of the word being guessed showing the guessed letters and a placeholder symbol (e.g.,
a dash) in place of the letters that are to be guessed.
– Buttons for guessing the letters — one button per letter. The interface has to prevent the user
from making the same guess multiple times (e.g., by disabling the button or making it invisible
after it was used once).
– Visual indicator showing the player how many incorrect guesses they have made so far and how
many they have remaining before they lose the game. The player has to be allowed to make at
least three incorrect guesses. Beyond that, feel free to decide how difficult you want to make
the game. The fewer mistakes you allow the player, the more difficult the game.
• If the player wins the game, the program will congratulate the player and ask them if they want to
play another game. If the player decides to play another game, the program will start a new game.
If the player decides not to play another game, the program will terminate its execution.
• If the player loses the game, the program will inform the player of the defeat, revealing the word
the player was guessing, and asking them if they want to play another game. If the player decides
to play another game, the program will start a new game. If the player decides not to play another
game, the program will terminate its execution.
• If at any time the player closes the main GUI window, the program will terminate its execution.
There is an example GUI design and a screen capture of the game run in appendix A. The example is
there to showcase the mandatory features. You do not have to implement the exact same interface.
You are free to decide on the exact presentation and design of the GUI elements, as long as you follow the
basic principles of GUI design and OOP.
2.2. Optional Features
In addition to the mandatory features listed above, you might want to try to implement some of the
following features. These are only suggestions and will not award you any additional marks.
• Provide an interface element for changing the number of incorrect guesses allowed before the game
is lost. Perhaps even remember this setting, so that when the program is terminated and started
again, the last set setting is loaded.
• Provide an interface element for changing the word list being used.
• Allow the player to specify what kind of word would they like to be guessing (e.g., give me a 6-letter
word).
• Make the game playable in multiple languages.
• Implement the option to play the game in single player or multiplayer mode, where in multiplayer
mode two players with their own respective health bars can be playing turn-by-turn.
If you think of any additional features you would like to implement, feel free to do so. However, make
sure that your submission still covers all the mandatory features.
Deadline: April 5th – 5pm local time Page 2 of 6
F27SB: Software Development 2 CW2: GUI 2023/2024
3. Development Schedule and Code Organization
Like for the first coursework, you will have weekly or bi-weekly tasks. The deadlines mentioned here are
only suggestions but you will need to have at least one commit on GitLab for each of the tasks specified
below. If you do not have this commit history, you will receive 0 marks for this coursework. Start by
forking the following repository.
https://gitlab-student.macs.hw.ac.uk/f27sb_202**4/f27sb_202**4_coursework/gui_coursework
Note: The provided Run class is the only place of the program that should have a main method. This
class should not contain anything else but the main method and the main method should not contain any
code apart from the creation of an instance of your main window and the definition of the title, size, and
visibility of this main window.
3.1. Week 7-8 — suggested deadline: end of week 8
1. Implement a new class MainWindow which inherits from JFrame and will be the window where you
will show all the components of the game.
2. Create a class called HealthPanel which should inherit from JPanel. This GUI element displays the
number of incorrect guesses the player has made and the remaining amount of incorrect guesses that
can be made before the game is lost.
a) This class should contain a number of labels equal to the amount of incorrect guesses allowed.
To begin with, the labels should be green.
b) This class needs a method called removeLife which will be called to update the element once an
incorrect guess has been made. One of the green labels should be turned red. The return value
of the method can indicate if the player has run out of their allotment of incorrect guesses.
3. Add your HealthPanel to the MainWindow.
3.2. Week 9 — suggested deadline: end of week 9
1. Develop the capability to load the list of words from a file and the capability to select a random
word from that list.
2. Implement a class WordPanel which inherits from JPanel. This class should contain GUI elements
that allow you to display the guess prompt for the user, i.e., displaying the word to be guessed, with
the letters that have not been guessed replaced by some symbol.
a) The constructor should accept a String of the word that is to be guessed. Based on this word,
the text on a label in this class should be changed to show a number of underscores equal to
the number of letters of the word.
b) This class needs a method called guess which accepts a String of the letter that the user has
guessed and is called when a guess is made. The method changes the text of the label if the
guess is correct by replacing the corresponding underscore(s) with the guessed letter. The return
value of the method should indicate if the guess is successful or not.
c) There should also be a method for checking if the word is completely guessed.
3. Add the WordPanel to the MainWindow.
Deadline: April 5th – 5pm local time Page 3 of 6
F27SB: Software Development 2 CW2: GUI 2023/2024
3.3. Week 10 - 11 — suggested deadline: end of week 11
1. Create a class called ButtonPanel which inherits from JPanel. This should contain all the buttons
of all the letters of the English Alphabet. Hence, there will have to be 26 buttons in total. Do not
code each one individually! Have an array of buttons. Associate event handlers with the buttons so
that when a button is clicked, the corresponding letter can be extracted. Once a button has been
pressed it should be disabled or made invisible.
a) Add the ButtonPanel to the MainWindow.
b) Find a way to call the guess method of the WordPanel from within the event handler of the
buttons so that the guessed letter can be put into the method.
2. Finalise the game mechanic. Whenever a button is pressed, it needs to be checked if the player
guessed the entire word correctly or has run out of lives. Choose the best place to do all this in your
program based on convenience but also cohesion and coupling.
3. At the end of the game
a) Implement the display of the player’s victory or defeat messages. Provide a way for the player
to either play again or to end the game. You can do all this via dynamic interface changes or
via Dialogue boxes. Make sure that upon defeat, the entire word is revealed to the player.
b) Implement the functionality to reset the interface and start a new game with a newly selected
random word.
The deadlines are suggestions. Feel free to use this list to help you organise your development, and keep
in mind that you will need to make at least one commit per task mentioned. If you would like to deviate
from the class structure that is given here, you are welcome to do so. There are numerous ways one can
approach this task, and you are encouraged to explore your own ideas. However, keep in mind cohesion
and coupling.
4. Final submission
The final deadline is April 5th (Friday) at 5pm (local time). For your final submission, please submit
a link to your fork of the program on Canvas. Additionally, please download a zip file of your code from
GitLab and upload it to Canvas as well. To determine if a submission was on time, only the submission
on Canvas counts.
5. Marking Scheme
This coursework is worth [15 marks]. The division of marks is given below.
• [2 marks] A panel (e.g. HealthPanel) displaying the number of incorrect guesses and the number
of attempts remaining.
• [3 marks] A panel (e.g. ButtonPanel) consisting of the English alphabet as buttons which deactivate
or disappear upon being pressed.
• [3 marks] A panel (e.g. WordPanel) displaying the word to be guessed, incrementally revealing the
correctly guessed letters.
Deadline: April 5th – 5pm local time Page 4 of 6
F27SB: Software Development 2 CW2: GUI 2023/2024
• [4 marks] The overall game consisting of the three interacting panels, along with an appropriate
message appearing (allowing to end the game or start a new one) upon completion of a round. Full
marks will be given for correctly implemented game logic as described in section 2.1.
• [3 marks] Code quality. For full marks you need to have a tidy, well-structured, and well-commented
codebase which follows all the guidelines about good design, coupling, and cohesion from the lectures.
As mentioned earlier, you are welcome to deviate from the suggested class structure, in which case you
will be marked appropriately based on your work. You can then consider the above allocation of marks
an approximate weighting of the necessary components of your program.
6. Class Test
There will be a class test in Week 12 based on the work you have had to do in this coursework. In this
class test you will be asked questions about the three panels comprising the Hangman game you have
developed. In particular, this means you should consider all the tasks in section 3.1 and 3.2 along with
task 1 in section 3.3 to be examinable.
Deadline: April 5th – 5pm local time Page 5 of 6
F27SB: Software Development 2 CW2: GUI 2023/2024
A. Example Application Design
Here is an example of a possible GUI design. Please note that you do not have to copy this exact design.
A panel with seven labels. Each green label represents an available incorrect guess. As an incorrect guess is made, the rightmost green label turns
red.
A panel with 26 buttons, one for each letter of the
English alphabet. Buttons corresponding to the
already made guesses become invisible.
A label displaying the player’s goal. Correctly
guessed letters are displayed on their positions,
and the letters that have not yet been guessed
correctly are replaced by underscores.

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




















 

掃一掃在手機打開當前頁
  • 上一篇:COMP1721代寫、代做java編程語言
  • 下一篇:菲律賓跟團簽證申請要什么要求-經驗分享
  • ·代寫EECS 113、Python/Java程序代做
  • ·Comp 2322代寫、Python/Java程序代做
  • ·CSC420編程代寫、c/c++,Java程序代做
  • ·代寫SECU73000、Python,Java程序代做
  • ·代寫SECU73000、Python,Java程序代做
  • 合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          欧美成人a视频| 日韩网站在线看片你懂的| 国产精品免费看| 蜜臀91精品一区二区三区| 欧美中在线观看| 欧美国产一区二区在线观看| 亚洲国产精品久久91精品| 在线成人亚洲| 亚洲一区精品视频| 欧美亚洲系列| 欧美精品一区二区三区久久久竹菊| 免费h精品视频在线播放| 欧美日韩免费高清一区色橹橹| 国产精品色网| 亚洲日本久久| 久久精品亚洲乱码伦伦中文| 欧美一区二区三区四区高清| 亚洲午夜久久久| 欧美freesex8一10精品| 国产精品私房写真福利视频| 亚洲精品国产精品国产自| 校园激情久久| 国产精品久久久久免费a∨大胸| 国产日韩三区| 小黄鸭精品aⅴ导航网站入口| 欧美日韩亚洲一区| 亚洲欧洲在线一区| 久久视频一区| 伊人成综合网伊人222| 久久狠狠婷婷| 欧美精品一区二区蜜臀亚洲| 亚洲欧洲日韩综合二区| 美女视频黄免费的久久| 亚洲国产精品一区制服丝袜| 狂野欧美一区| 亚洲精品国偷自产在线99热| 欧美日本国产| 午夜视频在线观看一区| 国产欧美91| 裸体女人亚洲精品一区| 99精品视频免费全部在线| 欧美日韩在线直播| 午夜在线一区二区| 亚洲国产二区| 国产午夜精品在线| 欧美好骚综合网| 中国成人在线视频| 国内偷自视频区视频综合| 欧美成人午夜免费视在线看片| 亚洲第一页在线| 国产视频一区免费看| 免费黄网站欧美| 狠狠色狠狠色综合日日五| 久久精品首页| 99国产精品国产精品久久| 国产日韩欧美精品在线| 欧美成人一区二区在线| 香蕉久久夜色精品国产| 亚洲人体偷拍| 激情综合自拍| 一区二区三区在线观看欧美| 国产精品视频网| 国产精品激情av在线播放| 欧美韩日亚洲| 免费观看日韩| 久久久久久久激情视频| 欧美一区亚洲二区| 亚洲综合色噜噜狠狠| 在线中文字幕一区| 亚洲综合色丁香婷婷六月图片| 亚洲精品欧洲| 亚洲欧美日韩国产| 久久免费视频这里只有精品| 久久av在线| 久久亚洲欧美国产精品乐播| 久久国产婷婷国产香蕉| 久久久久久999| 欧美激情一二区| 国产精品美女一区二区在线观看| 欧美日本视频在线| 国产精品系列在线播放| 狠狠色丁香婷婷综合影院| 亚洲人成小说网站色在线| 亚洲一区二区免费| 欧美成人精品| 国产在线精品自拍| 亚洲国产成人午夜在线一区| 一区二区三区国产精华| 久久久国产成人精品| 欧美日韩视频专区在线播放| 国产片一区二区| 精品不卡一区| 亚洲国产导航| 欧美在线观看www| 久久亚洲精品伦理| 欧美日韩中文| 亚洲精品专区| 欧美精品成人| 洋洋av久久久久久久一区| 可以免费看不卡的av网站| 国产欧美日韩视频一区二区三区| 91久久久久久| 久久一区国产| 亚洲国产va精品久久久不卡综合| 亚洲欧美在线免费| 国产精品影片在线观看| 亚洲一区二区三区中文字幕在线| 欧美激情一区二区三区| 99视频精品免费观看| 欧美激情综合五月色丁香小说| 亚洲精品一级| 国产精品一区久久久| 欧美在线影院| 亚洲国产成人porn| 国产精品成人在线观看| 午夜亚洲激情| 亚洲国产专区| 国产精品日本一区二区| 校园春色综合网| 亚洲国产高清aⅴ视频| 欧美精品videossex性护士| 亚洲深夜福利网站| 一区二区三区在线免费观看| 欧美激情va永久在线播放| 一区二区欧美激情| 1024国产精品| 国产视频亚洲| 欧美视频中文字幕在线| 欧美在线免费观看亚洲| 宅男精品视频| 91久久综合| 激情av一区| 精品av久久707| 国产精品久久久久婷婷| 99精品视频一区| 国产一区二三区| 国产精品欧美风情| 欧美日韩国产一级片| 久久午夜国产精品| 久久精品国产清自在天天线| 亚洲综合欧美日韩| 亚洲午夜高清视频| 亚洲小视频在线观看| 一区二区欧美日韩视频| 亚洲欧洲另类| 亚洲最新视频在线播放| 亚洲精品黄网在线观看| 亚洲日本中文字幕免费在线不卡| 激情亚洲网站| 一本色道**综合亚洲精品蜜桃冫| 亚洲精品社区| 亚洲啪啪91| 亚洲欧美精品suv| 久久久99久久精品女同性| 亚洲免费网站| 性欧美8khd高清极品| 午夜在线a亚洲v天堂网2018| 久久久久久免费| 免费91麻豆精品国产自产在线观看| 理论片一区二区在线| 欧美日韩中文字幕精品| 国产精品每日更新在线播放网址| 国产精品永久免费观看| 最新国产拍偷乱拍精品| 午夜欧美精品| 欧美午夜视频网站| 亚洲高清资源综合久久精品| 亚洲伊人一本大道中文字幕| 久久久久久久综合| 国产女人水真多18毛片18精品视频| 亚洲国产日韩欧美在线图片| 欧美一区在线直播| 国产精品videossex久久发布| 1000部精品久久久久久久久| 欧美在线关看| 国产精品一区=区| 亚洲视屏一区| 国产精品免费区二区三区观看| 亚洲精品一区二区三区四区高清 | 老司机精品福利视频| 欧美日韩午夜| 亚洲激情黄色| 欧美精品综合| 一本色道久久加勒比88综合| 免费在线播放第一区高清av| 韩日视频一区| 欧美激情一区二区久久久| 亚洲成色www8888| 久久视频在线看| 日韩视频免费在线| 国产精品豆花视频| 久久精品国产综合| 亚洲国产精品一区| 欧美视频在线观看一区| 香蕉亚洲视频| 亚洲电影免费观看高清| 欧美午夜片在线观看| 久久久久久久999精品视频| 最近看过的日韩成人| 国产精品一区毛片|