日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

代寫WM908 Programming and Fundamental Algorithms 程序
代寫WM908 Programming and Fundamental Algorithms 程序

時間:2025-10-31  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Coursework Brief and Front Sheet flT
This front sheet for assessments is designed to contain the brief, the submission instructions, and the actual student submission for any WMG assessment. As a result, the sheet is completed by several people over time and is therefore split up into sections explaining who completes what information and when. Yellow highlighted text indicates examples or further explanation of what is requested, and the highlight and instructions should be removed as you populate ‘your’ section.
This sheet is only to be used for components of assessment worth more than 3 CATS (e.g. for a 15 credit module, weighted more than 20%; or for a 10 credit module, weighted more than 30%).


To be completed (highlighted parts only) by the Programme Administration after approval and prior to issuing of the assessment; to be consulted by the Student(s) so that you know how and when to submit:


Date set    15/10/2025

Submission date (excluding extensions)    10 November 2025 by 12 pm UK time

Submission guidance    Tabula Link

Marks return date (excluding extensions)    8/12/2025



To be completed by the Module Leader/Tutor prior to approval and issuing of the assessment; to be briefed to the Student(s) so that they understand the Coursework Brief, its context within the module, and any specific criteria and advice from the tutor:


Module Title & Code    WM908 Programming and Fundamental Algorithms
Component Title    Project
Module Leader    Kurt Debattista
Module Tutor    Kurt Debattista
Assessment Title    Programming assignment and report
Weighting (%)    100%







Coursework Brief



Assignment Brief
This assignment is to develop a small 2D game using the provided GamesEngineeringBase framework. This framework will be presented in an in-class tutorial. The program needs to be developed in C++, and the code submitted with a report, details of which are outlined below. An executable should also be submitted. 
Please read the entirety of the assignment before attempting any part of it, as thinking about the overall solution from the start will be beneficial for some of the later stages. 
Show your code for all parts, even if you do not get the final result. If you cannot provide code, at least explain your reasoning around the problem and how you would solve it. Marks will be given for both code and explanations – more marks will be allocated for proper code that works.  If you cannot provide the full functionality at any stage, provide part of it but state which part was provided. 
Provide comments in the code – the more readable it is the easier it is to understand and allocate marks. Please include Visual Studio solutions and all the source code, or a link to a GitHub Repository. If you wish to use another compiler and IDE you are permitted to, but please contact the module tutor before you do so, such that arrangements for marking are made in a timely fashion.
Make sure you do not copy any code from the internet or online resources or from any other students. This includes the use of AI to generate code. 
Use of the Standard Template Library data structures (such as vector, list, map) is not permitted for this assignment.  No external APIs can be used either. You are allowed to use and build upon code we developed in class including any tutor provided solutions. 
This assessment will help you re-enforce the learning from the module. You will need to understand how to use C++ to develop games and provide solutions to be used directly as part of the game. 

1Overview
This section provides an overview of the game and the components which should be included. The game is a 2D survivor like game (like Vampire Survivors). The game logic is expected to be relatively simple, and to be built around a core game loop with simple updating of the player, game world, and Non-Player Characters (NPCs).
When designing solutions think of the efficiency of the solution and which data structures and algorithms best help support the solution. Ensure these are discussed in the report with a discussion on complexity. 

2Game (85 Marks)

This section carries a total of 85 marks. However, the individual aspect of the game is evaluated on the report of it (see Section 3 Report). 
This game should be built on the core game systems developed during tutorial sessions and must include implementations of the following:
1.A virtual camera that follows the player-controlled (hero) character at its centre (10 Marks)
2.A number of NPCs that attack the character (17 Marks)
Generated randomly outside of camera view (2 Marks)
Their frequency increases over time (2 Marks)
At least 4 different character types that differ in appearance, health and speed (5 Marks)
General NPC behaviour that directs them directly towards the player (4 Marks)
One NPC behaviour makes it static but launches projectiles (4 Marks)
3.Collision system (12 Marks)
Hero vs NPCs (3 Marks)
Hero vs impassable terrain (3 Marks)
Hero projectiles vs NPCs (3 Marks)
NPC projectiles vs Hero (3 Marks)
Clearly demonstrate how NPCs are implemented and handled
4.The hero attacks the NPCs with at least two different types of attack (12 Marks)
A linear attack that targets closest NPC (has cooldown) – the attack runs automatically all the time (3 Marks)
A special area of effect (AOE) attack that targets the top N max health NPC – triggerred by hero via separate button (can be instantanous but has significant cooldown).  (7 Marks)
A powerup that increases either the speed of the linear attack and number N of NPCs targetted by the AOE (2 Marks)
5.A tile-based method (composed of a number of 32x32 pixel tiles) for displaying the background (16 Marks)
At least four different tile types (ie terrain types). One of which is impassable (eg water) for the hero. NPCs can traverse.  (5 Marks)
Data driven level loading, i.e. load the game world’s tiles and map from a custom file format (5 Marks) 
A version of the world which is infinite (with repeating tiles) (3 Marks)
A version with a fixed boundary (larger than what the screen displays) (3 Marks)
6.Game level runs for two minutes (7 Marks)
Show at least two levels with different maps (one infinite, one fixed) (5 Marks)
Score and FPS shown at the end (or during) (2 Marks)
7.The ability to save the current state of the game (and save to a file) at any point and reload it at the same exact point (11 Marks)
Please note that we will not be marking the game, rather we will mark the implementations of the above methods. Please use the report to explain your different solutions. You can show screenshots abstracted from the gameplay e.g. an image showing your collision detection system.
3Report (15 marks)

The report should be structured as follows:
-Introduction which introduces your game, and the technologies used
-A section on each of the technologies implemented (1-6 from Section 2) which contains details about how the technique works and how you implemented it. Half of this section should cover theory; half should cover the relevant implementation details for each method. You should include details here even if your implementation is partially complete.
-A short evaluation section – measure the FPS / ms per frame and see how this varies as the level complexity increases
-Limitations which cover the things you tried that did not work or if there are bugs that you know about but could not fix
-Conclusion which summarises the report in a single paragraph
Also add to the report a small section on how you would have approached this project differently if you had to start from scratch after this learning experience.
You are expected to include screenshots of the game running and implementations of game systems. For this you can use an application such as the “snipping tool” in Windows to directly paste the results in your document – this is very quick. Windows 10 has a new screen capture facility using Shift+MSkey+S. Similarly, most of the latest versions of Mac OSX permit the use of screen capture via shift-cmd-4 (various numbers provide different functionality). 
Do not add the code to the appendix but provide it separately and in a format such that it can be compiled directly (see Section 1). 
Important: All samples of code shown in the text need to be in text format, not a screen capture from your editor. Code in screen captures will be ignored.


Assessment Length/
Word count
    4000 words. Space for images and code is allowed and considered separate from the total word count. 
ARTIFICIAL INTELLIGENCE (AI)
AI Scale 
(Please copy and paste this tick ‘✓’ into the appropriate box) 
    
    NO AI    You must not use AI at any point during the assessment. 
You must demonstrate your core skills and knowledge.
    

✓    AI PLANNING    You may use AI for planning, idea development, and research.
Your final submission should show how you have developed and refined these ideas.
    
    AI COLLABORATION    You may use AI to assist with specific tasks such as drafting text, refining and evaluating your work.
You must critically evaluate and modify any AI-generated content you use.
    

    FULL AI    You may use AI extensively throughout your work either as you wish, or as specifically directed in your assessment.
Focus on directing AI to achieve your goals while demonstrating your critical thinking.
    
    AI EXPLORATION    You should use AI creatively to solve the task.
AI Policy    Unauthorised and undisclosed use of Artificial Intelligence may result in a finding of Academic Misconduct and an academic sanction under Regulation 11. Guidance for WMG student on the use of Artificial Intelligence can be found here. 

