67 lines
2.2 KiB
Java
67 lines
2.2 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.client.resources.sounds;
|
|
|
|
import net.minecraft.client.resources.sounds.AbstractTickableSoundInstance;
|
|
import net.minecraft.client.resources.sounds.SoundInstance;
|
|
import net.minecraft.sounds.SoundEvents;
|
|
import net.minecraft.sounds.SoundSource;
|
|
import net.minecraft.util.Mth;
|
|
import net.minecraft.world.entity.vehicle.AbstractMinecart;
|
|
import net.minecraft.world.entity.vehicle.NewMinecartBehavior;
|
|
|
|
public class MinecartSoundInstance
|
|
extends AbstractTickableSoundInstance {
|
|
private static final float VOLUME_MIN = 0.0f;
|
|
private static final float VOLUME_MAX = 0.7f;
|
|
private static final float PITCH_MIN = 0.0f;
|
|
private static final float PITCH_MAX = 1.0f;
|
|
private static final float PITCH_DELTA = 0.0025f;
|
|
private final AbstractMinecart minecart;
|
|
private float pitch = 0.0f;
|
|
|
|
public MinecartSoundInstance(AbstractMinecart minecart) {
|
|
super(SoundEvents.MINECART_RIDING, SoundSource.NEUTRAL, SoundInstance.createUnseededRandom());
|
|
this.minecart = minecart;
|
|
this.looping = true;
|
|
this.delay = 0;
|
|
this.volume = 0.0f;
|
|
this.x = (float)minecart.getX();
|
|
this.y = (float)minecart.getY();
|
|
this.z = (float)minecart.getZ();
|
|
}
|
|
|
|
@Override
|
|
public boolean canPlaySound() {
|
|
return !this.minecart.isSilent();
|
|
}
|
|
|
|
@Override
|
|
public boolean canStartSilent() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
boolean offRail;
|
|
if (this.minecart.isRemoved()) {
|
|
this.stop();
|
|
return;
|
|
}
|
|
this.x = (float)this.minecart.getX();
|
|
this.y = (float)this.minecart.getY();
|
|
this.z = (float)this.minecart.getZ();
|
|
float speed = (float)this.minecart.getDeltaMovement().horizontalDistance();
|
|
boolean bl = offRail = !this.minecart.isOnRails() && this.minecart.getBehavior() instanceof NewMinecartBehavior;
|
|
if (speed >= 0.01f && this.minecart.level().tickRateManager().runsNormally() && !offRail) {
|
|
this.pitch = Mth.clamp(this.pitch + 0.0025f, 0.0f, 1.0f);
|
|
this.volume = Mth.lerp(Mth.clamp(speed, 0.0f, 0.5f), 0.0f, 0.7f);
|
|
} else {
|
|
this.pitch = 0.0f;
|
|
this.volume = 0.0f;
|
|
}
|
|
}
|
|
}
|
|
|