-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClapTrap.cpp
125 lines (107 loc) · 3.62 KB
/
ClapTrap.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ClapTrap.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aperez-b <aperez-b@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/22 14:14:48 by aperez-b #+# #+# */
/* Updated: 2022/09/29 15:27:24 by aperez-b ### ########.fr */
/* */
/* ************************************************************************** */
#include "ClapTrap.hpp"
ClapTrap::ClapTrap(void): _name("default"), _hp(100), _energy_points(50), _damage(20)
{
std::cout << "ClapTrap " << this->_name << " created with default constructor." << std::endl;
}
ClapTrap::ClapTrap(std::string const &name): _name(name), _hp(100), _energy_points(50), _damage(20)
{
std::cout << "ClapTrap " << this->_name << " created." << std::endl;
}
ClapTrap::~ClapTrap(void)
{
std::cout << "ClapTrap " << this->_name << " destroyed." << std::endl;
}
ClapTrap::ClapTrap(ClapTrap const ©)
{
std::cout << "ClapTrap " << this->_name << " copied." << std::endl;
*this = copy;
}
void ClapTrap::attack(std::string const &target)
{
if (this->_energy_points && this->_hp > 0)
{
std::cout << "ClapTrap " << this->_name << " attacked " << target << ", causing " << this->_damage << " point(s) of damage!" << std::endl;
this->_energy_points--;
}
if (this->_hp <= 0)
std::cout << "ClapTrap " << this->_name << " is dead!" << std::endl;
else if (!this->_energy_points)
std::cout << "ClapTrap " << this->_name << " is out of energy points!" << std::endl;
}
void ClapTrap::takeDamage(unsigned int amount)
{
if (this->_hp > 0)
{
std::cout << "ClapTrap " << this->_name << " took " << amount << " point(s) of damage!" << std::endl;
this->_hp -= amount;
}
else
std::cout << "STOP! ClapTrap " << this->_name << " is already dead :(" << std::endl;
if (this->_hp < 0)
this->_hp = 0;
}
void ClapTrap::beRepaired(unsigned int amount)
{
if (this->_hp > 0 && this->_energy_points)
{
std::cout << "ClapTrap " << this->_name << " healed " << amount << " point(s)." << std::endl;
this->_hp += amount;
this->_energy_points--;
}
if (this->_hp <= 0)
std::cout << "Cannot repair because: ClapTrap " << this->_name << " is dead." << std::endl;
else if (!this->_energy_points)
std::cout << "ClapTrap " << this->_name << " is out of energy points!" << std::endl;
}
ClapTrap &ClapTrap::operator=(const ClapTrap ©)
{
std::cout << "Assignment operator for ClapTrap called." << std::endl;
this->_name = copy.get_name();
this->_hp = copy.get_hp();
this->_energy_points = copy.get_energy_points();
this->_damage = copy.get_damage();
return (*this);
}
std::string const &ClapTrap::get_name(void) const
{
return (this->_name);
}
int const &ClapTrap::get_hp(void) const
{
return (this->_hp);
}
int const &ClapTrap::get_energy_points(void) const
{
return (this->_energy_points);
}
int const &ClapTrap::get_damage(void) const
{
return (this->_damage);
}
void ClapTrap::set_name(std::string const &name)
{
this->_name = name;
}
void ClapTrap::set_hp(int const &value)
{
this->_hp = value;
}
void ClapTrap::set_energy_points(int const &value)
{
this->_energy_points = value;
}
void ClapTrap::set_damage(int const &value)
{
this->_damage = value;
}