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

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

代做CHC5028、C/C++語(yǔ)言程序代寫(xiě)
代做CHC5028、C/C++語(yǔ)言程序代寫(xiě)

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



CHC5028 Software Development with
C/C++
Coursework
Important Dates
Week 10 (an available day in that week): Class test.
Week 12 (16/12/2024-20/12/2024): Project demonstration and viva assessment. Source 
codes file submission.
Background
“Text adventures”, now called “interactive fiction”, were among the first type of computer
game ever produced. These games have no graphics; the player reads the story of the
game in text, and decides what their character will do by typing commands at a prompt.
Although less popular now, text adventures are still played and created, and developed
into the original online RPGs (MUDs). You can play some sample modern text
adventures here:
Discworld MUD, BatMUD, 
These are playable online via a web browser. It is advisable to try out the games to get
an understanding of how the games behave.
For this coursework, you will be creating a simple game engine for a text adventure.
You are not required to write an actual adventure, only the back-end program code that
would support one. You will need to add some material to the program in order to test it,
but this may just be simple test material. You may add interesting descriptions or stories
to your program if you want to, but there are no marks for doing so.
You are provided with a CLion project containing a very simple game harness which
supports only two commands: going north (north or n), and quitting (quit). Extend it
by doing the exercises below. Note that the later exercises are less explicitly described
than the earlier ones, meaning that you must solve more problems yourself. This is
intentional.
The coursework is written to be built using gcc through CMake and CLion. It is not
recommended that you attempt to build it using Visual Studio or XCode.
Important: If you are building the sample coursework on a platform other than Windows, or 
on a machine which does not have the Windows API installed, you may get an error in the
file wordwrap.c. This file calls a Windows specific function to find thewidth of the console. If 
you get this error, remove the #include <windows.h> fromthe top of the file, and edit
the initWordWrap() function by deleting its contents andreplacing them with 
consoleWidth = 80; currentConsoleOffset = 0;. You can change 80 here to any
number that makes the output comfortably readable.
Task 1 (10% of the mark)
In the current system, you can only move North. Extend the engine to allow movement inall
four compass directions.
• Add properties to the Room class for storing east, south, and west exits. These
properties will need accessor methods.
• Add code to the gameLoop method to understand the commands east, south, andwest 
(and the abbreviations e, s and w) and to handle them in a similar way to north.
• Modify initRooms to create more rooms using the new exits to test yourcode.
• The rooms created should be constructed in a reasonable and logical relationship that 
makes the game playable and sensible.
Task 2 (15% of the mark)
A key part of most text adventure games is the ability to move objects around. Objects 
can be found in rooms and can be picked up and put down by the player. Add this 
capability to the game engine.
• Create a GameObject super class. It should contain at least a weight, and a
keyword (for the player to use when typing commands).
• Modify the Room class so that each Room includes a list of GameObjects in theroom.
• Create a derived class Weapon of GameOjbect class, the weight of each object of 
Weapon should be limited in a range of 5-10. It should contain a property named 
harm which should be limited in a range of 10-30. 
• Create a derived class Food of GameObject class, the weight of each object of Food
should be limited in a range of **5. It should contain a property named energy which 
should be limited in a range of **10. 
• Modify initRooms to create some GameObjects ((including food and weapon objects)
and put them in the rooms. Use this to test your program. (No marks are assigned 
specifically for this task, but without it, the ones following cannot be demonstrated.)
Task 3 (15% of the mark)
A key part of most text adventure games is the ability to fight with the NPC enemy. The 
NPC can be found in rooms and the player can fight with them. Add this capability to 
the game engine.
• Create a pure virtual EnemyObject class. It should contain at least a health, and a 
keyword (for the player to use when typing commands). It should contain a virtual 
method damage().
• Modify the Room class so that each Room includes a list of EnemyObject in theroom.
• Create a derived class Boss of EnemyObject class, the health of each object of 
Boss should be 100.
• Create a derived class Clowns of EnemyObject class, the health of each object of 
Clowns should be 30.
• Modify initRooms to create some EnemyObjects ((including boss and clowns 
objects) and put them in the rooms. Use this to test your program. (No marks are 
assigned specifically for this task, but without it, the ones following cannot be
demonstrated.)
• You need to consider different reasonable damage value for each different 
enemy objects’ damage() method.
Task 4 (5% of the mark)
• Modify the State class to include a representation of the player’s physical strength,
called strength, which is initiated as 100, and when strength goes to 0, the program 
shall be terminated. 
• Modify the Room::describe() method to print out the keywords of all theobjects in the 
room, formatted as nicely as possible.
Task 5 (30% of the mark)
• Modify the gameLoop method to pay attention to the second word of the commandthe
player enters, if there is one. The following commands can be used with the second 
word to search through a) objects in the current room,and b) objects in the inventory, for 
an object with a keyword matching the second word of the command the player typed. 
• Implement the player command get which, when typed with an object keyword, willmove 
that object from the current room list into the inventory. It should display appropriate 
errors if the object is not in the room, or the object is already in the inventory, or the 
object does not exist. 
• Implement the player command drop which, when typed with an object keyword, will 
move that object from the inventory into the current room list. It should display
appropriate errors if the object is not in the inventory or doesnot exist, etc. (5%)
• Implement the player command inventory which will print out the keywords ofall the
objects in the inventory. 
• Implement the player command eat which, when typed with a food object
keyword, will print out the player’s strength after adding the energy of the food 
object to the player’s strength, which should not exceed 100.
• Implement the player’s command fight which, when typed with an enemy 
object keyword if the enemy object exists in the room, will print out the enemy’s 
health that subtracts from the sum of harm of weapons carried by the player.
• The harm is mutual, the player’s strength should reduce the damage of the 
enemy existing in the room and be printed out. You need to make the damage()
in the Boss and Clowns class can be applied when the fight command is 
working. 
• You need to make the printout of each command execution demonstrate the 
explicit status of all objects in the room.
Task 6 (25% of the mark)
Since most players will not want to play an entire game at one sitting, most games include
save and load (or restore) commands. Implement these commands. Theyshould ask the
user for a filename and then write or read the current game state, to orfrom that file.
Note that the layout and descriptions of rooms, and the list and descriptions of objects,are not 
part of the game state because they do not change during the game. These should not be
included in the save file and saving them will lose marks.
A simple file open, load, and save does not guarantee full marks and may notguarantee
“a good mark”.
To this end, some important points to consider:
• The “game state” may also include the locations of objects the player has dropped in
rooms. Would it be a good idea to restructure how object locations are stored?
• The “game state” may also include the status of the player and enemy objects. Would it 
be a good idea to restructure these objects to the original situation?
• The State object stores the current room, and objects, using pointers. Pointers cannot
safely be written to disk since addresses may be different when the programis reloaded.
How can you enable this data to be safely saved and reloaded?
• It is worth ensuring to some degree that the user cannot readily cheat, or spoil the game, 
by reading or changing a save file. While it is not necessary to implement actual 
authentication or encryption, at the same time, the file does not have to be just a text 
dump. This makes it harder to parse when loaded. So, for example, saving the required 
indexes into a static array of strings may be a better way than saving the strings 
themselves.
Marking scheme for this task:
• 5% for basic correct structure of I/O.
• 10% for the file format designed for storing the saved game.
• 10% for the code that performs the save and the load.
Assessment Rules( Very important )
Code will be assessed by a demonstration and viva in week 12. You will be asked to
demonstrate your code and to explain how it works. There is no hard division of 
marksbetween code and viva. The marks given are mainly based on your performance 
in answering the assessor's questions and the accuracy and correctness of the 
corresponding answers.
If you cannot explain your code sufficiently well to satisfy the assessor that it is your 
own work, they have the right to award 0 marks for that exercise, regardlessof the 
quality of the code.
The fact that your code works does not guarantee full marks. All code is expected to 
also be readable, maintainable, and efficient. You are not required to exactly follow the steps
in the exercises above. Alternative designs are also acceptable if they can bejustified in the 
viva. However, designs which substantially reduce efficiency or other desirable properties 
without corresponding benefits will lose marks.
• The deadline for submission of the coursework is Week 12.
• In Week 12 you will also be required to demonstrate the final version ofyour
work, and verbal feedback will be given.
In addition to final submission and viva in Week 12, there will be two counselling in
the week 10 and week 11 tutorial periods. You also can make appointments with the 
tutor during the whole semester to 
Notice on presentation and submission
You do not need to give a presentation nor submit a report for either section of the
coursework. This coursework’s focus is on the quality of your final code and on your ability to
understand it, not your software engineering process (which is not expected tobe standard 
when you are learning the language).
Standard rules on plagiarism apply to this coursework.
The Code should be your own work and must not be copied from the internet or any 
other source. If you have difficulty with the coursework, you should approach your practical 
tutor in the first instance. Posting questions about the coursework on Stack Overflow, Quora, 
or similar sites may be treated as an incitement to plagiarism. Posting parts of your answer to 
the coursework on the publicly available internet where other students may access it will be 
treated asan incitement to plagiarism. Soliciting or obtaining answers to the coursework in
exchange for money and any other consideration will be treated as serious academic
misconduct. Asking for coursework answers from any party outside of the University is itself
attempted plagiarism and you should not do it; if that third party commits any of theoffenses in 
this section on your behalf, you may be held responsible, even if you were not directly aware 
they would do so (because you should not have asked them in the first place).
Assignment Data
Contact person Leon Liang, leon@zy.cdut.edu.cn
Learning outcomes See below.
Formative deadline Week 10 (2/12/2024-6/12/2024):
Coursework Class Test
Formative feedback Week 10 (2/12/2024-6/12/2024):
Counselling
Week 11 (9/12/2023-13/12/2023):
 Counselling
