You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.ai;
 | 
						|
 | 
						|
import net.minecraft.entity.passive.EntityWolf;
 | 
						|
import net.minecraft.entity.player.EntityPlayer;
 | 
						|
import net.minecraft.init.Items;
 | 
						|
import net.minecraft.item.ItemStack;
 | 
						|
import net.minecraft.world.World;
 | 
						|
 | 
						|
public class EntityAIBeg extends EntityAIBase
 | 
						|
{
 | 
						|
    private EntityWolf theWolf;
 | 
						|
    private EntityPlayer thePlayer;
 | 
						|
    private World worldObject;
 | 
						|
    private float minPlayerDistance;
 | 
						|
    private int field_75384_e;
 | 
						|
    private static final String __OBFID = "CL_00001576";
 | 
						|
 | 
						|
    public EntityAIBeg(EntityWolf p_i1617_1_, float p_i1617_2_)
 | 
						|
    {
 | 
						|
        this.theWolf = p_i1617_1_;
 | 
						|
        this.worldObject = p_i1617_1_.worldObj;
 | 
						|
        this.minPlayerDistance = p_i1617_2_;
 | 
						|
        this.setMutexBits(2);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns whether the EntityAIBase should begin execution.
 | 
						|
     */
 | 
						|
    public boolean shouldExecute()
 | 
						|
    {
 | 
						|
        this.thePlayer = this.worldObject.getClosestPlayerToEntity(this.theWolf, (double)this.minPlayerDistance);
 | 
						|
        return this.thePlayer == null ? false : this.hasPlayerGotBoneInHand(this.thePlayer);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns whether an in-progress EntityAIBase should continue executing
 | 
						|
     */
 | 
						|
    public boolean continueExecuting()
 | 
						|
    {
 | 
						|
        return !this.thePlayer.isEntityAlive() ? false : (this.theWolf.getDistanceSqToEntity(this.thePlayer) > (double)(this.minPlayerDistance * this.minPlayerDistance) ? false : this.field_75384_e > 0 && this.hasPlayerGotBoneInHand(this.thePlayer));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute a one shot task or start executing a continuous task
 | 
						|
     */
 | 
						|
    public void startExecuting()
 | 
						|
    {
 | 
						|
        this.theWolf.func_70918_i(true);
 | 
						|
        this.field_75384_e = 40 + this.theWolf.getRNG().nextInt(40);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Resets the task
 | 
						|
     */
 | 
						|
    public void resetTask()
 | 
						|
    {
 | 
						|
        this.theWolf.func_70918_i(false);
 | 
						|
        this.thePlayer = null;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Updates the task
 | 
						|
     */
 | 
						|
    public void updateTask()
 | 
						|
    {
 | 
						|
        this.theWolf.getLookHelper().setLookPosition(this.thePlayer.posX, this.thePlayer.posY + (double)this.thePlayer.getEyeHeight(), this.thePlayer.posZ, 10.0F, (float)this.theWolf.getVerticalFaceSpeed());
 | 
						|
        --this.field_75384_e;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets if the Player has the Bone in the hand.
 | 
						|
     */
 | 
						|
    private boolean hasPlayerGotBoneInHand(EntityPlayer p_75382_1_)
 | 
						|
    {
 | 
						|
        ItemStack itemstack = p_75382_1_.inventory.getCurrentItem();
 | 
						|
        return itemstack == null ? false : (!this.theWolf.isTamed() && itemstack.getItem() == Items.bone ? true : this.theWolf.isBreedingItem(itemstack));
 | 
						|
    }
 | 
						|
} |