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.
		
		
		
		
		
			
		
			
				
	
	
		
			510 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			510 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.item;
 | 
						|
 | 
						|
import java.util.Iterator;
 | 
						|
import net.minecraft.block.material.Material;
 | 
						|
import net.minecraft.entity.Entity;
 | 
						|
import net.minecraft.entity.player.EntityPlayer;
 | 
						|
import net.minecraft.init.Blocks;
 | 
						|
import net.minecraft.init.Items;
 | 
						|
import net.minecraft.item.Item;
 | 
						|
import net.minecraft.item.ItemStack;
 | 
						|
import net.minecraft.nbt.NBTTagCompound;
 | 
						|
import net.minecraft.stats.AchievementList;
 | 
						|
import net.minecraft.util.DamageSource;
 | 
						|
import net.minecraft.util.MathHelper;
 | 
						|
import net.minecraft.util.StatCollector;
 | 
						|
import net.minecraft.world.World;
 | 
						|
import net.minecraftforge.common.MinecraftForge;
 | 
						|
import net.minecraftforge.event.entity.item.ItemExpireEvent;
 | 
						|
import net.minecraftforge.event.entity.player.EntityItemPickupEvent;
 | 
						|
import org.apache.logging.log4j.LogManager;
 | 
						|
import org.apache.logging.log4j.Logger;
 | 
						|
import cpw.mods.fml.common.FMLCommonHandler;
 | 
						|
import cpw.mods.fml.common.eventhandler.Event.Result;
 | 
						|
 | 
						|
