-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.cpp
187 lines (150 loc) · 2.99 KB
/
User.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <cstdlib>
#include "User.h"
using namespace std;
User::User() {
name = "";
health = 100;
money = 100000;
fuel = 200000;
suitGrade =1;
numPlanetsExplored = 0;
numSaved = 0;
numLost = 0;
popLeft = 8000;
weapon[0][0] = "Light Saber";
weapon[0][1] ="1";
weapon[1][0] = "Blaster";
weapon[1][1] ="0";
weapon[2][0] = "Beam gun";
weapon[2][1] ="0";
for(int i =0; i < 2; i++){
crew[i] = 0;
}
suitHealth = 100; // The suits condition
healthKits = 0; // healing kit for health
translator = false; // alien communicaiton
}
string User::getName() {
return name;
}
void User::setName(string uname) {
name = uname;
}
int User::getHealth() {
return health;
}
void User::setHealth(int hl) {
if(hl>100) {
health = 100;
} else if (hl<0) {
health = 0;
} else {
health = hl;
}
}
int User::getHealthKits() {
return healthKits;
}
void User::setHealthKits(int num) {
healthKits = num;
}
int User::getSuitHealth() {
return suitHealth;
}
void User::setSuitHealth(int h) {
suitHealth = h;
}
int User::getMoney() {
return money;
}
void User::setMoney(int mn) {
money = mn;
}
int User::getFuel() {
return fuel;
}
void User::setFuel(int fu) {
fuel = fu;
}
int User::getSuitGrade() {
return suitGrade;
}
void User::setSuitGrade(int grade) {
suitGrade = grade+1;
}
int User::getWeapon(int type) {
int values;
if (type == 3){
int saber = stoi(weapon[0][1]);
int blaster = stoi(weapon[1][1]);
int beam = stoi(weapon[2][1]);
values = saber+blaster+beam; //weapon <2
}
else{
values = stoi(weapon[type][1]);
}
return values;
}
void User::setWeapon(int type, string amount) {
int inventory = getWeapon(type);
weapon[type][1] = to_string((stoi(amount)+inventory));
}
int User::getCrew(int type) {
int ph = crew[type];
return ph;
}
void User::setCrew(int type, int amount){
crew[type] = amount;
}
bool User::getTranslator() {
return translator;
}
void User::setTranslator(bool n) {
translator = n;
}
int User::getNumExplored() {
return numPlanetsExplored;
}
void User::setNumExplored(int num) {
numPlanetsExplored = num;
}
int User::getNumSaved() {
return numSaved;
}
void User::setNumSaved(int num) {
numSaved = num;
}
int User::getNumLost() {
return numLost;
}
void User::setNumLost(int num) {
numLost = num;
}
int User::getRepHabit() {
return numRepHabit;
}
void User::setRepHabit(int num) {
numRepHabit = num;
}
int User::getRepInhabit() {
return numRepInhabit;
}
void User::setRepInhabit(int num) {
numRepInhabit = num;
}
int User::getPopLeft() {
return popLeft;
}
void User::setPopLeft(int num) {
if(popLeft-num<0) {
popLeft = 0;
} else {
popLeft -= num;
}
}