2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-01-15 14:01:22 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds hover sounds to a drawable.
|
|
|
|
|
/// Does not draw anything.
|
|
|
|
|
/// </summary>
|
2021-02-12 11:14:49 +08:00
|
|
|
|
public class HoverSounds : HoverSampleDebounceComponent
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-01-19 16:11:40 +08:00
|
|
|
|
private Sample sampleHover;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
protected readonly HoverSampleSet SampleSet;
|
|
|
|
|
|
2021-06-11 19:42:10 +08:00
|
|
|
|
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Default)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
SampleSet = sampleSet;
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-07 17:47:20 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2021-09-05 11:54:21 +08:00
|
|
|
|
private void load(AudioManager audio)
|
2021-01-07 17:47:20 +08:00
|
|
|
|
{
|
2021-06-11 22:49:14 +08:00
|
|
|
|
sampleHover = audio.Samples.Get($@"UI/{SampleSet.GetDescription()}-hover")
|
|
|
|
|
?? audio.Samples.Get($@"UI/{HoverSampleSet.Default.GetDescription()}-hover");
|
2021-01-07 17:47:20 +08:00
|
|
|
|
}
|
2019-11-27 19:47:00 +08:00
|
|
|
|
|
2021-02-12 11:14:49 +08:00
|
|
|
|
public override void PlayHoverSample()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-04-09 21:41:51 +08:00
|
|
|
|
sampleHover.Frequency.Value = 0.98 + RNG.NextDouble(0.04);
|
2021-02-12 11:14:49 +08:00
|
|
|
|
sampleHover.Play();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|