aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/DefendVillageTargetGoal.cpp
diff options
context:
space:
mode:
authordaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
committerdaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
commitb691c43c44ff180d10e7d4a9afc83b98551ff586 (patch)
tree3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.World/DefendVillageTargetGoal.cpp
parentdef8cb415354ac390b7e89052a50605285f1aca9 (diff)
Initial commit
Diffstat (limited to 'Minecraft.World/DefendVillageTargetGoal.cpp')
-rw-r--r--Minecraft.World/DefendVillageTargetGoal.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/Minecraft.World/DefendVillageTargetGoal.cpp b/Minecraft.World/DefendVillageTargetGoal.cpp
new file mode 100644
index 00000000..ad6b3fd8
--- /dev/null
+++ b/Minecraft.World/DefendVillageTargetGoal.cpp
@@ -0,0 +1,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();
+} \ No newline at end of file