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