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.
		
		
		
		
		
			
		
			
				
	
	
		
			243 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			243 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.client.particle;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import net.minecraft.client.renderer.Tessellator;
 | 
						|
import net.minecraft.entity.Entity;
 | 
						|
import net.minecraft.nbt.NBTTagCompound;
 | 
						|
import net.minecraft.util.IIcon;
 | 
						|
import net.minecraft.util.MathHelper;
 | 
						|
import net.minecraft.world.World;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public class EntityFX extends Entity
 | 
						|
{
 | 
						|
    protected int particleTextureIndexX;
 | 
						|
    protected int particleTextureIndexY;
 | 
						|
    protected float particleTextureJitterX;
 | 
						|
    protected float particleTextureJitterY;
 | 
						|
    protected int particleAge;
 | 
						|
    protected int particleMaxAge;
 | 
						|
    protected float particleScale;
 | 
						|
    protected float particleGravity;
 | 
						|
    /** The red amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0. */
 | 
						|
    protected float particleRed;
 | 
						|
    /** The green amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0. */
 | 
						|
    protected float particleGreen;
 | 
						|
    /** The blue amount of color. Used as a percentage, 1.0 = 255 and 0.0 = 0. */
 | 
						|
    protected float particleBlue;
 | 
						|
    /** Particle alpha */
 | 
						|
    protected float particleAlpha;
 | 
						|
    /** The icon field from which the given particle pulls its texture. */
 | 
						|
    protected IIcon particleIcon;
 | 
						|
    public static double interpPosX;
 | 
						|
    public static double interpPosY;
 | 
						|
    public static double interpPosZ;
 | 
						|
    private static final String __OBFID = "CL_00000914";
 | 
						|
 | 
						|
    protected EntityFX(World p_i1218_1_, double p_i1218_2_, double p_i1218_4_, double p_i1218_6_)
 | 
						|
    {
 | 
						|
        super(p_i1218_1_);
 | 
						|
        this.particleAlpha = 1.0F;
 | 
						|
        this.setSize(0.2F, 0.2F);
 | 
						|
        this.yOffset = this.height / 2.0F;
 | 
						|
        this.setPosition(p_i1218_2_, p_i1218_4_, p_i1218_6_);
 | 
						|
        this.lastTickPosX = p_i1218_2_;
 | 
						|
        this.lastTickPosY = p_i1218_4_;
 | 
						|
        this.lastTickPosZ = p_i1218_6_;
 | 
						|
        this.particleRed = this.particleGreen = this.particleBlue = 1.0F;
 | 
						|
        this.particleTextureJitterX = this.rand.nextFloat() * 3.0F;
 | 
						|
        this.particleTextureJitterY = this.rand.nextFloat() * 3.0F;
 | 
						|
        this.particleScale = (this.rand.nextFloat() * 0.5F + 0.5F) * 2.0F;
 | 
						|
        this.particleMaxAge = (int)(4.0F / (this.rand.nextFloat() * 0.9F + 0.1F));
 | 
						|
        this.particleAge = 0;
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityFX(World p_i1219_1_, double p_i1219_2_, double p_i1219_4_, double p_i1219_6_, double p_i1219_8_, double p_i1219_10_, double p_i1219_12_)
 | 
						|
    {
 | 
						|
        this(p_i1219_1_, p_i1219_2_, p_i1219_4_, p_i1219_6_);
 | 
						|
        this.motionX = p_i1219_8_ + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.4F);
 | 
						|
        this.motionY = p_i1219_10_ + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.4F);
 | 
						|
        this.motionZ = p_i1219_12_ + (double)((float)(Math.random() * 2.0D - 1.0D) * 0.4F);
 | 
						|
        float f = (float)(Math.random() + Math.random() + 1.0D) * 0.15F;
 | 
						|
        float f1 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionY * this.motionY + this.motionZ * this.motionZ);
 | 
						|
        this.motionX = this.motionX / (double)f1 * (double)f * 0.4000000059604645D;
 | 
						|
        this.motionY = this.motionY / (double)f1 * (double)f * 0.4000000059604645D + 0.10000000149011612D;
 | 
						|
        this.motionZ = this.motionZ / (double)f1 * (double)f * 0.4000000059604645D;
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityFX multiplyVelocity(float p_70543_1_)
 | 
						|
    {
 | 
						|
        this.motionX *= (double)p_70543_1_;
 | 
						|
        this.motionY = (this.motionY - 0.10000000149011612D) * (double)p_70543_1_ + 0.10000000149011612D;
 | 
						|
        this.motionZ *= (double)p_70543_1_;
 | 
						|
        return this;
 | 
						|
    }
 | 
						|
 | 
						|
    public EntityFX multipleParticleScaleBy(float p_70541_1_)
 | 
						|
    {
 | 
						|
        this.setSize(0.2F * p_70541_1_, 0.2F * p_70541_1_);
 | 
						|
        this.particleScale *= p_70541_1_;
 | 
						|
        return this;
 | 
						|
    }
 | 
						|
 | 
						|
    public void setRBGColorF(float p_70538_1_, float p_70538_2_, float p_70538_3_)
 | 
						|
    {
 | 
						|
        this.particleRed = p_70538_1_;
 | 
						|
        this.particleGreen = p_70538_2_;
 | 
						|
        this.particleBlue = p_70538_3_;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Sets the particle alpha (float)
 | 
						|
     */
 | 
						|
    public void setAlphaF(float p_82338_1_)
 | 
						|
    {
 | 
						|
        this.particleAlpha = p_82338_1_;
 | 
						|
    }
 | 
						|
 | 
						|
    public float getRedColorF()
 | 
						|
    {
 | 
						|
        return this.particleRed;
 | 
						|
    }
 | 
						|
 | 
						|
    public float getGreenColorF()
 | 
						|
    {
 | 
						|
        return this.particleGreen;
 | 
						|
    }
 | 
						|
 | 
						|
    public float getBlueColorF()
 | 
						|
    {
 | 
						|
        return this.particleBlue;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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;
 | 
						|
    }
 | 
						|
 | 
						|
    protected void entityInit() {}
 | 
						|
 | 
						|
    /**
 | 
						|
     * Called to update the entity's position/logic.
 | 
						|
     */
 | 
						|
    public void onUpdate()
 | 
						|
    {
 | 
						|
        this.prevPosX = this.posX;
 | 
						|
        this.prevPosY = this.posY;
 | 
						|
        this.prevPosZ = this.posZ;
 | 
						|
 | 
						|
        if (this.particleAge++ >= this.particleMaxAge)
 | 
						|
        {
 | 
						|
            this.setDead();
 | 
						|
        }
 | 
						|
 | 
						|
        this.motionY -= 0.04D * (double)this.particleGravity;
 | 
						|
        this.moveEntity(this.motionX, this.motionY, this.motionZ);
 | 
						|
        this.motionX *= 0.9800000190734863D;
 | 
						|
        this.motionY *= 0.9800000190734863D;
 | 
						|
        this.motionZ *= 0.9800000190734863D;
 | 
						|
 | 
						|
        if (this.onGround)
 | 
						|
        {
 | 
						|
            this.motionX *= 0.699999988079071D;
 | 
						|
            this.motionZ *= 0.699999988079071D;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public void renderParticle(Tessellator p_70539_1_, float p_70539_2_, float p_70539_3_, float p_70539_4_, float p_70539_5_, float p_70539_6_, float p_70539_7_)
 | 
						|
    {
 | 
						|
        float f6 = (float)this.particleTextureIndexX / 16.0F;
 | 
						|
        float f7 = f6 + 0.0624375F;
 | 
						|
        float f8 = (float)this.particleTextureIndexY / 16.0F;
 | 
						|
        float f9 = f8 + 0.0624375F;
 | 
						|
        float f10 = 0.1F * this.particleScale;
 | 
						|
 | 
						|
        if (this.particleIcon != null)
 | 
						|
        {
 | 
						|
            f6 = this.particleIcon.getMinU();
 | 
						|
            f7 = this.particleIcon.getMaxU();
 | 
						|
            f8 = this.particleIcon.getMinV();
 | 
						|
            f9 = this.particleIcon.getMaxV();
 | 
						|
        }
 | 
						|
 | 
						|
        float f11 = (float)(this.prevPosX + (this.posX - this.prevPosX) * (double)p_70539_2_ - interpPosX);
 | 
						|
        float f12 = (float)(this.prevPosY + (this.posY - this.prevPosY) * (double)p_70539_2_ - interpPosY);
 | 
						|
        float f13 = (float)(this.prevPosZ + (this.posZ - this.prevPosZ) * (double)p_70539_2_ - interpPosZ);
 | 
						|
        p_70539_1_.setColorRGBA_F(this.particleRed, this.particleGreen, this.particleBlue, this.particleAlpha);
 | 
						|
        p_70539_1_.addVertexWithUV((double)(f11 - p_70539_3_ * f10 - p_70539_6_ * f10), (double)(f12 - p_70539_4_ * f10), (double)(f13 - p_70539_5_ * f10 - p_70539_7_ * f10), (double)f7, (double)f9);
 | 
						|
        p_70539_1_.addVertexWithUV((double)(f11 - p_70539_3_ * f10 + p_70539_6_ * f10), (double)(f12 + p_70539_4_ * f10), (double)(f13 - p_70539_5_ * f10 + p_70539_7_ * f10), (double)f7, (double)f8);
 | 
						|
        p_70539_1_.addVertexWithUV((double)(f11 + p_70539_3_ * f10 + p_70539_6_ * f10), (double)(f12 + p_70539_4_ * f10), (double)(f13 + p_70539_5_ * f10 + p_70539_7_ * f10), (double)f6, (double)f8);
 | 
						|
        p_70539_1_.addVertexWithUV((double)(f11 + p_70539_3_ * f10 - p_70539_6_ * f10), (double)(f12 - p_70539_4_ * f10), (double)(f13 + p_70539_5_ * f10 - p_70539_7_ * f10), (double)f6, (double)f9);
 | 
						|
    }
 | 
						|
 | 
						|
    public int getFXLayer()
 | 
						|
    {
 | 
						|
        return 0;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * (abstract) Protected helper method to write subclass entity data to NBT.
 | 
						|
     */
 | 
						|
    public void writeEntityToNBT(NBTTagCompound tagCompound) {}
 | 
						|
 | 
						|
    /**
 | 
						|
     * (abstract) Protected helper method to read subclass entity data from NBT.
 | 
						|
     */
 | 
						|
    public void readEntityFromNBT(NBTTagCompound tagCompund) {}
 | 
						|
 | 
						|
    public void setParticleIcon(IIcon p_110125_1_)
 | 
						|
    {
 | 
						|
        if (this.getFXLayer() == 1)
 | 
						|
        {
 | 
						|
            this.particleIcon = p_110125_1_;
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            if (this.getFXLayer() != 2)
 | 
						|
            {
 | 
						|
                throw new RuntimeException("Invalid call to Particle.setTex, use coordinate methods");
 | 
						|
            }
 | 
						|
 | 
						|
            this.particleIcon = p_110125_1_;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Public method to set private field particleTextureIndex.
 | 
						|
     */
 | 
						|
    public void setParticleTextureIndex(int p_70536_1_)
 | 
						|
    {
 | 
						|
        if (this.getFXLayer() != 0)
 | 
						|
        {
 | 
						|
            throw new RuntimeException("Invalid call to Particle.setMiscTex");
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            this.particleTextureIndexX = p_70536_1_ % 16;
 | 
						|
            this.particleTextureIndexY = p_70536_1_ / 16;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public void nextTextureIndexX()
 | 
						|
    {
 | 
						|
        ++this.particleTextureIndexX;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * If returns false, the item will not inflict any damage against entities.
 | 
						|
     */
 | 
						|
    public boolean canAttackWithItem()
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    public String toString()
 | 
						|
    {
 | 
						|
        return this.getClass().getSimpleName() + ", Pos (" + this.posX + "," + this.posY + "," + this.posZ + "), RGBA (" + this.particleRed + "," + this.particleGreen + "," + this.particleBlue + "," + this.particleAlpha + "), Age " + this.particleAge;
 | 
						|
    }
 | 
						|
} |