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 System.ComponentModel;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-01-07 17:47:20 +08:00
|
|
|
|
using osu.Game.Configuration;
|
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;
|
|
|
|
|
|
|
|
|
|
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal)
|
|
|
|
|
{
|
|
|
|
|
SampleSet = sampleSet;
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-07 17:47:20 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio, SessionStatics statics)
|
|
|
|
|
{
|
|
|
|
|
sampleHover = audio.Samples.Get($@"UI/generic-hover{SampleSet.GetDescription()}");
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum HoverSampleSet
|
|
|
|
|
{
|
|
|
|
|
[Description("")]
|
|
|
|
|
Loud,
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Description("-soft")]
|
|
|
|
|
Normal,
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[Description("-softer")]
|
2021-01-15 14:02:17 +08:00
|
|
|
|
Soft,
|
|
|
|
|
|
|
|
|
|
[Description("-toolbar")]
|
2021-04-09 21:40:21 +08:00
|
|
|
|
Toolbar,
|
|
|
|
|
|
|
|
|
|
[Description("-songselect")]
|
|
|
|
|
SongSelect
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|