public class EntityItem extends Entity
 | 
						|
{
 | 
						|
    private static final Logger logger = LogManager.getLogger();
 | 
						|
    /** The age of this EntityItem (used to animate it up and down as well as expire it) */
 | 
						|
    public int age;
 | 
						|
    public int delayBeforeCanPickup;
 | 
						|
    /** The health of this EntityItem. (For example, damage for tools) */
 | 
						|
    private int health;
 | 
						|
    private String field_145801_f;
 | 
						|
    private String field_145802_g;
 | 
						|
    /** The EntityItem's random initial float height. */
 | 
						|
    public float hoverStart;
 | 
						|
    private static final String __OBFID = "CL_00001669";
 | 
						|
 | 
						|
    /**
 | 
						|
     * The maximum age of this EntityItem.  The item is expired once this is reached.
 | 
						|
     */
 | 
						|
    public int lifespan = 6000;
 | 
						|
 | 
						|
    public EntityItem(World worldIn, double x, double y, double z)
 | 
						|
    {
 | 
						|
        super(worldIn);
 | 
						|
        this.health = 5;
 | 
						|
        this.hoverStart = (float)(Math.random() * Math.PI * 2.0D);
 | 
						|
        this.setSize(0.25F, 0.25F);
 | 
						|
        this.yOffset = this.height / 2.0F;
 | 
						|
        this.setPosition(x, y, z);
 | 
						|
        this.rotationYaw = (float)(Math.random() * 360.0D);
 | 
						|
        this.motionX = (double)((float)(Math.random() * 0.20000000298023224D - 0.10000000149011612D));
 | 
						|
        this.motionY = 0.20000000298023224D;
 | 
						|
        this.motionZ = (double)((float)(Math.random() * 0.20000000298023224D - 0.10000000149011612D));
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityItem(World worldIn, double x, double y, double z, ItemStack stack)
 | 
						|
    {
 | 
						|
        this(worldIn, x, y, z);        
 | 
						|
        this.setEntityItemStack(stack);
 | 
						|
        this.lifespan = (stack.getItem() == null ? 6000 : stack.getItem().getEntityLifespan(stack, worldIn));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * returns if this entity triggers Block.onEntityWalking on the blocks they walk on. used for spiders and wolves to
 | 
						|
     * prevent them from trampling crops
 | 
						|
     */
 | 
						|
    protected boolean canTriggerWalking()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityItem(World p_i1711_1_)
 | 
						|
    {
 | 
						|
        super(p_i1711_1_);
 | 
						|
        this.health = 5;
 | 
						|
        this.hoverStart = (float)(Math.random() * Math.PI * 2.0D);
 | 
						|
        this.setSize(0.25F, 0.25F);
 | 
						|
        this.yOffset = this.height / 2.0F;
 | 
						|
    }
 | 
						|
 | 
						|
    protected void entityInit()
 | 
						|
    {
 | 
						|
        this.getDataWatcher().addObjectByDataType(10, 5);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called to update the entity's position/logic.
 | 
						|
     */
 | 
						|
    public void onUpdate()
 | 
						|
    {
 | 
						|
        ItemStack stack = this.getDataWatcher().getWatchableObjectItemStack(10);
 | 
						|
        if (stack != null && stack.getItem() != null)
 | 
						|
        {
 | 
						|
            if (stack.getItem().onEntityItemUpdate(this))
 | 
						|
            {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        if (this.getEntityItem() == null)
 | 
						|
        {
 | 
						|
            this.setDead();
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            super.onUpdate();
 | 
						|
 | 
						|
            if (this.delayBeforeCanPickup > 0)
 | 
						|
            {
 | 
						|
                --this.delayBeforeCanPickup;
 | 
						|
            }
 | 
						|
 | 
						|
            this.prevPosX = this.posX;
 | 
						|
            this.prevPosY = this.posY;
 | 
						|
            this.prevPosZ = this.posZ;
 | 
						|
            this.motionY -= 0.03999999910593033D;
 | 
						|
            this.noClip = this.func_145771_j(this.posX, (this.boundingBox.minY + this.boundingBox.maxY) / 2.0D, this.posZ);
 | 
						|
            this.moveEntity(this.motionX, this.motionY, this.motionZ);
 | 
						|
            boolean flag = (int)this.prevPosX != (int)this.posX || (int)this.prevPosY != (int)this.posY || (int)this.prevPosZ != (int)this.posZ;
 | 
						|
 | 
						|
            if (flag || this.ticksExisted % 25 == 0)
 | 
						|
            {
 | 
						|
                if (this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.posY), MathHelper.floor_double(this.posZ)).getMaterial() == Material.lava)
 | 
						|
                {
 | 
						|
                    this.motionY = 0.20000000298023224D;
 | 
						|
                    this.motionX = (double)((this.rand.nextFloat() - this.rand.nextFloat()) * 0.2F);
 | 
						|
                    this.motionZ = (double)((this.rand.nextFloat() - this.rand.nextFloat()) * 0.2F);
 | 
						|
                    this.playSound("random.fizz", 0.4F, 2.0F + this.rand.nextFloat() * 0.4F);
 | 
						|
                }
 | 
						|
 | 
						|
                if (!this.worldObj.isRemote)
 | 
						|
                {
 | 
						|
                    this.searchForOtherItemsNearby();
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            float f = 0.98F;
 | 
						|
 | 
						|
            if (this.onGround)
 | 
						|
            {
 | 
						|
                f = this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.boundingBox.minY) - 1, MathHelper.floor_double(this.posZ)).slipperiness * 0.98F;
 | 
						|
            }
 | 
						|
 | 
						|
            this.motionX *= (double)f;
 | 
						|
            this.motionY *= 0.9800000190734863D;
 | 
						|
            this.motionZ *= (double)f;
 | 
						|
 | 
						|
            if (this.onGround)
 | 
						|
            {
 | 
						|
                this.motionY *= -0.5D;
 | 
						|
            }
 | 
						|
 | 
						|
            ++this.age;
 | 
						|
 | 
						|
            ItemStack item = getDataWatcher().getWatchableObjectItemStack(10);
 | 
						|
    
 | 
						|
            if (!this.worldObj.isRemote && this.age >= lifespan)
 | 
						|
            {
 | 
						|
                if (item != null)
 | 
						|
                {   
 | 
						|
                    ItemExpireEvent event = new ItemExpireEvent(this, (item.getItem() == null ? 6000 : item.getItem().getEntityLifespan(item, worldObj)));
 | 
						|
                    if (MinecraftForge.EVENT_BUS.post(event))
 | 
						|
                    {
 | 
						|
                        lifespan += event.extraLife;
 | 
						|
                    }
 | 
						|
                    else
 | 
						|
                    {
 | 
						|
                        this.setDead();
 | 
						|
                    }
 | 
						|
                }
 | 
						|
                else
 | 
						|
                {
 | 
						|
                    this.setDead();
 | 
						|
                }
 | 
						|
            }
 | 
						|
    
 | 
						|
            if (item != null && item.stackSize <= 0)
 | 
						|
            {
 | 
						|
                this.setDead();
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Looks for other itemstacks nearby and tries to stack them together
 | 
						|
     */
 | 
						|
    private void searchForOtherItemsNearby()
 | 
						|
    {
 | 
						|
        Iterator iterator = this.worldObj.getEntitiesWithinAABB(EntityItem.class, this.boundingBox.expand(0.5D, 0.0D, 0.5D)).iterator();
 | 
						|
 | 
						|
        while (iterator.hasNext())
 | 
						|
        {
 | 
						|
            EntityItem entityitem = (EntityItem)iterator.next();
 | 
						|
            this.combineItems(entityitem);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Tries to merge this item with the item passed as the parameter. Returns true if successful. Either this item or
 | 
						|
     * the other item will  be removed from the world.
 | 
						|
     */
 | 
						|
    public boolean combineItems(EntityItem p_70289_1_)
 | 
						|
    {
 | 
						|
        if (p_70289_1_ == this)
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else if (p_70289_1_.isEntityAlive() && this.isEntityAlive())
 | 
						|
        {
 | 
						|
            ItemStack itemstack = this.getEntityItem();
 | 
						|
            ItemStack itemstack1 = p_70289_1_.getEntityItem();
 | 
						|
 | 
						|
            if (itemstack1.getItem() != itemstack.getItem())
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (itemstack1.hasTagCompound() ^ itemstack.hasTagCompound())
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (itemstack1.hasTagCompound() && !itemstack1.getTagCompound().equals(itemstack.getTagCompound()))
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (itemstack1.getItem() == null)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (itemstack1.getItem().getHasSubtypes() && itemstack1.getItemDamage() != itemstack.getItemDamage())
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else if (itemstack1.stackSize < itemstack.stackSize)
 | 
						|
            {
 | 
						|
                return p_70289_1_.combineItems(this);
 | 
						|
            }
 | 
						|
            else if (itemstack1.stackSize + itemstack.stackSize > itemstack1.getMaxStackSize())
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                itemstack1.stackSize += itemstack.stackSize;
 | 
						|
                p_70289_1_.delayBeforeCanPickup = Math.max(p_70289_1_.delayBeforeCanPickup, this.delayBeforeCanPickup);
 | 
						|
                p_70289_1_.age = Math.min(p_70289_1_.age, this.age);
 | 
						|
                p_70289_1_.setEntityItemStack(itemstack1);
 | 
						|
                this.setDead();
 | 
						|
                return true;
 | 
						|
            }
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * sets the age of the item so that it'll despawn one minute after it has been dropped (instead of five). Used when
 | 
						|
     * items are dropped from players in creative mode
 | 
						|
     */
 | 
						|
    public void setAgeToCreativeDespawnTime()
 | 
						|
    {
 | 
						|
        this.age = 4800;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns if this entity is in water and will end up adding the waters velocity to the entity
 | 
						|
     */
 | 
						|
    public boolean handleWaterMovement()
 | 
						|
    {
 | 
						|
        return this.worldObj.handleMaterialAcceleration(this.boundingBox, Material.water, this);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Will deal the specified amount of damage to the entity if the entity isn't immune to fire damage. Args:
 | 
						|
     * amountDamage
 | 
						|
     */
 | 
						|
    protected void dealFireDamage(int amount)
 | 
						|
    {
 | 
						|
        this.attackEntityFrom(DamageSource.inFire, (float)amount);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called when the entity is attacked.
 | 
						|
     */
 | 
						|
    public boolean attackEntityFrom(DamageSource source, float amount)
 | 
						|
    {
 | 
						|
        if (this.isEntityInvulnerable())
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else if (this.getEntityItem() != null && this.getEntityItem().getItem() == Items.nether_star && source.isExplosion())
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            this.setBeenAttacked();
 | 
						|
            this.health = (int)((float)this.health - amount);
 | 
						|
 | 
						|
            if (this.health <= 0)
 | 
						|
            {
 | 
						|
                this.setDead();
 | 
						|
            }
 | 
						|
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * (abstract) Protected helper method to write subclass entity data to NBT.
 | 
						|
     */
 | 
						|
    public void writeEntityToNBT(NBTTagCompound tagCompound)
 | 
						|
    {
 | 
						|
        tagCompound.setShort("Health", (short)((byte)this.health));
 | 
						|
        tagCompound.setShort("Age", (short)this.age);
 | 
						|
        tagCompound.setInteger("Lifespan", lifespan);
 | 
						|
 | 
						|
        if (this.func_145800_j() != null)
 | 
						|
        {
 | 
						|
            tagCompound.setString("Thrower", this.field_145801_f);
 | 
						|
        }
 | 
						|
 | 
						|
        if (this.func_145798_i() != null)
 | 
						|
        {
 | 
						|
            tagCompound.setString("Owner", this.field_145802_g);
 | 
						|
        }
 | 
						|
 | 
						|
        if (this.getEntityItem() != null)
 | 
						|
        {
 | 
						|
            tagCompound.setTag("Item", this.getEntityItem().writeToNBT(new NBTTagCompound()));
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * (abstract) Protected helper method to read subclass entity data from NBT.
 | 
						|
     */
 | 
						|
    public void readEntityFromNBT(NBTTagCompound tagCompund)
 | 
						|
    {
 | 
						|
        this.health = tagCompund.getShort("Health") & 255;
 | 
						|
        this.age = tagCompund.getShort("Age");
 | 
						|
 | 
						|
        if (tagCompund.hasKey("Owner"))
 | 
						|
        {
 | 
						|
            this.field_145802_g = tagCompund.getString("Owner");
 | 
						|
        }
 | 
						|
 | 
						|
        if (tagCompund.hasKey("Thrower"))
 | 
						|
        {
 | 
						|
            this.field_145801_f = tagCompund.getString("Thrower");
 | 
						|
        }
 | 
						|
 | 
						|
        NBTTagCompound nbttagcompound1 = tagCompund.getCompoundTag("Item");
 | 
						|
        this.setEntityItemStack(ItemStack.loadItemStackFromNBT(nbttagcompound1));
 | 
						|
 | 
						|
        ItemStack item = getDataWatcher().getWatchableObjectItemStack(10);
 | 
						|
 | 
						|
        if (item == null || item.stackSize <= 0)
 | 
						|
        {
 | 
						|
            this.setDead();
 | 
						|
        }
 | 
						|
 | 
						|
        if (tagCompund.hasKey("Lifespan"))
 | 
						|
        {
 | 
						|
            lifespan = tagCompund.getInteger("Lifespan");
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called by a player entity when they collide with an entity
 | 
						|
     */
 | 
						|
    public void onCollideWithPlayer(EntityPlayer entityIn)
 | 
						|
    {
 | 
						|
        if (!this.worldObj.isRemote)
 | 
						|
        {
 | 
						|
            if (this.delayBeforeCanPickup > 0)
 | 
						|
            {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            EntityItemPickupEvent event = new EntityItemPickupEvent(entityIn, this);
 | 
						|
 | 
						|
            if (MinecraftForge.EVENT_BUS.post(event))
 | 
						|
            {
 | 
						|
                return;
 | 
						|
            }
 | 
						|
 | 
						|
            ItemStack itemstack = this.getEntityItem();
 | 
						|
            int i = itemstack.stackSize;
 | 
						|
 | 
						|
            if (this.delayBeforeCanPickup <= 0 && (this.field_145802_g == null || lifespan - this.age <= 200 || this.field_145802_g.equals(entityIn.getCommandSenderName())) && (event.getResult() == Result.ALLOW || i <= 0 || entityIn.inventory.addItemStackToInventory(itemstack)))
 | 
						|
            {
 | 
						|
                if (itemstack.getItem() == Item.getItemFromBlock(Blocks.log))
 | 
						|
                {
 | 
						|
                    entityIn.triggerAchievement(AchievementList.mineWood);
 | 
						|
                }
 | 
						|
 | 
						|
                if (itemstack.getItem() == Item.getItemFromBlock(Blocks.log2))
 | 
						|
                {
 | 
						|
                    entityIn.triggerAchievement(AchievementList.mineWood);
 | 
						|
                }
 | 
						|
 | 
						|
                if (itemstack.getItem() == Items.leather)
 | 
						|
                {
 | 
						|
                    entityIn.triggerAchievement(AchievementList.killCow);
 | 
						|
                }
 | 
						|
 | 
						|
                if (itemstack.getItem() == Items.diamond)
 | 
						|
                {
 | 
						|
                    entityIn.triggerAchievement(AchievementList.diamonds);
 | 
						|
                }
 | 
						|
 | 
						|
                if (itemstack.getItem() == Items.blaze_rod)
 | 
						|
                {
 | 
						|
                    entityIn.triggerAchievement(AchievementList.blazeRod);
 | 
						|
                }
 | 
						|
 | 
						|
                if (itemstack.getItem() == Items.diamond && this.func_145800_j() != null)
 | 
						|
                {
 | 
						|
                    EntityPlayer entityplayer1 = this.worldObj.getPlayerEntityByName(this.func_145800_j());
 | 
						|
 | 
						|
                    if (entityplayer1 != null && entityplayer1 != entityIn)
 | 
						|
                    {
 | 
						|
                        entityplayer1.triggerAchievement(AchievementList.field_150966_x);
 | 
						|
                    }
 | 
						|
                }
 | 
						|
 | 
						|
                FMLCommonHandler.instance().firePlayerItemPickupEvent(entityIn, this);
 | 
						|
 | 
						|
                this.worldObj.playSoundAtEntity(entityIn, "random.pop", 0.2F, ((this.rand.nextFloat() - this.rand.nextFloat()) * 0.7F + 1.0F) * 2.0F);
 | 
						|
                entityIn.onItemPickup(this, i);
 | 
						|
 | 
						|
                if (itemstack.stackSize <= 0)
 | 
						|
                {
 | 
						|
                    this.setDead();
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets the name of this command sender (usually username, but possibly "Rcon")
 | 
						|
     */
 | 
						|
    public String getCommandSenderName()
 | 
						|
    {
 | 
						|
        return StatCollector.translateToLocal("item." + this.getEntityItem().getUnlocalizedName());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * If returns false, the item will not inflict any damage against entities.
 | 
						|
     */
 | 
						|
    public boolean canAttackWithItem()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Teleports the entity to another dimension. Params: Dimension number to teleport to
 | 
						|
     */
 | 
						|
    public void travelToDimension(int dimensionId)
 | 
						|
    {
 | 
						|
        super.travelToDimension(dimensionId);
 | 
						|
 | 
						|
        if (!this.worldObj.isRemote)
 | 
						|
        {
 | 
						|
            this.searchForOtherItemsNearby();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the ItemStack corresponding to the Entity (Note: if no item exists, will log an error but still return an
 | 
						|
     * ItemStack containing Block.stone)
 | 
						|
     */
 | 
						|
    public ItemStack getEntityItem()
 | 
						|
    {
 | 
						|
        ItemStack itemstack = this.getDataWatcher().getWatchableObjectItemStack(10);
 | 
						|
        return itemstack == null ? new ItemStack(Blocks.stone) : itemstack;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Sets the ItemStack for this entity
 | 
						|
     */
 | 
						|
    public void setEntityItemStack(ItemStack p_92058_1_)
 | 
						|
    {
 | 
						|
        this.getDataWatcher().updateObject(10, p_92058_1_);
 | 
						|
        this.getDataWatcher().setObjectWatched(10);
 | 
						|
    }
 | 
						|
 | 
						|
    public String func_145798_i()
 | 
						|
    {
 | 
						|
        return this.field_145802_g;
 | 
						|
    }
 | 
						|
 | 
						|
    public void func_145797_a(String p_145797_1_)
 | 
						|
    {
 | 
						|
        this.field_145802_g = p_145797_1_;
 | 
						|
    }
 | 
						|
 | 
						|
    public String func_145800_j()
 | 
						|
    {
 | 
						|
        return this.field_145801_f;
 | 
						|
    }
 | 
						|
 | 
						|
    public void func_145799_b(String p_145799_1_)
 | 
						|
    {
 | 
						|
        this.field_145801_f = p_145799_1_;
 | 
						|
    }
 | 
						|
} |