代做COMP 3023C/C++、C/C++语言帮做、调试C/C++语言、C/C++代做

Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 1 of 22
School of Information Technology and Mathematical Sciences
COMP 3023 Software Development with C++
Assignment
Dungeon Crawler
Introduction
This document specifies the requirements for the first assignment of the Software Development with C++ course,
SP5 2018. This assignment will develop your skills by allowing you to put into practice what has been taught in
class during the first 5 weeks of the course.
The assignment will require you to design, implement, test, and debug a text-based Roguelike dungeon crawler
game using object-oriented methods and the application of appropriate design patterns. In addition, it will
require you to use version control to keep track of your implementation as you progress through the assignment
and to document your classes appropriately using Doxygen comments. The work in this assignment is to be
performed individually and will be submitted via LearnOnline at the end of week 8: due by 14 September 2018
11:59 PM. Refer to section Submission Details for specific instructions.
If any parts of this specification appear unclear, please ensure you seek clarification.
Learning Outcomes
After completing this assignment, you will have learnt to:
• Design a class hierarchy using UML
• Apply Object-Oriented principles (encapsulation, reuse, etc.) and Design Patterns to the software design
• Implement the software design in C++ using class inheritance and polymorphism features
• Write well-behaved constructors and destructors for C++ classes
• Use C++ pointers (including smart pointers) and dynamic memory allocation and management
• Use stream I/O and manipulators for formatted input and output
• Write code adhering to coding standards, guidelines and good programming practices
Design Patterns
In developing the class design for the Dungeon Crawler game, the following the Design Patterns must be
incorporated:
• Singleton
• Builder
• Decorator
• Strategy
This section provides brief descriptions of each relevant design pattern in turn. For more information refer to the
book from which these summaries are derived:
Gamma, E, Helm, R, Johnson, R and Vlissides, J 1995, Design patterns: elements of reusable object-oriented
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 2 of 22
software, Addison-Wesley, ISBN: 978-0-201-63361-0.1 Be aware that the C++ examples from the book are for an
older version of C++. If using them for guidance, they must be updated to C++ 14.
Adequate descriptions of the above patterns along with some code examples can also be found on Wikipedia:
• Singleton: https://en.wikipedia.org/wiki/Singleton_pattern
• Builder: https://en.wikipedia.org/wiki/Builder_pattern
• Decorator: https://en.wikipedia.org/wiki/Decorator_pattern
• Strategy: https://en.wikipedia.org/wiki/Strategy_pattern
Singleton
The Singleton pattern addresses the problem of ensuring that a class has only one instance. Moreover, the one
instance is easily accessible but in a controlled fashion. Such a pattern arises in situations where a single, globally
accessible interface to a system or subsystem is required and, hence, is often used with other patterns such as
Façade and Abstract Factory. An example of singleton a singleton is an application wide configuration. Rather
than parsing the configuration file multiple times and storing multiple copies in memory, the configuration file
should be read once and stored once. Moreover, since various parts of the application may need to access
different settings, the configuration should be globally accessible to ensure the configuration is accessible when
needed. Other examples include: a single print spooler governing access to the printer resources, a single
thread/connection pool handing out connections or threads to clients that request them, etc.
When to Use
The Singleton pattern should be applied to a class when:
1. Exactly one instance of the class must exist
2. A well-known access point to the instance is required
In general, the extensibility of a Singleton through subclassing should also be considered. It will not be required
for this assignment; however, it is important to note as a common criticism of the Singleton pattern is that it
becomes tied to implementation and makes testing difficult due to the inability to replace the singleton instance
with a mock (i.e., a test specific class that is not a complete implementation).
General Structure
A simple representation of the Singleton pattern includes only a Singleton class, i.e., the class that should be a
Singleton, containing: a static member function instance() that returns the unique instance of the class, a
hidden constructor, and a static data member to hold the unique instance of the class.
Note the ‘+’ indicates public accessibility and ‘-‘ indicates private accessibility. If considering extensibility of the
Singleton through subclassing, the constructor should be protected rather than private.

