aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/DefendVillageTargetGoal.cpp
blob: ad6b3fd8842e17859fa06227d9998df2f39e16fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "stdafx.h"
#include "net.minecraft.world.entity.ai.village.h"
#include "net.minecraft.world.entity.animal.h"
#include "DefendVillageTargetGoal.h"

DefendVillageTargetGoal::DefendVillageTargetGoal(VillagerGolem *golem) : TargetGoal(golem, 16, false, true)
{
	this->golem = golem;
	setRequiredControlFlags(TargetGoal::TargetFlag);
}

bool DefendVillageTargetGoal::canUse()
{
	shared_ptr<Village> village = golem->getVillage();
	if (village == NULL) return false;
	potentialTarget = weak_ptr<Mob>(village->getClosestAggressor(dynamic_pointer_cast<Mob>(golem->shared_from_this())));
	return canAttack(potentialTarget.lock(), false);
}

void DefendVillageTargetGoal::start()
{
	golem->setTarget(potentialTarget.lock());
	TargetGoal::start();
}