国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

IFN563編程代做、代寫C++程序語(yǔ)言

時(shí)間:2024-08-25  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



IFN563 Project Specification
Assessment 1: Preliminary design
Assessment 2: Final design and implementation
Overview
The goal of this project is to gain practical experience in object-oriented software
development through object modelling with design diagrams and applying software design
principles and patterns. You will demonstrate this knowledge by creating and documenting
an object-oriented design and implementing it using C# for a real-world motivated
problem.
To imitate real world software development practices, you can choose to complete this
project either individually or in a team. While you can talk about the project with tutors and
peers outside of your team, the submissions must be your own original work. Copying the
work of others is not tolerated at QUT and submissions will be checked for code
plagiarism against online repositories. In addition, the use generative AI tools such as
ChatGPT, including programming/coding assistants such as CoPilot, is strictly forbidden
for all assessment tasks in IFN563 and will be considered an act of major academic
misconduct.
Every student must form and register a project team of **4 members on the IFN563
Canvas (from the "People" section select the "Groups" tab) by the end of Week 2. Only
one team member needs to submit the assessments (i.e., not everyone in the team needs
to submit). Each team will receive a single grade for this project.
Description
You are required to develop an extensible framework for many different two-player board
games. To demonstrate that your framework can be easily adapted to different games,
Weight: 30%
Due: 9 August (Week 3 Friday)
Weight: 70%
Due: 30 August (Week 6 Friday)regardless of whether you work individually or in a team, your design (all design
diagrams) must include all the following games in the same software:
To demonstrate the feasibility and effectiveness of the design, you must implement the
games that correspond to your design using C# on .NET 8.
Requirements
Your design should extract as many commonalities as possible from the different games
so that the framework is extensible and reusable for a wide variety of board games.
Your system should cater for different modes of play, including:
With human players, the system must check the validity of moves as they are entered.
With computer players, the system can randomly select a valid move.
Games can be played from start to finish, and should be able to be saved and restored
from any state of play (i.e. a save file). A game should be replayable from any position after
being loaded from a save file.
During a game, all moves made by both players should be undoable and redoable (i.e. the
full history of moves are tracked). But the history of the moves does not have to be saved
into a save file. That is, immediately after loading the saved state from a file, undo and
redo operations are not available (until new moves have been made).
You should provide at least a primitive in-game help system to assist users with the
available commands (also give some examples if they are not obvious to use).
Comments on requirements
Notakto, also known as Neutral or Impartial Tic-Tac-Toe (Wikipedia). Two players take
turns placing the same piece (e.g. an X ) on a finite number of 3 × 3 board (in this
project, we use three boards). The game ends when all three boards contain a threein-a-row
of X s, at which point the player to have made the last move loses the game.
Gomoku, also known as Five in a Row (Wikipedia). Two players take turns placing two
types of pieces (e.g. an X and an O ) on a 15 × 15 board (you can use a smaller board
if that helps the UI). The winner is the first player to form an unbroken line of five
pieces of their colour horizontally, vertically, or diagonally.
Students working individually or teams of two members must implement Notakto.
Teams of three or four members must implement both Notakto and Gomoku.
Human vs Human
Computer vs HumanThe requirements are what you should aim to achieve in your project. Even if you do not
implement all features, you should at least cover all requirements in your design.
Some requirements may be vague and open to interpretation. As long as you clearly state
any assumptions you make in your design report, we will accept reasonable
interpretations.
The important aspect is that your design for the core structure and functionality of the
two-player board game meets the requirements, in a clear and easily understandable way.
You should steer your design towards a general framework and consider your
implementation as a proof-of-concept of your design, rather than a fully-featured, highly
intelligent game-playing program.
Your implementation must be a C# console application on .NET 8 and provide a textbased
command-line interface (e.g. using either ASCII or Unicode) of the game as it is
played. Some marks have been allocated for usability, so be sure that whatever interface
you use, the commands are simple and clear. The following screenshot shows a simple
example of playing a game of the classic Tic-Tac-Toe by two human players, displayed in
Unicode.Submissions
Just like any design, OO design often is an iterative process and is learnt from experience.
In this unit, students have the chance to gain first-hand experience of OO design by going
through a supervised design process: draft a preliminary design, receive feedback on the
preliminary design, improve the final design, implement and evaluate the final design.
There are two assessments from this project, one for the preliminary design (by the end of
Week 3) and another for the final design report and implementation (by the end of Week
6). All submissions are to be made via the IFN563 Canvas website from the "Assignments"
section.
Assessment 1: Preliminary design
The purpose of the preliminary design tasks is to provide a checkpoint on your progress
early and allow you to receive feedback and improve the overall design of the project in
the final design report.
These design diagrams should record your software design based on the project
requirements. No implementation detail should be provided in the submission. You must
make sure your design diagrams are clean and readable.
Design patterns are optional in the preliminary design. They will not be part of the marking
criteria.
You should only submit one PDF document up to five pages in length to the Canvas,
containing the following design diagrams:
Assessment 2: Final design and implementation
For this final assessment, you must submit two separate files: a PDF file of the design
report and a ZIP file containing all your C# project files. The submission link will open in
Week 6.
A high-level CRC classes design of objects in your program (one or two pages) from
Week 2 Workshop;
A single class diagram including all required games in the same software (one or two
pages) from Week 2 Workshop;
An object diagram displaying a snapshot of the program memory at a particular time
during the program execution (one or half page) from Week 3 Workshop;
A sequence diagram describing a significant scenario and exercise some important
functionalities of the software (one or half page) from Week 3 Workshop.Final design report
You should only submit one PDF document with no more than 10 pages in length (A4 page
size with 2cm in margins on all sides; 12-point Times New Roman or 1**point Arial font or
something equivalent, and in single space).
Your report should include:
Note that you will be marked for the simplicity and elegance of design. It is in your best
interest to make your design as neat, clear and understandable as possible. In general,
your detailed design should speak for itself. Only include explanations of your design
where your intentions may not be clear, but this should mostly be covered by the use and
justification of design principles and patterns as requested above.
Implementation source code
You must submit a working implementation including full C# project source code for .NET
8. You should zip all your project files and upload this ZIP file onto the IFN563 Canvas
website.
You do not need to provide a user guide or tutorial, but in your design report, you must
clearly document how your program can be executed.
a statement of completion (half page), clearly declaring the requirements that have
and haven't been implemented. This declaration must be complete and accurate, in
order to receive marks for the "Fulfilment of requirements" in the marking criteria.
a list of all team members (full names, student numbers and emails) and a declaration
of contributions of each of your team members (half page). Please note that any
team member who didn't contribute substantially to the project will not receive any
mark.
an overview of your final design (one page). You should provide a short explanation of
your overall design and a brief summary of changes from the preliminary design
including both what and why changes were made.
detailed final design documents (at most three pages), including a class diagram, an
object diagram and a sequence diagram. You don't need to provide CRC cards
because they are reflected in your final class diagram.
identification and a brief justification of design principles and patterns that have been
used (one or two pages). For each design pattern, you should clearly indicate the
participating classes and important operations (in design diagrams) and justify
their use in your design with a few sentences.
a brief document on how your program can be executed (at most one page).
a short summary of classes/interfaces (one page) to be reused from existing
libraries and frameworks. For example, if you use the Collections library, just list the
classes you will use, without any further explanation.Your class implementations must be strictly faithful to the documented class designs
in your final design report. That means the classes in the source code must correspond
to the same classes defined in the class diagram, including their properties, operations
and relations to other classes.
The submitted project files will be compiled and executed on QUT lab computers with
.NET 8. You must make sure that your submitted code can be compiled and run
properly with .NET 8.
Unfaithful class implementations will receive zero for implementation. Uncompilable or
inexecutable source code cannot be marked and will receive zero for implementation. To
confirm the version of .NET on the computer, simply open a terminal and run the following
command:
To check that your project code can be compiled and executed on .NET 8, open a terminal
in the folder containing the project file ( .csproj ) and run the following commands:
dotnet --version
dotnet clean
dotnet run

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp





 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代做QBUS3330、c++,Python編程設(shè)計(jì)代寫
  • 下一篇:COMP4620代做、代寫Java/Python程序語(yǔ)言
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

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

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品第一区| 欧美久久精品午夜青青大伊人| 国产精品欧美风情| 日本免费高清不卡| 91精品久久久久久久久久入口| 久久99久久亚洲国产| 精品午夜一区二区| 国产精品免费视频一区二区| 人妻无码久久一区二区三区免费| 国产伦精品一区二区三区照片 | 国产精品嫩草在线观看| 日韩欧美激情一区二区| 国产精品99久久久久久久久| 亚洲最新免费视频| 福利视频久久| 伊人天天久久大香线蕉av色| 国产伦精品一区二区三区视频免费| 久久五月情影视| 欧美亚洲激情在线| 国产精品日韩一区二区免费视频| 欧美视频小说| 国产精品日韩三级| 国内成人精品视频| 欧美成人全部免费| 国产精品一区二区三区免费观看| 久久99精品久久久久久青青91| 国产亚洲精品久久久久久久 | 精品人妻少妇一区二区 | 欧美成在线观看| 精品少妇一区二区三区在线| 国产精品免费看久久久无码 | 久激情内射婷内射蜜桃| 欧美综合国产精品久久丁香| 久久精品视频va| 国产偷久久久精品专区| 中文字幕欧美日韩一区二区| 91免费精品国偷自产在线| 色噜噜狠狠色综合网| 久久久久久久一| 激情内射人妻1区2区3区| 国产精品福利小视频| 国产色婷婷国产综合在线理论片a| 久久久久久国产精品美女| 国产精品揄拍500视频| 亚洲精品一区二区三区av| 久久精品日韩| 男人天堂av片| 综合一区中文字幕| 68精品国产免费久久久久久婷婷| 日韩亚洲欧美精品| 国产精品欧美在线| 国产精品一区专区欧美日韩| 欧美一区二区色| 国产精品少妇在线视频| 国产精品一久久香蕉国产线看观看| 亚洲不卡中文字幕无码| 日韩在线播放视频| 国产熟人av一二三区| 一本一道久久久a久久久精品91| 国产大片精品免费永久看nba| 欧美福利精品| 亚洲一二三区精品| 精品国产一区二区三区久久狼黑人| 国产偷人视频免费| 日本三级中文字幕在线观看| 久久五月天综合| 久久久99精品视频| 国产一级片91| 日本电影一区二区三区| 精品国产乱码久久久久久久软件 | 麻豆精品传媒视频| 亚洲色欲久久久综合网东京热| 久久99精品久久久久久三级| 国产一级做a爰片久久毛片男| 日本免费一区二区三区视频观看| 精品国产91亚洲一区二区三区www| 69av在线播放| 国产午夜福利在线播放| 欧美综合激情| 婷婷久久五月天| 九九精品视频在线| 精品国产一区久久久| 91黄在线观看| 国产日产欧美a一级在线| 日韩免费中文字幕| 在线观看欧美一区| www.欧美免费| 91精品久久久久久蜜桃| 国内精品视频一区| 日本高清视频精品| 亚洲一区二区三区av无码| 久久亚洲欧美日韩精品专区| 日韩在线视频播放| 久久久免费精品视频| 国产欧美丝袜| 欧美乱大交xxxxx潮喷l头像 | 国产做受69高潮| 日本a在线免费观看| 亚洲v日韩v欧美v综合| 综合久久国产| 成人9ⅰ免费影视网站| 久久久久久久久影视| 国产精品亚洲精品| 免费国产一区| 欧美精品一区二区三区在线看午夜 | 欧美激情久久久久| 国产精品久久久久999| www.日韩av.com| 国产不卡一区二区在线播放| 91精品网站| av一区二区在线看| 国产精品一区二区三区久久久| 日韩欧美猛交xxxxx无码| 亚洲免费久久| 亚洲国产精品久久久久久女王| 美女黄色丝袜一区| 国产精品初高中精品久久| www欧美日韩| 国产成人一区二区三区别| 91精品国产综合久久香蕉的用户体验| 国产日韩在线播放| 国产日韩亚洲精品| 国产日韩欧美精品在线观看| 国产专区一区二区| 国产在线视频一区| 国产精选一区二区| 成人国内精品久久久久一区| 国产欧美日韩一区二区三区| 国产乱码精品一区二区三区卡| 国产欧美亚洲视频| 成人av网站观看| 91精品视频免费看| 国产成人一区二区三区小说| 日韩在线欧美在线| 国产精品免费久久久| 久久不射热爱视频精品| 久久国产精品久久久| 中文字幕欧美日韩一区二区| 亚洲一区二区免费在线| 日本一区二区三区在线视频| 日韩精品xxxx| 国产综合在线看| 国产中文字幕在线免费观看| 国产伦精品一区二区三区精品视频 | 国产乱码精品一区二区三区日韩精品| 成人国产精品日本在线| 91精品国自产在线观看| 久久久久久久久久国产| 国产精品视频成人| 中文精品一区二区三区 | 97国产suv精品一区二区62| 91国产在线免费观看| 久久久久久九九| 欧美伦理91i| 亚洲 自拍 另类小说综合图区| 日日骚一区二区网站| 欧美成人综合一区| 国产精品中文在线| 久久黄色免费看| 国产精品久久久久久久久| 欧美激情极品视频| 日韩欧美一区三区| 国内揄拍国内精品| 成人精品在线观看| 日韩中文字幕亚洲| 久久69精品久久久久久久电影好| 色综合久久久久久中文网| 欧美激情一区二区久久久 | 午夜精品久久久久久久99热浪潮| 日韩亚洲不卡在线| 国产天堂在线播放| 久久一区免费| 国产精品流白浆视频| 亚洲欧美国产一区二区| 人人妻人人澡人人爽欧美一区 | 99亚洲国产精品| 久久久精品日本| 中文字幕一区二区三区在线乱码 | 亚洲国产精品日韩| 欧美国产综合视频| 97精品久久久中文字幕免费| 色妞色视频一区二区三区四区| 欧美激情网站在线观看| 日韩精品欧美在线| wwwwww欧美| 日本www在线播放| 欧美中日韩在线| 国产盗摄xxxx视频xxx69| 亚洲国产精品久久久久久女王 | 精品免费日产一区一区三区免费| 欧美图片激情小说| 久久久久久香蕉网| 日本国产欧美一区二区三区| 久久国产亚洲精品无码| 精品麻豆av| 欧美中日韩在线| 久久视频这里有精品| 久色乳综合思思在线视频| 日本欧美精品在线| 啊啊啊一区二区|