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 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 09:47:20 +00:00
|
|
|
|
using osu.Game.Configuration;
|
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;
|
|
|
|
|
|
|
|
|
|
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal)
|
|
|
|
|
{
|
|
|
|
|
SampleSet = sampleSet;
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-07 09:47:20 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(AudioManager audio, SessionStatics statics)
|
|
|
|
|
{
|
|
|
|
|
sampleHover = audio.Samples.Get($@"UI/generic-hover{SampleSet.GetDescription()}");
|
|
|
|
|
}
|
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-02-12 03:14:49 +00:00
|
|
|
|
sampleHover.Frequency.Value = 0.96 + RNG.NextDouble(0.08);
|
|
|
|
|
sampleHover.Play();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum HoverSampleSet
|
|
|
|
|
{
|
|
|
|
|
[Description("")]
|
|
|
|
|
Loud,
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
[Description("-soft")]
|
|
|
|
|
Normal,
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
[Description("-softer")]
|
2021-01-15 06:02:17 +00:00
|
|
|
|
Soft,
|
|
|
|
|
|
|
|
|
|
[Description("-toolbar")]
|
|
|
|
|
Toolbar
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|