mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 04:33:37 +00:00
83 lines
2.9 KiB
C++
83 lines
2.9 KiB
C++
#include "../../Platform/stdafx.h"
|
|
#include "../../Headers/net.minecraft.world.entity.ai.control.h"
|
|
#include "../../Headers/net.minecraft.world.entity.ai.util.h"
|
|
#include "../../Headers/net.minecraft.world.entity.ai.navigation.h"
|
|
#include "../../Headers/net.minecraft.world.entity.npc.h"
|
|
#include "../../Headers/net.minecraft.world.entity.h"
|
|
#include "../../Headers/net.minecraft.world.level.h"
|
|
#include "../../Headers/net.minecraft.world.phys.h"
|
|
#include "../../Util/BasicTypeContainers.h"
|
|
#include "PlayGoal.h"
|
|
|
|
PlayGoal::PlayGoal(Villager* mob, double speedModifier) {
|
|
followFriend = std::weak_ptr<LivingEntity>();
|
|
wantedX = wantedY = wantedZ = 0.0;
|
|
playTime = 0;
|
|
|
|
this->mob = mob;
|
|
this->speedModifier = speedModifier;
|
|
setRequiredControlFlags(Control::MoveControlFlag);
|
|
}
|
|
|
|
bool PlayGoal::canUse() {
|
|
if (mob->getAge() >= 0) return false;
|
|
if (mob->getRandom()->nextInt(400) != 0) return false;
|
|
|
|
std::vector<std::shared_ptr<Entity> >* children =
|
|
mob->level->getEntitiesOfClass(typeid(Villager),
|
|
mob->bb->grow(6, 3, 6));
|
|
double closestDistSqr = Double::MAX_VALUE;
|
|
// for (Entity c : children)
|
|
for (AUTO_VAR(it, children->begin()); it != children->end(); ++it) {
|
|
std::shared_ptr<Entity> c = *it;
|
|
if (c.get() == mob) continue;
|
|
std::shared_ptr<Villager> friendV =
|
|
std::dynamic_pointer_cast<Villager>(c);
|
|
if (friendV->isChasing()) continue;
|
|
if (friendV->getAge() >= 0) continue;
|
|
double distSqr = friendV->distanceToSqr(mob->shared_from_this());
|
|
if (distSqr > closestDistSqr) continue;
|
|
closestDistSqr = distSqr;
|
|
followFriend = std::weak_ptr<LivingEntity>(friendV);
|
|
}
|
|
delete children;
|
|
|
|
if (followFriend.lock() == NULL) {
|
|
Vec3* pos = RandomPos::getPos(
|
|
std::dynamic_pointer_cast<PathfinderMob>(mob->shared_from_this()),
|
|
16, 3);
|
|
if (pos == NULL) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool PlayGoal::canContinueToUse() {
|
|
return playTime > 0 && followFriend.lock() != NULL;
|
|
}
|
|
|
|
void PlayGoal::start() {
|
|
if (followFriend.lock() != NULL) mob->setChasing(true);
|
|
playTime = 1000;
|
|
}
|
|
|
|
void PlayGoal::stop() {
|
|
mob->setChasing(false);
|
|
followFriend = std::weak_ptr<LivingEntity>();
|
|
}
|
|
|
|
void PlayGoal::tick() {
|
|
--playTime;
|
|
if (followFriend.lock() != NULL) {
|
|
if (mob->distanceToSqr(followFriend.lock()) > 2 * 2)
|
|
mob->getNavigation()->moveTo(followFriend.lock(), speedModifier);
|
|
} else {
|
|
if (mob->getNavigation()->isDone()) {
|
|
Vec3* pos =
|
|
RandomPos::getPos(std::dynamic_pointer_cast<PathfinderMob>(
|
|
mob->shared_from_this()),
|
|
16, 3);
|
|
if (pos == NULL) return;
|
|
mob->getNavigation()->moveTo(pos->x, pos->y, pos->z, speedModifier);
|
|
}
|
|
}
|
|
} |