ScavTrap guard
This commit is contained in:
@@ -30,10 +30,7 @@ ScavTrap::ScavTrap(std::string name) : ClapTrap(name)
|
|||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
ScavTrap::ScavTrap(const ScavTrap &other) : ClapTrap(other)
|
ScavTrap::ScavTrap(const ScavTrap &other) : ClapTrap(other) { }
|
||||||
{
|
|
||||||
*this = other;
|
|
||||||
}
|
|
||||||
|
|
||||||
ScavTrap& ScavTrap::operator=(const ScavTrap &other)
|
ScavTrap& ScavTrap::operator=(const ScavTrap &other)
|
||||||
{
|
{
|
||||||
@@ -71,6 +68,17 @@ void ScavTrap::attack(const std::string &target)
|
|||||||
|
|
||||||
void ScavTrap::guardGate()
|
void ScavTrap::guardGate()
|
||||||
{
|
{
|
||||||
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
|
if (this->guardGate)
|
||||||
|
{
|
||||||
|
this->guardGate = false;
|
||||||
|
std::cout << "ScavTrap " << this->name << " is not in Gate keeper mode"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this->guardGate = true;
|
||||||
|
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
class ScavTrap : public ClapTrap
|
class ScavTrap : public ClapTrap
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
|
boold guarding_gate;
|
||||||
public:
|
public:
|
||||||
ScavTrap();
|
ScavTrap();
|
||||||
ScavTrap(std::string name);
|
ScavTrap(std::string name);
|
||||||
|
|||||||
@@ -68,6 +68,17 @@ void ScavTrap::attack(const std::string &target)
|
|||||||
|
|
||||||
void ScavTrap::guardGate()
|
void ScavTrap::guardGate()
|
||||||
{
|
{
|
||||||
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
|
if (this->guardGate)
|
||||||
|
{
|
||||||
|
this->guardGate = false;
|
||||||
|
std::cout << "ScavTrap " << this->name << " is not in Gate keeper mode"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this->guardGate = true;
|
||||||
|
std::cout << "ScavTrap " << this->name << " is in Gate keeper mode"
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
class ScavTrap : public ClapTrap
|
class ScavTrap : public ClapTrap
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
|
boold guarding_gate;
|
||||||
public:
|
public:
|
||||||
ScavTrap();
|
ScavTrap();
|
||||||
ScavTrap(std::string name);
|
ScavTrap(std::string name);
|
||||||
|
|||||||
Reference in New Issue
Block a user