美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇

CHC5028代做、C/C++程序設計代寫

時間:2023-11-03  來源:  作者: 我要糾錯


CHC5028代做、C/C++程序設計代寫
CHC5028 Software Development with
C/C++
Coursework
Important Dates
Week 5 (30/10/2023-3/11/2023): Mandatory demonstration of Exercise 1, feedback with
preliminary marks.
Week 10 (4/12/2023-8/12/2023): Mandatory demonstration of Exercise 2, feedback with
preliminary marks.
Week 12 (18/12/2023-22/12/2023): Final demonstration and 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:
A Change in the Weather, Spider and Web, Slouching Towards Bedlam, 北大俠客行
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 the
width of the console. If you get this error, remove the #include <windows.h> from
the top of the file, and edit the initWordWrap() function by deleting its contents and
replacing them with consoleWidth = 80; currentConsoleOffset = 0;. You
can change 80 here to any number that makes the output comfortably readable.
Exercise 1 (10% of the mark)
In the current system you can only move North. Extend the engine to allow movement in
all four compass directions.
• Add properties to the Room class for storing east, south, and west exits. These
properties will need accessor methods. (3%)
• Add code to the gameLoop method to understand the commands east, south, and
west (and the abbreviations e, s and w) and to handle them in a similar way to
north. (3%)
• Modify initRooms to create more rooms using the new exits in order to test your
code. (2%)
• Find a more elegant way of implementing these exits which does not repeat code.
[Hint: Traversing through map structures/strings, etc. can be considered.] (2%)
Exercise 2 (50% 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 class. It should contain at least a short name, a long
description, and a keyword (for the player to use when typing commands). (5%)
• Modify the Room class so that each Room includes a list of GameObjects in the
room. (2%)
• Modify the State class to include a representation of a list of GameObjects the
player is carrying, called inventory. (2%)
• Modify the State class to include a representation of the player’s physical
strength, called strength, which is initiated as 100. (2%)
• Modify the gameLoop method to reduce strength by 1 per minute, when
strength goes to 0, the program shall be terminated. (5%)
• Create a derived class FoodObject of GameObject class, it should contain an
integer-type property named energy which should be limited in a range of 1-
10. (5%)
• Modify the Room::describe() method to also print out the short names of all the
objects in the room, formatted as nicely as possible. (2%)
• Modify the gameLoop method to pay attention to the second word of the command
the player enters, if there is one. (5%)
• Modify the gameLoop command 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. (5%)
• Implement the player command get which, when typed with an object keyword, will
move 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. (5%)
• 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 already in the room, or does
not exist, etc. (5%)
• Implement the player command inventory which will print out the short names of
all the objects in the inventory. (2%)
• Implement the player command examine which, when typed with an object
keyword, will print out the long description of that object. (2%)
• 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. (3%)
• Modify initRooms to create some GameObjects and FoodOjects 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 above cannot be demonstrated.)
Exercise 3 (40% 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. They
should ask the user for a filename and then write or read the current game state, to or
from 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 not
guarantee “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 State object stores the current room, and objects, using pointers. Pointers
cannot safely be written to disk since addresses may be different when the program
is 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 but at the same time, the file does not have to be
just a text dump. This actually 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 section:
• 5% for basic correct structure of I/O.
• 5% for handling errors appropriately.
• 10% for the file format designed for storing the saved game.
• 10% for the code that performs the save.
• 10% for the code that performs the load.
Assessment Rules
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 marks
between code and viva.
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, regardless
of 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 be
justified in the viva. However, designs which substantially reduce efficiency or other
desirable properties without corresponding benefit will lose marks.
In addition to final submission in Week 12, there will be two mandatory feedback
sessions as follows:
• Week 5(30/10/2023-3/11/2023):
Exercise 1 will need to be demonstrated.
• Week 10(4/12/2023-8/12/2023):
Exercise 2 will need to be demonstrated.
During these two weeks, you must demonstrate your coursework and you will be given
a preliminary mark, and detailed feedback.
• The deadline for submission of the coursework is Week 12.
• In Week 12 you will also be required to demonstrate the final version of
your work, and verbal feedback will be given.
Exercise 2 needs to be demonstrated in Week 10, and not in Week 5, although general
queries can be discussed.
Exercise 3 does not need to be not demonstrated in Weeks 5 or 10, although you may
demonstrate it for feedback if you wish. Its contribution to the mark is not subject to the
cap, although it will be difficult to score highly on Exercise 3 if you did not complete
Exercises 1 and 2.
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 to
be 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 deadlines Week 5 (30/10/2023-3/11/2023):
Exercise 1 (Demonstration)
Week 10 (4/12/2023-8/12/2023):
Exercise 2 (Demonstration)
Formative feedback Week 5 (30/10/2023-3/11/2023):
Exercise 1 (Spoken interactive)
Week 10 (4/12/2023-8/12/2023):
Exercise 2 (Spoken interactive)
Summative deadline Week 12 (18/12/2023-22/12/2023)
Demonstration and Submission
Summative feedback Week 12 (18/12/2023-22/12/2023)
Spoken interactive
Final marks after assessment committees
Assignment Weighting 50% of 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 artifact specified in terms of C++ objects and their interrelations.
• Research the techniques for safe and efficient programming in C and C++.
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

標簽:

掃一掃在手機打開當前頁
  • 上一篇:指標代寫代寫機構進倉副圖 指標公式
  • 下一篇:代寫CE4703、C++設計編程代做
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇
    538国产视频| 成人精品一二三区| 免费高清视频在线观看| 久久亚洲AV成人无码国产野外| 天天操天天干天天操天天干| 大乳护士喂奶hd| 久久国产精品国语对白| 日韩av片在线免费观看| 黄瓜视频污在线观看| 在线黄色免费网站| aaaaa一级片| 黄色片在线观看免费| 久久久视频6r| 亚洲色图日韩精品| 欧美一区二区三区粗大| 国产馆在线观看| 国产午夜精品理论片| 亚洲欧美精品aaaaaa片| 日韩女优一区二区| 无码人妻精品一区二区三区99不卡| 免费啪视频在线观看| 日本免费福利视频| 国产精品第七页| 亚洲专区区免费| 欧美人与性囗牲恔配| 国产18无套直看片| 三级av在线免费观看| 国产在线观看免费视频软件| 成人三级视频在线观看| 性生交大片免费全黄| 麻豆网址在线观看| 插我舔内射18免费视频| 91网站免费视频| 国产成人无码aa精品一区| 99久久久无码国产精品性波多| 精品人妻一区二区三区日产乱码卜| 捆绑凌虐一区二区三区| 中文字幕第24页| jizz亚洲少妇| 亚洲精品一区二区三区影院忠贞| 女人又爽又黄免费女仆| 欧美另类videoxo高潮| 久久久久国产精品无码免费看| 性猛交ⅹxxx富婆video | 超碰在线国产97| 美国黄色特级片| 超碰手机在线观看| 日韩乱码人妻无码中文字幕久久| 日本免费www| 亚洲人人夜夜澡人人爽| 91成人在线观看喷潮蘑菇| 久久午夜精品视频| 亚洲色图14p| 中国特级黄色片| 亚洲欧美精品aaaaaa片| 自拍偷拍视频亚洲| 精品少妇人妻av一区二区三区| 久艹在线观看视频| 亚洲女人毛茸茸高潮| 国产亚洲色婷婷久久99精品91| 极品盗摄国产盗摄合集| 国产精品亚洲一区二区无码| 国产7777777| 51调教丨国产调教视频| 亚洲最大视频网| 肉丝美足丝袜一区二区三区四| 又嫩又硬又黄又爽的视频| 韩国无码一区二区三区精品| 四虎国产精品免费| 久久黄色一级视频| 被黑人猛躁10次高潮视频| 91视频青青草| wwwww在线观看| 日本wwwwwww| 视频免费在线观看| 美女搡bbb又爽又猛又黄www| 亚洲国产成人精品综合99| 侵犯稚嫩小箩莉h文系列小说| 激情高潮到大叫狂喷水| 亚洲人做受高潮| 99热精品免费| 大桥未久恸哭の女教师| 911亚洲精选| 一级少妇精品久久久久久久| 精品1卡二卡三卡四卡老狼| 国产伦精品一区二区三区精品| 91传媒理伦片在线观看| 久久成人激情视频| 成人在线观看免费完整| 中文字幕三级电影| 摸摸摸bbb毛毛毛片| 色哟哟免费视频| 六十路息与子猛烈交尾| 激情高潮到大叫狂喷水| 久久久无码人妻精品无码| 国产免费无遮挡吸奶头视频| 日本女人性生活视频| 女同性恋一区二区三区| 日本少妇aaa| 人妻熟女aⅴ一区二区三区汇编| 国精产品一区二区三区| 国产男女无遮挡猛进猛出| 制服 丝袜 综合 日韩 欧美| 国精产品一区一区二区三区mba| wwwxxx色| 91精品一区二区三区蜜桃| 欧美 日本 国产| 国产亚洲色婷婷久久| 国产亚洲精品熟女国产成人| 欧美做爰啪啪xxxⅹ性| 欧美一区二区三区成人精品| 免费在线观看a级片| 欧美黄色激情视频| 黄色aaa视频| 久久久久亚洲AV成人网人人小说| 91视频最新网址| 91ts人妖另类精品系列| 最新中文字幕av| 欧美熟妇激情一区二区三区| 亚洲调教欧美在线| 无码国产69精品久久久久网站| 午夜国产小视频| 精品在线观看一区| 免费成人深夜天涯网站| 亚洲国产欧美视频| 中文字幕欧美视频| 在线看的片片片免费| 亚洲精品自拍视频在线观看| 国产精品天天干| 蜜桃视频最新网址| 少妇精品无码一区二区免费视频| 加勒比精品视频| 亚洲av综合一区二区| 亚洲一区二区自偷自拍| 男人的天堂官网| 亚洲精品电影院| 日本55丰满熟妇厨房伦| 亚洲成人福利视频| 日韩免费高清一区二区| 性久久久久久久久久久| 变态另类丨国产精品| 男人操女人动态图| 娇小11一12╳yⅹ╳毛片| 午夜三级在线观看| 美女久久久久久久久| 法国伦理少妇愉情| 小泽玛利亚一区| 国产精品一区二区在线免费观看| 四季av综合网站| 999久久久国产| 无码av免费精品一区二区三区| 欧美一区二区三区成人精品| 免费在线观看a视频| 男人操女人的视频网站| 女同性恋一区二区三区| 一级特黄曰皮片视频| 熟妇女人妻丰满少妇中文字幕| 中文字幕乱视频| 亚洲女人毛茸茸高潮| 精品国产一区在线| 亚洲码无人客一区二区三区| 久久无码人妻一区二区三区| 泷泽萝拉在线播放| 青草影院在线观看| 国产美女免费网站| 少妇精品无码一区二区| eeuss中文字幕| 亚洲永久精品ww.7491进入| 2018天天弄| 亚洲a∨无码无在线观看| 91精品人妻一区二区三区四区| 久久久久亚洲av无码专区桃色| 成年人免费视频播放| theav精尽人亡av| 国产麻豆剧传媒精品国产| 1024在线看片| 爱爱的免费视频| 精品国产av色一区二区深夜久久| 日韩欧美视频免费观看| 成年人免费观看视频网站| 韩国黄色一级片| 欧美人禽zoz0强交| а天堂中文在线资源| 国产精品情侣呻吟对白视频| 国产中年熟女高潮大集合| 一级特级黄色片| 一女三黑人理论片在线| 亚洲高清无码久久| 荫蒂被男人添免费视频| 日韩女优在线视频| 午夜视频在线观看国产| 精品国产av色一区二区深夜久久| 日本wwww色| 国产精品入口麻豆| 久久国产免费视频| 动漫美女无遮挡免费| 天堂久久久久久| 谁有免费的黄色网址| 激情无码人妻又粗又大| 久草福利资源在线|