-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactorsSource.cpp
147 lines (130 loc) · 3.44 KB
/
actorsSource.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include "actors.h"
namespace textAdventure{
enemy::enemy(const std::string& eName){
enemyName = eName;
}
std::string enemy::getEnemyName(){
return enemyName;
}
void enemy::setStrength(int strength){
enemyStrength += strength;
}
int enemy::getEnemyStrength(){
return enemyStrength;
}
//Could be used if enemy has both health and strength
/*void enemy::decreaseHP(int healthLoss){
enemyStrength += healthLoss;
}*/
void enemy::setWeapon(Weapon* aWeapon){
enemyWeapon = aWeapon;
}
int enemy::enemyWeaponStrength(){
return enemyWeapon->getWeaponStrength();
}
mainActor::mainActor(const std::string& nName, inventory* anInventory) : actorName(nName){
userInventory = anInventory;
}
std::string mainActor::getActorName(){
return actorName;
}
void mainActor::setStrength(int str){
battleRatio = str;
}
int mainActor::getActorHealth(){
return currentHP;
}
void mainActor::changeHP(int healthChange){
currentHP += healthChange;
}
void mainActor::pickUpWeapon(Weapon* aWeapon){
userInventory->addWeapon(aWeapon);
}
void mainActor::pickUpHP(healthPack* hp){
userInventory->addHealthPack(hp);
}
void mainActor::displayInventory(){
userInventory->displayWeapons();
userInventory->displayhealthPacks();
}
void mainActor::applyHealth(){
healthPack* aHP = userInventory->getHealthPacks().back();
currentHP += aHP->getHealthValue();
}
Weapon* mainActor::selectWeapon(std::string weaponName){
return userInventory->selectWeapon(weaponName);
}
Weapon::Weapon(const std::string& wName) : weaponName(wName){
if (wName == "knife"){
damagePoints = 7;
}
else if (wName == "hatchet"){
damagePoints = 9;
}
else if (wName == "bat"){
damagePoints = 5;
}
}
std::string Weapon::useWeapon(){
return "stab";
}
int Weapon::getWeaponStrength(){
return damagePoints;
}
std::string Weapon::getName(){
return weaponName;
}
healthPack::healthPack(int hp) : hpStrength(hp){}
int healthPack::getHealthValue(){
return hpStrength;
}
void inventory::discardHealthPack(healthPack* hp){
for (healthPack* eachHp : healthPacks){
if (hp->getHealthValue() == eachHp->getHealthValue()){
delete eachHp;
}
}
}
void mainActor::destroyHP(healthPack* hp){
userInventory->discardHealthPack(hp);
}
/*void healthPack::addHealth(mainActor* anActor){
anActor->changeHP(hpStrength);
}*/
std::vector<healthPack*> inventory::getHealthPacks(){
return healthPacks;
}
void inventory::addHealthPack(healthPack* anHp){
healthPacks.push_back(anHp);
}
void inventory::addWeapon(Weapon* aWeapon){
//Add check for duplicate weapons
weapons.insert(MyPair(aWeapon->getName(), aWeapon));
}
void inventory::displayWeapons(){
std::map<std::string, Weapon*>::iterator iter;
std::cout << "weapons list " << std::endl;
for (iter = weapons.begin(); iter != weapons.end(); iter++){
std::cout << iter->first << " strength " << iter->second->getWeaponStrength() << std::endl;
}
}
void inventory::displayhealthPacks(){
for (healthPack* eachHP : healthPacks){
if (eachHP != nullptr){
std::cout << "You have a health pack with " << eachHP->getHealthValue() << " hp" << std::endl;
}
}
}
Weapon* inventory::selectWeapon(std::string weaponName){
std::map<std::string, Weapon*>::iterator iter;
std::cout << "weapons list " << std::endl;
for (iter = weapons.begin(); iter != weapons.end(); iter++){
if (iter->second->getName() == weaponName){
return iter->second;
}
else{
continue;
}
}
}
}