Assignment C Suppose you are creating a fantasy roleplaying
Assignment C++
Suppose you are creating a fantasy role-playing game. In this game we have four different types of creatures: humans, cyberdemons, balrogs, and elves. To represent one of these creatures we might define a Creature class as follows:
Here is an implementation of the getSpecies() function:
The getDamage() function outputs and returns the damage this creature can inflict in one round of combat. The rules for determining the damage are as follows:
Every creature inflicts damage that is a random number r, where 0 < r <= strength.
Demons have a 25% chance of inflicting a demonic attack which is an additional 50 damage points. Balrogs and Cyberdemons are demons.
With a 50% chance elves inflict a magical attack that doubles the normal amount of damage.
Balrogs are very fast, so they get to attack twice
An implementation of getDamage() is given below:
One problem with this implementation is that it is unwieldy to add new creatures. Rewrite the class to use inheritance, which will eliminate the need for the variable \"type\". The creature class should be the base class. The classes demon, elf, and human should be derived from creature. The classes cyberdemon and balrog should be derived from demon. You will need to rewrite the getSpecies() and getDamage() functions so they are appropriate for each class.
For example, the getDamage() function in each class should only compute the damage appropriate for that object. The total damage is then calculated by combining the results of getDamage() at each level of the inheritance hierarchy. As an example, invoking getDamage() for a balrog object should invoke getDamage() for the creature object. This will compute the basic damage that all creatures inflict, followed by the random 25% damage that demons inflict, followed by the double damage that balrogs inflict.
Also include mutator and accessor functions for the private variables. Write a main function that contains a driver to test your classes. It should create an object for each type of creature and repeatedly output the results of getDamage().
Adhere to the following additional requirements:
Do not use any concepts from lesson 18.3 to write this program. In other words, don\'t use the word \"virtual\". One of the main points of this assignment is to illustrate how using virtual may improve our code, so things may seem a little messy here.
Each of the 6 classes will have exactly 2 constructors. Every class will have a getSpecies() function. It won\'t be possible to declare objects of type \"creature\" or \"demon\", but you should include getSpecies() functions for them anyway, and they should return \"creature\" and \"demon\", respectively.
Each of the 5 derived classes will have exactly 4 member functions (including constructors) and no data members
The creature class will have 8 member functions (including 2 constructors, 2 accessors, and 2 mutators) and 2 data members. You\'ll need to make the getSpecies() function public.
Do not use the \"protected\" keyword. Many computer programmers consider it to be poor practice because only the base class itself should have uncontrolled access to that data. The derived classes can access the data members through accessors and mutators.
In the non-default constructors for the sub-classes, you will need to use initializer lists.
The creature class\'s getDamage() function will return an int representing the damage inflicted. It will contain no cout statements.
The human class\'s getDamage() function will (1) call the creature class\'s getDamage() function to determine the damage inflicted and (2) print the message reporting the damage inflicted.
The elf class\'s getDamage() function will be just the same as for the human class, except there will be some additional couts and calculations after the initial damage inflicted is reported.
The cyberdemon class\'s getDamage() function will (1) print the words \"The cyberdemon\" and (2) call the demon class\'s getDamage() function to determine the damage. The words \"The cyberdemon\" have to be printed here before calling the demon class\'s getDamage() function because once we are inside the demon class\'s getDamage() function there is no way for us to determine which type of demon (cyberdemon or balrog) we are working with.
The balrog class\'s getDamage() function will (1) print the words \"The balrog\", (2) call the demon class\'s getDamage() function to determine the damage, (3) calculate the damage inflicted by the balrog\'s second attack (which is a basic \"creature\" attack), and (4) print those results. Don\'t call the creature class\'s getDamage() function to calculate the damage inflicted by the second attack. Instead use something like \"damage2 = (rand() % strength) + 1;\".
The demon class\'s getDamage() function will (1) call the creature class\'s getDamage() function to determine the damage inflicted, (2) print the words \"attacks for ?? points!\", (3) determine whether a demonic attack occurs, and if so, (4) print the \"Demonic attack\" message.
All 6 getDamage() functions will return the damage inflicted.
You must place all of your classes, both the interface and the implementation, in a namespace named \"cs_creature\".
Here is the client program that you must use to test your classes.
Here is the correct output. Your output should match this exactly except where random numbers are used.
Solution
Copyable code:
#ifndef CREATURES_H
#define CREATURES_H
#include <string>
using std::string;
namespace ncoop { int randPercent( ); // base class creature class Creature
{
private: bool alive;
int strength;
int hitpoints;
virtual string getSpecie;
int main() {
srand(time(0));
human h1;
elf e1;
cyberdemon c1;
balrog b1;
human h(20, 30);
elf e(40, 50);
cyberdemon c(60, 70);
balrog b(80, 90);
cout << \"default human strength/hitpoints: \" << h1.getStrength() << \"/\" << h1.getHitpoints() << endl;
cout << \"default elf strength/hitpoints: \" << e1.getStrength() << \"/\" << e1.getHitpoints() << endl;
cout << \"default cyberdemon strength/hitpoints: \" << c1.getStrength() << \"/\" << c1.getHitpoints() << endl;
cout << \"default balrog strength/hitpoints: \" << b1.getStrength() << \"/\" << b1.getHitpoints() << endl;
cout << \"non-default human strength/hitpoints: \" << h.getStrength() << \"/\" << h.getHitpoints() << endl;
cout << \"non-default elf strength/hitpoints: \" << e.getStrength() << \"/\" << e.getHitpoints() << endl;
cout << \"non-default cyberdemon strength/hitpoints: \" << c.getStrength() << \"/\" << c.getHitpoints() << endl;
cout << \"non-default balrog strength/hitpoints: \" << b.getStrength() << \"/\" << b.getHitpoints() << endl;
cout << endl << endl;
cout << \"Examples of \" << h.getSpecies() << \" damage: \" << endl;
for (int i = 0; i < 10; i++){
int damage = h.getDamage();
cout << \" Total damage = \" << damage << endl;
cout << endl;
}
cout << endl;\\
cout << \"Examples of \" << e.getSpecies() << \" damage: \" << endl;
for (int i = 0; i < 10; i++){
int damage = e.getDamage();
cout << \" Total damage = \" << damage << endl;
cout << endl;
}
cout << endl;
cout << \"Examples of \" << c.getSpecies() << \" damage: \" << endl;
for (int i = 0; i < 10; i++){
int damage = c.getDamage();
cout << \" Total damage = \" << damage << endl;
cout << endl;
}
cout << endl;
cout << \"Examples of \" << b.getSpecies() << \" damage: \" << endl;
for (int i = 0; i < 10; i++){
int damage = b.getDamage();
cout << \" Total damage = \" << damage << endl;
cout << endl;
}
cout << endl;
}