1 Scanned PDFs of the relevant sections are available from the course website as the library has limited copies of the book.
Singleton
+ static instance()
- Singleton()
- static theInstance
return theInstance;
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 3 of 22
Implementation Hints
In C++, the compiler may generate some constructors and operators for you. Ensure you prevent the Singleton
from accidentally being copied or assigned in ways you do not intend by deleting any automatically generated
members that you do not need.
In C++, the static data member can be implemented in two different ways: within the scope of the class or within
the scope of the function. Consider the consequences of each approach and justify your implementation choice in
your comments.
Builder
The purpose of the Builder pattern is to separate the representation of a complex object from the process used to
construct it. Further, such separation allows different representations to be constructed from the same process.
For example, a Parser using a Builder to construct a parse tree in different systems: the recognition of the syntax
is handled by the parser, which calls the builder to create the appropriate parse nodes and retrieves the final
parse tree from the Builder once the parsing is complete. The different representations may or may not be
related, for example, an executable parse tree of the parsed syntax, a parse tree for another language (such as in
code transformation), or a composition of widgets for visualising the text processed by the Parser.
An important aspect of the Builder pattern that differentiates it from other creational patterns is that it supports
the creation of complex objects in a step-by-step process, rather than all-at-once.
When to Use
The Builder pattern should be applied when:
• the construction process is, or should be, independent of the object, its parts, and the way that it is
assembled
• the construction process should allow for different representations to be created.
Note that there does not always have to be multiple representations, only that multiple representations are
possible. One of the motivations for good design is to support future change more easily.
General Structure
The Builder pattern contains several interacting classes, including:
• the Director, which represents the entity that requires the object to be constructed and ‘directs’ the
Builder to construct it;
• the Builder, which specifies an abstract interface for constructing any Product object, this may include
many different member functions for constructing different types of parts;
• one or more ConcreteBuilders, which create specific Products from its parts by implementing the
abstract Builder interface and allows the Product to be retrieved once complete as it maintains the
representation internally during construction;
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 4 of 22
• the Product class, which represents the complex object being created by a ConcreteBuilder as well as
its parts. Note: this does not mean the classes for the parts are encapsulated by the Product class, only
that the diagram is simplified to not explicitly illustrate any of the Product’s parts.
Implementation Hints
If the representations being constructed by the different ConcreteBuilders are related, the abstract Builder
may declare an appropriate getResult() member function as part of its interface.
The ConcreteBuilder object is not required to be supplied to the Director via a constructor, it could also be a
parameter to a member function.
Decorator
The Decorator pattern is used to dynamically associate additional functionality or responsibilities to an object,
rather than a class. The common exemplar is the addition of a border to GUI widgets: the widgets themselves
may or may not have a border, scroll bar, etc., but can be wrapped in an object that understands how to draw a
border around the widget, i.e., a decorator. This pattern is an example of favouring composition over inheritance,
which results in greater flexibility. Consider using inheritance to add a border to a widget, displaying the widget
would require a check for whether a border should be drawn then display the border followed by displaying the
widget itself. Now consider that widgets can have a scroll-bar and a border, displaying the widget would have to
check and display the border then check and display the scroll-bar. Most, if not all, widget classes would inherit
this capability even though many instances of those widgets would not require it. By separating out these
responsibilities into distinct classes that can be composed, the widget can worry about displaying itself, while the
border decorator can focus on drawing a border and the scroll-bar decorator can focus on the scroll-bar. This has
no impact on the calling code as the decorators conform. to the same interface as widgets but delegate most
function calls straight to their component, which may be another decorator. Apart from reuse, this pattern
supports extensibility as new decorators can be added without affecting those already implemented.
When to Use
The decorator pattern should be used when:
• responsibilities or functionality should be added to specific objects dynamically,
• such responsibilities can be removed dynamically, and
• the use of inheritance is impractical, e.g., supporting all combinations of responsibilities would become
cumbersome.
Note: The decorator pattern is best applied when the shared base class is (or can be made) lightweight, with few
data members, otherwise the overhead for having many objects may become a problem. This is in contrast to the
strategy pattern (see next section), which can otherwise be used in similar situations.
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 5 of 22
General Structure
The Decorator pattern includes several classes with responsibilities as follows:
• an abstract Component that defines the common interface for objects that support dynamically added
responsibilities;
• the ConcreteComponent, which represents the specific types of object that can have responsibilities
attached;
• the abstract Decorator that maintains compatibility to the Component interface by referring to a
Component object and delegating the function calls to the underlying object;
• the ConcereteDecorator classes, which add responsibilities to the Component object and may provide
additional behaviour and/or state.
Implementation Hints
When implementing the decorator pattern, more than one operation of the component type can have their
output modified by a decorator. For example, a border decorator might decorate the draw operation (to display
the border) as well as the size operation (to add the border thickness to the reported size of the widget).
Strategy
To encapsulate a group of similar algorithms and allow them to be used interchangeably, the Strategy pattern
should be used. Such an approach simplifies client code by separating the different algorithm variants into their
own classes, rather than implementing them all in the one place, and allows an appropriate algorithm to be
chosen dynamically based on the context. It can also allow behaviour to reused between objects of different
types. A simple example of Strategy would be the formatting of dates as a string based on locale: the different
formatting algorithms are implemented independently, and the locale object is configured with the desired
algorithm. The strategy pattern can also be seen in libraries for Data Science where, for example, different
clustering algorithms are implemented as classes with the same interface, so they can be used (for the most part)
interchangeably. Another feature of the strategy pattern is that it allows the algorithm implementations to
encapsulate internal state required to perform. the operation without exposing it.
When to Use
There are several situations in which a Strategy pattern is applicable. The situations most relevant to this
assignment are when:
• many related classes differ primarily in their behaviour, and
• multiple variants of an algorithm are necessary.
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 6 of 22
Note: the strategy pattern can be applied more efficiently to fat objects, i.e., objects with many data members, by
being an extra data member themselves. As such, the strategy pattern changes behaviour from the inside-out
whereas the decorator pattern changes behaviour from the outside-in.
General Structure
The classes and responsibilities in the Strategy pattern include:
• the abstract Strategy class, which defines the interface that all the algorithm variants support;
• the ConcreteStrategy classes that each define a variant of the algorithm conforming the interface
defined by the abstract Strategy class;
• a Context class that references a Strategy object, which may be configured at creation or dynamically
through an interface (e.g., setAlgorithm(…)), and executes the Strategy object when desired.
Implementation Hints
In C++, the function call operator ‘()’ can be overloaded like other operators, which makes it easy to execute the
strategy object as if it were a function. Overloading the function call operator will not be explicitly covered until
closer to the submission deadline of this assignment and, therefore, is not required in your implementation.
The interface of the Strategy class may specify parameters such that all the information it expects to require is
passed in. Alternatively, the Strategy interface may accept a reference to the Context class, so that the Context
can pass itself to the Strategy object, allowing it to retrieve data from the Context object as required. Consider
the consequences of each approach and justify your implementation choice in your comments.
Usually the ConcreteStrategy will be chosen by the client and passed to the Context; however, in this
assignment the ConcreteStrategy may be predetermined in most instances.
Task Description
Roguelike Dungeon Crawler games are a genre of game that exhibit features typically attributed to the 1980s
computer game Rogue2. In general, the goal of a Roguelike game is to clear a dungeon, level-by-level, until the
final level is completed. Common features of a Roguelike game include:
• procedurally generated dungeons,
• randomised items and weapons,
• permanent death, and
• a variety of creatures to fight that get progressively more difficult deeper into the dungeon.
Within each level of a dungeon there typically exists distinct rooms where creatures are encountered and items
are waiting to be looted.
In this assignment, you will design and implement a simple text-based Roguelike Dungeon Crawler game that
fulfils the following specification. Unlike the original Rogue, text-based does not mean ASCII art but instead will be

