1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/HoverSounds.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2017-11-26 02:27:16 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Utils;
2018-04-13 17:19:50 +08:00
2017-11-26 02:27:16 +08:00
namespace osu.Game.Graphics.UserInterface
{
/// <summary>
/// Adds hover sounds to a drawable.
/// Does not draw anything.
/// </summary>
public partial class HoverSounds : HoverSampleDebounceComponent
2017-11-26 02:27:16 +08:00
{
2021-01-19 16:11:40 +08:00
private Sample sampleHover;
2018-04-13 17:19:50 +08:00
2017-11-26 02:27:16 +08:00
protected readonly HoverSampleSet SampleSet;
2018-04-13 17:19:50 +08:00
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Default)
2017-11-26 02:27:16 +08:00
{
SampleSet = sampleSet;
RelativeSizeAxes = Axes.Both;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(AudioManager audio)
{
2021-06-11 22:49:14 +08:00
sampleHover = audio.Samples.Get($@"UI/{SampleSet.GetDescription()}-hover")
?? audio.Samples.Get($@"UI/{HoverSampleSet.Default.GetDescription()}-hover");
}
2019-11-27 19:47:00 +08:00
public override void PlayHoverSample()
2017-11-26 02:27:16 +08:00
{
sampleHover.Frequency.Value = 0.98 + RNG.NextDouble(0.04);
sampleHover.Play();
2017-11-26 02:27:16 +08:00
}
}
}