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.
		
		
		
		
		
			
		
			
				
	
	
		
			113 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			113 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.ai;
 | 
						|
 | 
						|
import java.util.Iterator;
 | 
						|
import java.util.List;
 | 
						|
import net.minecraft.entity.passive.EntityAnimal;
 | 
						|
 | 
						|
public class EntityAIFollowParent extends EntityAIBase
 | 
						|
{
 | 
						|
    /** The child that is following its parent. */
 | 
						|
    EntityAnimal childAnimal;
 | 
						|
    EntityAnimal parentAnimal;
 | 
						|
    double field_75347_c;
 | 
						|
    private int field_75345_d;
 | 
						|
    private static final String __OBFID = "CL_00001586";
 | 
						|
 | 
						|
    public EntityAIFollowParent(EntityAnimal p_i1626_1_, double p_i1626_2_)
 | 
						|
    {
 | 
						|
        this.childAnimal = p_i1626_1_;
 | 
						|
        this.field_75347_c = p_i1626_2_;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns whether the EntityAIBase should begin execution.
 | 
						|
     */
 | 
						|
    public boolean shouldExecute()
 | 
						|
    {
 | 
						|
        if (this.childAnimal.getGrowingAge() >= 0)
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            List list = this.childAnimal.worldObj.getEntitiesWithinAABB(this.childAnimal.getClass(), this.childAnimal.boundingBox.expand(8.0D, 4.0D, 8.0D));
 | 
						|
            EntityAnimal entityanimal = null;
 | 
						|
            double d0 = Double.MAX_VALUE;
 | 
						|
            Iterator iterator = list.iterator();
 | 
						|
 | 
						|
            while (iterator.hasNext())
 | 
						|
            {
 | 
						|
                EntityAnimal entityanimal1 = (EntityAnimal)iterator.next();
 | 
						|
 | 
						|
                if (entityanimal1.getGrowingAge() >= 0)
 | 
						|
                {
 | 
						|
                    double d1 = this.childAnimal.getDistanceSqToEntity(entityanimal1);
 | 
						|
 | 
						|
                    if (d1 <= d0)
 | 
						|
                    {
 | 
						|
                        d0 = d1;
 | 
						|
                        entityanimal = entityanimal1;
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            if (entityanimal == null)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (d0 < 9.0D)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                this.parentAnimal = entityanimal;
 | 
						|
                return true;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns whether an in-progress EntityAIBase should continue executing
 | 
						|
     */
 | 
						|
    public boolean continueExecuting()
 | 
						|
    {
 | 
						|
        if (!this.parentAnimal.isEntityAlive())
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            double d0 = this.childAnimal.getDistanceSqToEntity(this.parentAnimal);
 | 
						|
            return d0 >= 9.0D && d0 <= 256.0D;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute a one shot task or start executing a continuous task
 | 
						|
     */
 | 
						|
    public void startExecuting()
 | 
						|
    {
 | 
						|
        this.field_75345_d = 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Resets the task
 | 
						|
     */
 | 
						|
    public void resetTask()
 | 
						|
    {
 | 
						|
        this.parentAnimal = null;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Updates the task
 | 
						|
     */
 | 
						|
    public void updateTask()
 | 
						|
    {
 | 
						|
        if (--this.field_75345_d <= 0)
 | 
						|
        {
 | 
						|
            this.field_75345_d = 10;
 | 
						|
            this.childAnimal.getNavigator().tryMoveToEntityLiving(this.parentAnimal, this.field_75347_c);
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |