/* * This file is part of MyPet * * Copyright © 2011-2016 Keyle * MyPet is licensed under the GNU Lesser General Public License. * * MyPet is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MyPet is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.Keyle.MyPet.compat.v1_11_R1.entity.ai.target; import de.Keyle.MyPet.MyPetApi; import de.Keyle.MyPet.api.entity.MyPet; import de.Keyle.MyPet.api.entity.ai.AIGoal; import de.Keyle.MyPet.api.entity.ai.target.TargetPriority; import de.Keyle.MyPet.api.skill.skills.BehaviorInfo.BehaviorState; import de.Keyle.MyPet.api.util.Compat; import de.Keyle.MyPet.compat.v1_11_R1.entity.EntityMyPet; import de.Keyle.MyPet.skill.skills.Behavior; import net.minecraft.server.v1_11_R1.EntityLiving; import net.minecraft.server.v1_11_R1.EntityMonster; import net.minecraft.server.v1_11_R1.EntityPlayer; import org.bukkit.craftbukkit.v1_11_R1.entity.CraftLivingEntity; import org.bukkit.craftbukkit.v1_11_R1.entity.CraftPlayer; import org.bukkit.entity.LivingEntity; @Compat("v1_11_R1") public class BehaviorFarmTarget extends AIGoal { private MyPet myPet; private EntityMyPet petEntity; private EntityPlayer petOwnerEntity; private EntityLiving target; private float range; private Behavior behaviorSkill = null; public BehaviorFarmTarget(EntityMyPet petEntity, float range) { this.petEntity = petEntity; this.petOwnerEntity = ((CraftPlayer) petEntity.getOwner().getPlayer()).getHandle(); this.myPet = petEntity.getMyPet(); this.range = range; if (myPet.getSkills().hasSkill(Behavior.class)) { behaviorSkill = myPet.getSkills().getSkill(Behavior.class).get(); } } @Override public boolean shouldStart() { if (behaviorSkill == null || !behaviorSkill.isActive() || behaviorSkill.getBehavior() != BehaviorState.Farm) { return false; } if (myPet.getDamage() <= 0 && myPet.getRangedDamage() <= 0) { return false; } if (!petEntity.canMove()) { return false; } if (petEntity.hasTarget()) { return false; } for (Object entityObj : this.petEntity.world.a(EntityMonster.class, this.petOwnerEntity.getBoundingBox().grow((double) range, (double) range, (double) range))) { EntityMonster entityMonster = (EntityMonster) entityObj; if (!entityMonster.isAlive() || petEntity.h(entityMonster) > 91) { continue; } if (!MyPetApi.getHookHelper().canHurt(myPet.getOwner().getPlayer(), entityMonster.getBukkitEntity())) { continue; } this.target = entityMonster; return true; } return false; } @Override public boolean shouldFinish() { if (!petEntity.canMove()) { return true; } if (!this.petEntity.hasTarget()) { return true; } EntityLiving target = ((CraftLivingEntity) this.petEntity.getTarget()).getHandle(); if (!target.isAlive()) { return true; } else if (behaviorSkill.getBehavior() != BehaviorState.Farm) { return true; } else if (myPet.getDamage() <= 0 && myPet.getRangedDamage() <= 0) { return true; } else if (target.world != petEntity.world) { return true; } else if (petEntity.h(target) > 400) { return true; } else if (petEntity.h(((CraftPlayer) petEntity.getOwner().getPlayer()).getHandle()) > 600) { return true; } return false; } @Override public void start() { petEntity.setTarget((LivingEntity) this.target.getBukkitEntity(), TargetPriority.Farm); } @Override public void finish() { petEntity.forgetTarget(); target = null; } }