Summative deadline Week 12 (16/12/2024-20/12/2024) 
Coursework project demonstration and viva
Summative feedback Week 12 (18/12/202**2/12/2023)
Spoken interactive(viva)
Final marks after assessment committees
Assignment Weighting Coursework class test 20% of the module
Coursework project demonstration and viva 30% of the 
module
Learning Outcomes
• Understand the fundamental concepts of C and C++ programming for object
manipulation, data structuring and input/output control.
• Refine a problem specification into a collection of C++ classes.
• Create a software artefact specified in terms of C++ objects and their interrelations.
• Research the techniques for safe and efficient programming in C and C++.

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







 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代寫(xiě)CPTG1405、代做Python設(shè)計(jì)程序
  • 下一篇:代寫(xiě)COMP2011J、Java程序設(shè)計(jì)代做
  • 無(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| 欧美综合激情网| 久久国产精品网| 视频一区二区综合| 91精品国产91久久久久青草| 一区二区精品国产| 成人美女免费网站视频| 欧美激情小视频| 国产精品一色哟哟| 中文字幕av日韩精品| 成人精品一二区| 亚洲色婷婷久久精品av蜜桃| 99久久国产免费免费| 亚洲在线一区二区| 91精品视频专区| 亚洲欧美日韩在线综合| 国产美女三级视频| 亚洲综合中文字幕在线| 国产裸体免费无遮挡| 精品久久蜜桃| 97人人模人人爽人人少妇| 亚洲精品一区二区三区av | 日韩国产欧美精品| 久久久久久久一| 欧美在线视频网| 国产精品黄视频| 国产精品夜夜夜一区二区三区尤| 亚洲色精品三区二区一区| 99中文字幕| 日本亚洲欧洲色α| 日韩在线精品一区| 精品一区二区三区日本| 久久亚洲私人国产精品va| 国产欧美日韩专区发布| 亚洲最大福利视频| 国产成人av影视| 欧美日韩另类综合| 久操成人在线视频| 91精品久久香蕉国产线看观看| 亚洲精品一区二区三区av | 久久亚洲免费| 欧美中文字幕在线观看视频| 国产精品日本精品| 国产精品一区二区三区精品| 无码免费一区二区三区免费播放| 日日骚久久av| 国产精品一区久久| 日韩一级免费看| 国产精品初高中精品久久| 99在线影院| 欧美日韩黄色一级片| 欧美激情中文字幕在线| 久久福利电影| 国产美女久久精品香蕉69| 肉大捧一出免费观看网站在线播放 | 欧美一区二区三区电影在线观看| 久久九九全国免费精品观看| 国产美女在线一区| 日韩av电影在线网| 国产精品黄视频| 久久综合中文色婷婷| 欧美一二三视频| 欧美激情视频网址| 精品激情国产视频| 成人av色在线观看| 欧美精品二区三区四区免费看视频| 久久综合色88| 国产a级黄色大片| 国产一区二区三区高清| 日本一二三区视频在线| 国产999在线观看| 日日摸夜夜添一区| 91好吊色国产欧美日韩在线| 麻豆中文字幕在线观看| 日本一区网站| 一区二区三区四区久久| 国产精品久久久久久久久男| 久久久久久a亚洲欧洲aⅴ| 国产一区在线播放| 日韩欧美精品久久| 亚洲欧美精品在线观看| 久久久www成人免费精品| 久久频这里精品99香蕉| 国产欧美日本在线| 欧美日韩电影一区二区| 婷婷五月色综合| 在线视频不卡一区二区| 国产精品免费看一区二区三区| 国产成人精品国内自产拍免费看| 成人精品水蜜桃| 国产在线一区二区三区四区| 欧美最猛性xxxx| 日日摸日日碰夜夜爽无码| 久久99国产精品久久久久久久久| 视频在线观看99| 国产精品91一区| 国产一区二区三区奇米久涩| 欧美一区二区综合| 日本免费高清一区二区| 亚洲人体一区| 一区不卡字幕| 一区二区三区我不卡| 久久国产精品久久久| 国产精品久久久久久五月尺 | 亚洲一区亚洲二区亚洲三区| 欧美激情在线视频二区| 国产精品久久电影观看| 国产精品视频一区二区高潮| 日韩视频在线一区| 日韩在线视频国产| 91国产中文字幕| 97精品在线观看| 北条麻妃在线视频观看| 成人av蜜桃| 97成人精品视频在线观看| 99精品一区二区三区的区别| 成年丰满熟妇午夜免费视频| 超碰在线97av| 91精品成人久久| 国产成人亚洲欧美| 日韩网站免费观看| 久久精品视频亚洲| 国产精品视频免费一区二区三区| 国产精品视频一| 精品中文字幕视频| 久久亚洲春色中文字幕| 久久国产精品久久久久久| 欧美xxxx14xxxxx性爽| 国产99午夜精品一区二区三区| 在线观看免费黄色片| 亚洲精品一区二| 日本精品久久久久中文字幕| 日韩欧美三级一区二区| 欧美性在线视频| 蜜桃传媒一区二区| 国产伦精品一区二区三区四区免费 | 免费在线一区二区| 国产三级中文字幕| av在线免费观看国产| 久久网站免费视频| 久久99精品国产一区二区三区| 久久久久久久香蕉| 国产精品女人网站| 中文字幕色呦呦| 日本一二三区视频在线| 黄色一级视频播放| 成人国产精品久久久久久亚洲| 91精品国产沙发| 色噜噜狠狠色综合网图区| 国产精品久久久久不卡| 国产av第一区| 三级三级久久三级久久18| 激情小说综合网| 成人h视频在线观看| 国产a级黄色大片| 欧美成年人在线观看| 午夜啪啪免费视频| 精品人妻人人做人人爽| 高清一区二区三区日本久 | 国产99久久精品一区二区 夜夜躁日日躁 | 日韩在线视频免费观看| 久久艹在线视频| 色综合影院在线观看| 国语精品免费视频| 国产精品av网站| 国产精品久久..4399| 亚洲a成v人在线观看| 欧美日韩精品免费观看视一区二区| 国产在线视频一区| 久久久久久高清| 精品免费国产| 日本欧美黄网站| 国产日韩综合一区二区性色av | 伊人网在线免费| 欧美亚洲国产精品| 91免费视频国产| 国产精品精品一区二区三区午夜版| 亚洲不卡1区| 国产在线一区二区三区播放| 久久国产午夜精品理论片最新版本| 免费不卡在线观看av| 日本免费在线精品| 国产四区在线观看| 久久久久久久久爱| 亚洲国产成人不卡| 麻豆久久久av免费| 久久久久久久久中文字幕| 一区二区三区四区在线视频| 欧美亚洲视频在线观看| 91精品久久香蕉国产线看观看| 日韩欧美精品免费| 亚洲综合av一区| 免费亚洲一区二区| 久久精品国产精品亚洲色婷婷| 久久亚洲综合国产精品99麻豆精品福利 |