2 https://en.wikipedia.org/wiki/Rogue_(video_game)
Revision 1
COMP 3023 Software Development with C++ - Assignment SP5 2018 Page 7 of 22
driven by a text-based menu interface inspired by another genre of text-based adventure game originating from
Multi-User Dungeon (MUD)3. Moreover, combat will be turn-based with only one opposing creature at a time.
The aim of the assignment is to allow you to practise creating an object-oriented design and implementing it in
C++ using the features learnt so far, namely: class inheritance and polymorphism, dynamic memory allocation,
and smart pointers. The focus of the assignment is on identifying and applying appropriate Design Patterns to
help develop the game in such a way that components are easily reusable and extensible—remember the DRY
(Do Not Repeat Yourself) principle.
To that end you will, first, need to develop a class design using UML class diagrams based on the requirements in
the remainder of this specification. A simple and free UML editor that can be used for this assignment is UMLet
(http://umlet.com/). The UML class diagram must include all classes, public data members, public member
functions, protected data members and member functions (if any), and associations between classes. The
diagram may optionally display private member functions, but private member variables should not be included.
For this assignment the game has been simplified to a certain extent, e.g., dungeon creation is not completely
procedural. Moreover, some of the underlying elements (such as the basic menu interface code) will be provided
to get you started. The provided code will be incomplete and may need to be modified to fit your class design.
Parts of the provided code that must not be modified will be marked as such. You will then need to implement
the rest of the game according to the specifications and your design.
A brief example of how the game will be played is provided below. The remainder of the section describes the
requirements of the game in more detail.
> dungeon_crawler.exe
Welcome to Ashes of Software Development: Rite of Passage!
Developed by Matt Selway
COMP 3023 Software Development with C++

热门主题

课程名

litr1-uc6201.200 ee1102 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst cosc2803 math39512 omp9727 ddes9903 babs2202 mis2002s phya21 18-213 cege0012 mgt253 fc021 int2067/int5051 bsb151 math38032 mech5125 mdia1002 cisc102 07 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 efim20036 mn-3503 comp9414 math21112 fins5568 comp4337 bcpm000028 info6030 inft6800 bcpm0054 comp(2041|9044) 110.807 bma0092 cs365 math20212 ce335 math2010 ec3450 comm1170 cenv6141 ftec5580 ecmt1010 csci-ua.0480-003 econ12-200 ectb60h3f cs247—assignment ib3960 tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 econ7230 msinm014/msing014/msing014b math2014 math350-real eec180 stat141b econ2101 fit2004 comp643 bu1002 cm2030 mn7182sr ectb60h3s ib2d30 ohss7000 fit3175 econ20120/econ30320 acct7104 compsci 369 math226 127.241 info1110 37007 math137a mgt4701 comm1180 fc300 ectb60h3 llp120 bio99 econ7030 csse2310/csse7231 comm1190 125.330 110.309 csc3100 bu1007 comp 636 qbus3600 compx222 stat437 kit317 hw1 ag942 fit3139 115.213 ipa61006 econ214 envm7512 6010acc fit4005 fins5542 slsp5360m 119729 cs148 hld-4267-r comp4002/gam cava1001 or4023 cosc2758/cosc2938 cse140 fu010055 csci410 finc3017 comp9417 fsc60504 24309 bsys702 mgec61 cive9831m pubh5010 5bus1037 info90004 p6769 bsan3209 plana4310 caes1000 econ0060 ap/adms4540 ast101h5f plan6392 625.609.81 csmai21 fnce6012 misy262 ifb106tc csci910 502it comp603/ense600 4035 csca08 8iar101 bsd131 msci242l csci 4261 elec51020 blaw1002 ec3044 acct40115 csi2108–cryptographic 158225 7014mhr econ60822 ecn302 philo225-24a acst2001 fit9132 comp1117b ad654 comp3221 st332 cs170 econ0033 engr228-digital law-10027u fit5057 ve311 sle210 n1608 msim3101 badp2003 mth002 6012acc 072243a 3809ict amath 483
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图