mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
97 lines
3.5 KiB
Java
97 lines
3.5 KiB
Java
package com.hbm.particle;
|
|
|
|
import com.hbm.main.ModEventHandlerClient;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.particle.EntityFX;
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
import net.minecraft.client.renderer.texture.TextureManager;
|
|
import net.minecraft.world.World;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class ParticleCoolingTower extends EntityFX {
|
|
|
|
private float baseScale = 1.0F;
|
|
private float maxScale = 1.0F;
|
|
private float lift = 0.3F;
|
|
private float strafe = 0.075F;
|
|
private boolean windDir = true;
|
|
private float alphaMod = 0.25F;
|
|
|
|
public ParticleCoolingTower(TextureManager texman, World world, double x, double y, double z) {
|
|
super(world, x, y, z);
|
|
particleIcon = ModEventHandlerClient.particleBase;
|
|
this.particleRed = this.particleGreen = this.particleBlue = 0.9F + world.rand.nextFloat() * 0.05F;
|
|
this.noClip = true;
|
|
}
|
|
|
|
public void setBaseScale(float f) { this.baseScale = f; }
|
|
public void setMaxScale(float f) { this.maxScale = f; }
|
|
public void setLift(float f) { this.lift = f; }
|
|
public void setLife(int i) { this.particleMaxAge = i; }
|
|
public void setStrafe(float f) { this.strafe = f; }
|
|
public void noWind() { this.windDir = false; }
|
|
public void alphaMod(float mod) { this.alphaMod = mod; }
|
|
|
|
public void onUpdate() {
|
|
|
|
this.prevPosX = this.posX;
|
|
this.prevPosY = this.posY;
|
|
this.prevPosZ = this.posZ;
|
|
|
|
float ageScale = (float) this.particleAge / (float) this.particleMaxAge;
|
|
|
|
this.particleAlpha = alphaMod - ageScale * alphaMod;
|
|
this.particleScale = baseScale + (float)Math.pow((maxScale * ageScale - baseScale), 2);
|
|
|
|
this.particleAge++;
|
|
|
|
if(lift > 0 && this.motionY < this.lift) {
|
|
this.motionY += 0.01F;
|
|
}
|
|
if(lift < 0 && this.motionY > this.lift) {
|
|
this.motionY -= 0.01F;
|
|
}
|
|
|
|
this.motionX += rand.nextGaussian() * strafe * ageScale;
|
|
this.motionZ += rand.nextGaussian() * strafe * ageScale;
|
|
|
|
if(windDir) {
|
|
this.motionX += 0.02 * ageScale;
|
|
this.motionZ -= 0.01 * ageScale;
|
|
}
|
|
|
|
if(this.particleAge == this.particleMaxAge) {
|
|
this.setDead();
|
|
}
|
|
|
|
this.moveEntity(this.motionX, this.motionY, this.motionZ);
|
|
|
|
motionX *= 0.925;
|
|
motionY *= 0.925;
|
|
motionZ *= 0.925;
|
|
}
|
|
|
|
public int getFXLayer() {
|
|
return 1;
|
|
}
|
|
|
|
public void renderParticle(Tessellator tess, float interp, float fX, float fY, float fZ, float sX, float sZ) {
|
|
|
|
tess.setNormal(0.0F, 1.0F, 0.0F);
|
|
|
|
tess.setColorRGBA_F(this.particleRed, this.particleGreen, this.particleBlue, this.particleAlpha);
|
|
|
|
float scale = this.particleScale;
|
|
float pX = (float) (this.prevPosX + (this.posX - this.prevPosX) * (double) interp - interpPosX);
|
|
float pY = (float) (this.prevPosY + (this.posY - this.prevPosY) * (double) interp - interpPosY);
|
|
float pZ = (float) (this.prevPosZ + (this.posZ - this.prevPosZ) * (double) interp - interpPosZ);
|
|
|
|
tess.addVertexWithUV((double) (pX - fX * scale - sX * scale), (double) (pY - fY * scale), (double) (pZ - fZ * scale - sZ * scale), particleIcon.getMaxU(), particleIcon.getMaxV());
|
|
tess.addVertexWithUV((double) (pX - fX * scale + sX * scale), (double) (pY + fY * scale), (double) (pZ - fZ * scale + sZ * scale), particleIcon.getMaxU(), particleIcon.getMinV());
|
|
tess.addVertexWithUV((double) (pX + fX * scale + sX * scale), (double) (pY + fY * scale), (double) (pZ + fZ * scale + sZ * scale), particleIcon.getMinU(), particleIcon.getMinV());
|
|
tess.addVertexWithUV((double) (pX + fX * scale - sX * scale), (double) (pY - fY * scale), (double) (pZ + fZ * scale - sZ * scale), particleIcon.getMinU(), particleIcon.getMaxV());
|
|
}
|
|
}
|