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

        IEMS5731代做、代寫java設計編程
        IEMS5731代做、代寫java設計編程

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



        IEMS5**1 Software Design and Development (Fall 2024)
        Individual Course Project Specification - MasterMind
        Expected time: 10 hours
        Learning outcomes:
        1. To practise GUI buttons, labels and panels in Java.
        2. To experience the MVC pattern via a GUI MasterMind.
        Instructions:
        1. Do your own work. You are welcome to discuss the problems with your fellow
        classmates. Sharing ideas is great, and do write your own explanations.
        2. If you use help from the AI tools, e.g. ChatGPT, write clearly how much you obtain help
        from the AI tools. No marks will be taken away for using any AI tools with a clear
        declaration.
        3. All work should be submitted onto the blackboard before the due date.
        4. You are advised to submit a compressed file (.zip/.rar) containing your project. No
        reports are required in the individual course project.
        5. You only need to submit one project, containing all your work (completed tasks).
        6. No submissions for the individual course project will result in failing the course.
        7. If your work is not compilable or executable, you will receive zero marks.
        8. Due date: 27th November, 2024 (Wednesday) 23:59
        Summary of the Tasks:
        You are advised to implement the MasterMind based on the steps below (capped by 100%).
        1. Basic information (10%)
        2. Background of the panel (10%)
        3. Text color and text style (20%)
        4. Pop-up game ended panel (20%)
        5. JUnit tests on SimpleButton.java (20%)
        6. Image icons and pegs (20%)
        7. More types of pegs (20%)
        1
        Summary of the Project Skeleton:
        In the provided project skeleton, it is a complete MasterMind game written by Peter Mitchell
        (source: https://github.com/Squirrelbear/MasterMind/tree/main/MasterMind/src). It means
        that your project is a compilable and executable one. If your submitted work is not
        compilable, or is not executable, you will not receive any scores from the individual course
        project.
        You need to use the provided skeleton. If you rewrite the whole MasterMind, or put
        everything into a big class, you will not receive any scores from the individual course project.
        There are eight classes in this project skeleton. MasterMind.java is the main program.
        SimpleButton.java creates the color pegs. The image below shows four simple buttons
        (pegs). If the pegs are on the lowest level, clicking the peg changes its color. The order of
        the color change is: white → black → red → yellow → blue → green → white. If the pegs are
        not on the lowest level, the color of the pegs are fixed and unchangeable.
        PuzzleCombination.java is a collection of four pegs, so the image above is a puzzle
        combination panel.
        SimpleTextButton.java creates the submit button.
        ResultPanel.java shows a pair of strings, including the hints on the number of combination
        positions with correct colour and position.
        AttemptPanel.java creates a single line of game trial, including the attempt number, puzzle
        combination panel and result panel.
        2
        GameEndedPanel.java represents an overlay dialogue that shows a victory or loss
        message when the game has ended. The player loses after making 12 incorrect trials.
        Correct answer is displayed on the game ended panel as well. After clicking “R”, the game
        will generate a new answer and restart the game.
        GamePanel.java controls the game states. It includes:
        ● Playing: allows mouse input to play the game.
        ● GameWon: When a correct combination is entered and submit is hit.
        ● GameLost: When the maximum number of attempts has been made.
        Task 1: Basic information (10%)
        In this task, you should include all basic components of your project, including:
        ● The submitted project can be executed on eclipse without any errors.
        ● Your name and student ID are filled in the comment of the MasterMind.java.
        ● The declaration of academic honesty and use of AI tools is filled in the comment of
        the MasterMind.java.
        ● The title of the application is updated to your student ID.
        3
        Task 2: Background of the panel (10%)
        In this task, you are going to update the background of the panel:
        ● If your student ID is an odd number, the background color is changed to pale brown
        (Wooden style)
        ● If your student ID is an even number, the background color is changed to light beige
        (Ocean style)
        ● Hint: You can look for the method setBackground() in the constructor of
        GamePanel.java.
        4
        Task 3: Text color and text style (20%)
        In this task, you are going to update the text color and text style:
        ● Text within the same attempt panel should have the same text color (including
        attempt number and hint strings).
        ● Different attempt numbers should have different text colors.
        ● The two hint strings in the same attempt panel should have different text styles.
        ● Hint: focus on AttemptPanel.java and ResultPanel.java for this task.
        5
        Task 4: Pop-up game ended panel (20%)
        In this task, you are updating the implementation of the game ended panel from a drawing
        on the game panel to a drawing on a pop-up panel.
        In addition, add a restart button (JButton) on the pop-up panel so that:
        ● After clicking the restart button, the game is reset with a new solution.
        ● The original mechanism (clicking “R” on the keyboard) does not work anymore.
        Task 5: JUnit tests on SimpleButton.java (20%)
        In this task, you are going to perform unit testing on SimpleButton.java:
        ● Create a new JUnit class called SimpleButtonTest.java.
        ● Design and write a test case for the method isClicked(int, int).
        ● Design and write another test case for the method getActionCode().
        ● Use 3A principle in writing the test cases.
        ● Explain your test cases using comments.
        ● Give meaningful method names to the test cases.
        6
        Task 6: Image icons and pegs (20%)
        In this task, you are going to use the image button to replace the color button for the pegs.
        ● Let n be the last two digits of your student ID, for example, if your student ID is
        1155123456, n = 56.
        ● If n is divisible by 3, then use gemstone icons to replace the buttons, for example,
        emerald, pearl, ruby, … etc.
        ● When n is divided by 3, the remainder is 1, then use fruit icons to replace the color
        buttons, for example, apple, orange, banana, … etc.
        ● When n is divided by 3, the remainder is 2, then use flower icons to replace the color
        buttons, for example, sunflower, lotus, lily, … etc.
        7
        Task 7: More types of pegs (20%)
        This task is challenging.
        In this task, you are going to add one more type of the peg to the MasterMind.
        ● The type of pegs is updated from {white → black → red → yellow → blue → green →
        white} to {white → black → red → yellow → blue → green → purple → white}.
        ● If you completed task 6, you can use the image icon to replace the purple peg.
        ● Besides the SimpleButton.java (model and view), you may need to update the
        GamePanel.java (controller).
        ● Reading others' code is tough. And you are going to change others’ code.
        < End of Specification >
        8
        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




         

        掃一掃在手機打開當前頁
      1. 上一篇:代寫CPT111、Java語言編程代做
      2. 下一篇:ECE 498代寫、代做Python設計編程
      3. 無相關信息
        合肥生活資訊

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

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

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

        日韩精品少妇无码受不了| 国产精品久久久久天天影视| 国语自产精品视频在线第| 国内精品久久久久久麻豆 | 日韩一品在线播放视频一品免费| 精品一区二区三区自拍图片区| 四虎国产精品永久地址入口| 久久99热国产这有精品| 国产剧情精品在线| 伊人久久精品亚洲午夜| 精品国产柚木在线观看| 国产精品美女网站| 国产精品自在在线午夜| 久久久久琪琪去精品色无码| 青草国产精品视频。| 国产成人精品久久久久 | 国产精品高清全国免费观看| 日韩精品视频一区二区三区| 日韩精品一区二区三区毛片| 国产精品videossex白浆| 成人精品视频一区二区三区尤物 | 精品性高朝久久久久久久| 久久精品加勒比中文字幕| 精品中文字幕一区在线| 成人H动漫精品一区二区| 日本伊人精品一区二区三区| 国产精品污WWW一区二区三区| 国产在线精品无码二区二区| 精品国内在视频线2019| 亚洲精品无码专区久久久| 精品无码中出一区二区| 国内精品自产拍在线观看| 99国产精品热久久久久久 | 日韩在线视频不卡| 精品无码人妻一区二区三区18| 国产精品无码国模私拍视频 | 亚洲日韩激情无码一区| 亚洲精品宾馆在线精品酒店| 亚洲国产精品不卡在线电影| 色婷婷色综合激情国产日韩| 久久青草精品38国产免费|