This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
25 lines
723 B
C++
25 lines
723 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.entity.h"
|
|
#include "net.minecraft.world.entity.animal.h"
|
|
#include "OwnerHurtByTargetGoal.h"
|
|
|
|
OwnerHurtByTargetGoal::OwnerHurtByTargetGoal(TamableAnimal *tameAnimal) : TargetGoal(tameAnimal, 32, false)
|
|
{
|
|
this->tameAnimal = tameAnimal;
|
|
setRequiredControlFlags(TargetGoal::TargetFlag);
|
|
}
|
|
|
|
bool OwnerHurtByTargetGoal::canUse()
|
|
{
|
|
if (!tameAnimal->isTame()) return false;
|
|
std::shared_ptr<Mob> owner = tameAnimal->getOwner();
|
|
if (owner == NULL) return false;
|
|
ownerLastHurtBy = weak_ptr<Mob>(owner->getLastHurtByMob());
|
|
return canAttack(ownerLastHurtBy.lock(), false);
|
|
}
|
|
|
|
void OwnerHurtByTargetGoal::start()
|
|
{
|
|
mob->setTarget(ownerLastHurtBy.lock());
|
|
TargetGoal::start();
|
|
} |