minecraft-src/net/minecraft/client/particle/CherryParticle.java
2025-07-04 01:41:11 +03:00

69 lines
2.2 KiB
Java

package net.minecraft.client.particle;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.multiplayer.ClientLevel;
@Environment(EnvType.CLIENT)
public class CherryParticle extends TextureSheetParticle {
private static final float ACCELERATION_SCALE = 0.0025F;
private static final int INITIAL_LIFETIME = 300;
private static final int CURVE_ENDPOINT_TIME = 300;
private static final float FALL_ACC = 0.25F;
private static final float WIND_BIG = 2.0F;
private float rotSpeed;
private final float particleRandom;
private final float spinAcceleration;
protected CherryParticle(ClientLevel level, double x, double y, double z, SpriteSet spriteSet) {
super(level, x, y, z);
this.setSprite(spriteSet.get(this.random.nextInt(12), 12));
this.rotSpeed = (float)Math.toRadians(this.random.nextBoolean() ? -30.0 : 30.0);
this.particleRandom = this.random.nextFloat();
this.spinAcceleration = (float)Math.toRadians(this.random.nextBoolean() ? -5.0 : 5.0);
this.lifetime = 300;
this.gravity = 7.5E-4F;
float f = this.random.nextBoolean() ? 0.05F : 0.075F;
this.quadSize = f;
this.setSize(f, f);
this.friction = 1.0F;
}
@Override
public ParticleRenderType getRenderType() {
return ParticleRenderType.PARTICLE_SHEET_OPAQUE;
}
@Override
public void tick() {
this.xo = this.x;
this.yo = this.y;
this.zo = this.z;
if (this.lifetime-- <= 0) {
this.remove();
}
if (!this.removed) {
float f = 300 - this.lifetime;
float g = Math.min(f / 300.0F, 1.0F);
double d = Math.cos(Math.toRadians(this.particleRandom * 60.0F)) * 2.0 * Math.pow(g, 1.25);
double e = Math.sin(Math.toRadians(this.particleRandom * 60.0F)) * 2.0 * Math.pow(g, 1.25);
this.xd += d * 0.0025F;
this.zd += e * 0.0025F;
this.yd = this.yd - this.gravity;
this.rotSpeed = this.rotSpeed + this.spinAcceleration / 20.0F;
this.oRoll = this.roll;
this.roll = this.roll + this.rotSpeed / 20.0F;
this.move(this.xd, this.yd, this.zd);
if (this.onGround || this.lifetime < 299 && (this.xd == 0.0 || this.zd == 0.0)) {
this.remove();
}
if (!this.removed) {
this.xd = this.xd * this.friction;
this.yd = this.yd * this.friction;
this.zd = this.zd * this.friction;
}
}
}
}