64 lines
2.1 KiB
Java
64 lines
2.1 KiB
Java
package net.minecraft.client.resources.sounds;
|
|
|
|
import net.minecraft.client.player.LocalPlayer;
|
|
import net.minecraft.sounds.SoundEvent;
|
|
import net.minecraft.sounds.SoundEvents;
|
|
import net.minecraft.sounds.SoundSource;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public class UnderwaterAmbientSoundInstances {
|
|
@OnlyIn(Dist.CLIENT)
|
|
public static class SubSound extends AbstractTickableSoundInstance {
|
|
private final LocalPlayer player;
|
|
|
|
protected SubSound(LocalPlayer p_119861_, SoundEvent p_119862_) {
|
|
super(p_119862_, SoundSource.AMBIENT, SoundInstance.createUnseededRandom());
|
|
this.player = p_119861_;
|
|
this.looping = false;
|
|
this.delay = 0;
|
|
this.volume = 1.0F;
|
|
this.relative = true;
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
if (this.player.isRemoved() || !this.player.isUnderWater()) {
|
|
this.stop();
|
|
}
|
|
}
|
|
}
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public static class UnderwaterAmbientSoundInstance extends AbstractTickableSoundInstance {
|
|
public static final int FADE_DURATION = 40;
|
|
private final LocalPlayer player;
|
|
private int fade;
|
|
|
|
public UnderwaterAmbientSoundInstance(LocalPlayer p_119867_) {
|
|
super(SoundEvents.AMBIENT_UNDERWATER_LOOP, SoundSource.AMBIENT, SoundInstance.createUnseededRandom());
|
|
this.player = p_119867_;
|
|
this.looping = true;
|
|
this.delay = 0;
|
|
this.volume = 1.0F;
|
|
this.relative = true;
|
|
}
|
|
|
|
@Override
|
|
public void tick() {
|
|
if (!this.player.isRemoved() && this.fade >= 0) {
|
|
if (this.player.isUnderWater()) {
|
|
this.fade++;
|
|
} else {
|
|
this.fade -= 2;
|
|
}
|
|
|
|
this.fade = Math.min(this.fade, 40);
|
|
this.volume = Math.max(0.0F, Math.min(this.fade / 40.0F, 1.0F));
|
|
} else {
|
|
this.stop();
|
|
}
|
|
}
|
|
}
|
|
} |