1 The Problem
This assignment deals with a program places items into separate inventories.
In this assignment, you will make use of inheritance–e.g., virtual functions. You will need to complete the Armour and Consumable classes.
1.1 Input
The program reads data from one file, items-0x.txt. Each line in this file represents one item. The first item on every line denotes the Item type–the remainder of the line varies by item type.
Tool Pickaxe Diamond 100 1 Fortune 5
Potion Speed-II-Potion Spd*2 1
Food Tomato Hunger-10 2
Tool Axe Stone 10 2 Unbreaking 2
Armour Boots Diamond 100 10 Protection 3 lightning
Each Item type is denoted by a keyword:
Tool
indicates aTool
object.Armour
andArmor
indicate anArmour
object.Food
,Potion
, andDisposable
indicate aConsumable
object.
After the leading keywords, each line has a distinct structure:
- The remainder of a
Tool
line contains–in order–a name, material, durability, speed, enchantment, and enchantment level.Tool
Items are notstackable
. - The remainder of a
Armour
line contains–in order–a name, material, durability, defense, enchantment, enchantment level, and element.Armour
Items are notstackable
. - The remainder of a
Consumable
line contains–in order–a name, effect, and # uses.Consumable
Items arestackable
.
1.2 Output
If the program is run with the first provided input file, items-01.txt, the following output should be generated:
Processing Log:
(S) Speed-II-Potion
(S) Tomato
(S) PotatoCamera
(S) PotatoCamera
(S) Boots
(S) Boots
Player Storage Summary:
-Used 50% of 10 slots
Nme: Speed-II-Potion
Eft: Spd*2
Use: 1
Qty: 1
Nme: Tomato
Eft: Hunger-10
Use: 2
Qty: 1
Nme: PotatoCamera
Eft: ImageQuality-97%
Use: 5
Qty: 2
Nme: Boots
Dur: 100
Def: 10
Mtl: Diamond
Mdr: Protection (Lvl 3)
Emt: lightning
Nme: Boots
Dur: 100
Def: 10
Mtl: Diamond
Mdr: FeatherFalling (Lvl 4)
Emt: lightning
Note how there is no Tool output. The Tool class is not present in this assignment. The Tool class will be part of a future assignment.
Your output–including labels and spacing–must match the expected output. The easiest way to see generate the expected output is to run the sample executable solution I have provided.
Hint – each line of output in your display functions should probably start with two leading spaces.
To run this program with items-01.txt as input type:
./storage items-01.txt
(On a Windows system, you would omit the “./”. If you are running from Code::Blocks or a similar development environment, you may need to review how to supply command-line parameters to a running program.)
1.3 Your Tasks
The key abstractions employed in this program are Item
, ItemStack
, Inventory
Armour
, and Consumable
.
Your overall task is to complete the Armour
and Consumable ADTs.
- As an initial step, you will need to complete the
Armour
andConsumable
Default Constructors:- Set the stackable attribute–i.e.,
stackable
.
Hint Remember initializer lists? - Set the name attribute–i.e.,
Item::name
. The attribute,name
, is a protected data member ofItem
.
- Set the stackable attribute–i.e.,
- Implement
Armour::clone
andConsumable::clone
. - Implement
Armour::read
andConsumable::read
. - Implement
Armour::display
andConsumable::display
.
You are expected to generate additional input files to test your code. Test your code throughly before submitting your solution.
1.3.1 Expected Initial Error Messages
If you run make
without adding the missing read
, clone
, and display
methods, you will see something simliar to
/usr/bin/ld.gold: the vtable symbol may be undefined because the class is missing its key function
Armour.cpp:14: error: undefined reference to 'vtable for Armour'
/usr/bin/ld.gold: the vtable symbol may be undefined because the class is missing its key function
Consumable.cpp:4: error: undefined reference to 'vtable for Consumable'
/usr/bin/ld.gold: the vtable symbol may be undefined because the class is missing its key function
Consumable.cpp:12: error: undefined reference to 'vtable for Consumable'
/usr/bin/ld.gold: the vtable symbol may be undefined because the class is missing its key function
collect2: error: ld returned 1 exit status
make: *** [storage] Error 1
While these errors may be intimidating, they are simply telling you to implement the necessary virtual functions for Armour
and Consumable
.
1.3.2 Testing Your Code
I have provided you a set of unit tests. In addition to your normal checks (e.g., running the completed program and performing head-to-head testing) run the unit tests with
make tests
./testNewClasses
You should see:
PASSED -> testDefaultArmourConstructor
PASSED -> testArmourCopyConstructor
PASSED -> testArmourClone
PASSED -> testArmourDisplay
PASSED -> testArmourRead
PASSED -> testDefaultConsumableConstructor
PASSED -> testConsumableCopyConstructor
PASSED -> testConsumableClone
PASSED -> testConsumableDisplay
PASSED -> testConsumableRead
2 Grading
In the grade report that you receive, you will see tests numbered 000 through 008.
- Test 000 evaluates your implementation of
Armour::Armour()
- Test 001 evaluates your implementation of
Armour::clone()
- Test 002 evaluates your implementation of
Armour::display
- Test 003 evaluates your implementation of
Armour::read
- Test 004 evaluates your implementation of
Consumable::Consumable()
- Test 005 evaluates your implementation of
Consumable::clone()
- Test 006 evaluates your implementation of
Consumable::display
- Test 007 evaluates your implementation of
Consumable::read
- Test 008 (System Test) evaluates all both classes–i.e., your solution as a whole–including output and output formatting.
Do not procrastinate.
3 Files
See Attachment
4 Submitting
Files to Submit:
- Armour.cpp–i.e., your version of the Armour ADT.
- Consumable.cpp–i.e., your version of the Consumable ADT.