Module Learning Outcomes (numbered)    1.Master a sound, conceptual understanding of the theory and concepts of programming and fundamental algorithms and data structures. 
2.Program effectively and independently in a high-level programming language at an intermediate to advanced level. 
3.Take, straightforward to complex, algorithmic concepts, and implement them correctly.
4.Autonomously distinguish the right solution for a given problem from amongst a set of algorithmic and programming tools.
Learning Outcomes assessed in this assessment (numbered)    1.Master a sound, conceptual understanding of the theory and concepts of programming and fundamental algorithms and data structures. 
2.Program effectively and independently in a high-level programming language at an intermediate to advanced level. 
3.Take, straightforward to complex, algorithmic concepts, and implement them correctly.
4.Autonomously distinguish the right solution for a given problem from amongst a set of algorithmic and programming tools.
Learning Outcomes    Please remember that you must meet all Learning Outcomes to achieve a pass mark.
Late Submission Policy    If work is submitted late, penalties will be applied at the rate of 5 marks per University working day after the due date, up to a maximum of 10 working days late. After this period, the mark for the work will be reduced to 0 (which is the maximum penalty). “Late” means after the submission deadline time as well as the date – work submitted after the given time even on the same day is counted as 1 day late.

Resit Policy    If you fail this module and/or component, the University allows students to remedy failure (within certain limits). Decisions to authorise resits are made by Exam Boards. These will be issued at specific times of the year, depending on your programme of study. More information can be found from your programme office if you are concerned.

If this is already a resit attempt, this means you will not be eligible for an additional attempt. The University allows as standard a maximum of two attempts on any assessment (i.e. only one resit). Students can only have a third attempt under exceptional circumstances via a Mitigating Circumstances Panel decision.
Retention of Drafts & Records    Please ensure that you retain any drafts of your work, associated notes, records of research should they be required by the marker or moderator.  You do not need to submit these, but they should be retained until after the end of your registration.



Where to get help: 

1.Talk to your module tutor if you do not understand the question or are unsure as to exactly what is required. 
2.There are also numerous online courses provided by the University library to help in academic referencing, writing, avoiding plagiarism and a number of other useful resources. https://warwick.ac.uk/services/library/students/your-library-online/
3.If you have a problem with your wellbeing, it is important that you contact your personal tutor or wellbeing support services https://warwick.ac.uk/services/wss


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

