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