掃一掃在手機打開當前頁
  • 上一篇:2025年10月份更新拼多多改銷助手小象助手多多出評軟件
  • 下一篇:代寫RBE104TC C Programming Language程序 代寫C語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體 / 電磁 / 光學CAE代做
    仿真分析咨詢外包服務-結構 / 熱 / CFD流體
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
  • 豆包網頁版入口 Trae 目錄網 排行網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        久久精品久久精品亚洲人| a√免费观看在线网址www| 欧美日韩在线第一页| 久久夜色精品国产噜噜亚洲av| 77777_亚洲午夜久久多人| 色妇色综合久久夜夜| 欧美日韩视频在线| 日本视频久久久| 精品色蜜蜜精品视频在线观看| 日韩欧美中文视频| 中文精品在线观看| 亚洲综合在线电影| 国产欧美日韩成人| 欧美不卡视频一区发布| 国产亚洲欧美色| 国产精品一区二区三区免费观看| 欧美日韩在线不卡视频| 国产91一区| 精品国自产在线观看| 国产日韩成人精品| 91精品国产手机| 国产拍揄自揄精品视频麻豆| 免费视频一区三区| 日韩久久久精品| 亚洲一区精品在线| a级在线免费观看| 国内精品不卡| 精品中文字幕在线| 欧美三级视频在线| 精品中文字幕在线播放| av免费网站在线观看| 深夜福利亚洲| 国产乱码午夜在线视频| 国产亚洲人成a一在线v站| 国产 日韩 欧美 综合| 国产三级免费观看| 午夜少妇久久久久久久久| 成人无遮挡免费网站视频在线观看| 中文字幕视频在线免费欧美日韩综合在线看| 国产性一级片| av一区在线观看| 欧美日韩乱国产| 中文字幕精品在线播放| 国产一区深夜福利| 日韩视频一区二区在线观看| 国产无套粉嫩白浆在线2022年| 天天综合天天综合| 日韩欧中文字幕| 美女黄a一级视频| 欧美三级日韩在线| 中文欧美日韩| 日韩午夜中文字幕| av高清一区| 国产亚洲短视频| 国产欧美日韩精品在线| 91精品国产自产在线观看永久∴| 欧美在线观看视频一区| 久久精品久久精品国产大片| 一区二区视频国产| 热久久精品国产| 久久婷婷国产| 欧美久久一二三四区| 亚洲羞羞网站| 97久久精品午夜一区二区| 国产最顶级的黄色片在线免费观看| 国产丝袜欧美中文另类| 婷婷中文字幕在线观看| 中文字幕亚洲一区二区av在线| 欧美日韩三级一区| 国产一区成人| 中文字幕欧美日韩在线不卡| 国产在线黄色片| 99pao成人国产永久免费视频| 91精品久久久久久蜜臀| 精品av中文字幕在线毛片| 欧美激情视频一区二区三区在线播放| 欧美大片在线观看一区| 日韩欧美国产一二三区| 在线看av的网址| 久久人人88| 精品中文在线| 亚洲高清视频在线| 精品欧美日韩精品| 在线日韩中文字幕| 一区二区三区鲁丝不卡| 久久韩国免费视频| 91国内精品在线视频| 欧美国产日韩综合| 午夜伊人狠狠久久| 天堂精品高清1区2区3区| 日韩三级精品电影久久久| 国产嫩草影院久久久久| 色猫猫国产区一区二在线视频| 欧美日韩在线综合| www.狠狠| 精品欧美不卡一区二区在线观看| 一级片免费网站| 精品国产免费观看一区| 欧美日韩在线精品一区二区三区激情综| 国产午夜精品一区二区三区视频| 五月天久久比比资源色| 亚洲精品中文字幕乱码三区| 午夜高潮免费视频| 久久精品最新免费国产成人| 欧美日韩国产影片| 日韩一二三四区| 欧美日韩在线三级| 欧美日韩在线视频一区| 久久精品蜜桃| 日韩亚洲欧美中文三级| 日韩精品欧美在线| 久久激情一区| 亚洲一区中文字幕在线观看| 日韩精品一区二区三区视频播放| 日韩欧美中文第一页| 日韩三级精品| 亚洲欧洲日韩在线| 欧美三级日本三级少妇99| 国产欧美日韩中文字幕在线| 亚洲va韩国va欧美va精品| 中文字幕精品在线播放| 日韩专区中文字幕| 天堂在线视频中文网| 精品乱子伦一区二区| 日本黄色一区二区| 中文天堂在线一区| 亚洲热在线观看| 欧美日韩国产91| 亚洲一区精品在线| 国产欧亚日韩视频| 日韩在线精品视频| 欧洲精品在线一区| 日韩精品高清不卡| 一区二区三区在线免费| 欧美不卡视频一区发布| www 日韩| 中文字幕日韩在线视频| 国产福利久久久| a天堂中文在线官网在线| 欧美日韩精品在线| 欧美精选午夜久久久乱码6080| 国产精品一区二三区| 亚洲va韩国va欧美va精品| 国产无遮挡在线视频免费观看| 日本不卡高清视频一区| 日韩专区中文字幕| 欧美日韩国产页| 国产中文在线播放| 久久精品网站免费观看| 在线综合 亚洲 欧美中文字幕| 国产午夜在线观看| 中文字幕欧美日韩在线| 国产黄色网页| 日韩欧美一二三| 日韩av一区二| 日韩欧美中文字幕公布| 国产欧美 在线欧美| 久久电影国产免费久久电影| 日韩中文字幕观看| 欧美日韩中文在线| 亚洲免费视频一区| 国产日韩电影| 一区免费视频| 日韩亚洲欧美中文字幕|