osu/osu.Game/Graphics/UserInterface/HoverClickSounds.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
2.7 KiB
C#
Raw Normal View History

2019-11-28 05:03:59 +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
2022-06-17 07:37:17 +00:00
#nullable disable
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Extensions;
2018-10-02 03:02:47 +00:00
using osu.Framework.Input.Events;
2022-06-03 13:29:03 +00:00
using osu.Framework.Utils;
using osuTK.Input;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Graphics.UserInterface
{
/// <summary>
/// Adds hover and click sounds to a drawable.
/// Does not draw anything.
/// </summary>
2017-11-25 18:27:16 +00:00
public partial class HoverClickSounds : HoverSounds
{
2022-11-03 11:29:27 +00:00
public Bindable<bool> Enabled = new Bindable<bool>(true);
2021-01-19 08:11:40 +00:00
private Sample sampleClick;
private Sample sampleClickDisabled;
2022-11-03 11:29:27 +00:00
private readonly MouseButton[] buttons;
2018-04-13 09:19:50 +00:00
/// <summary>
2019-09-03 10:21:24 +00:00
/// a container which plays sounds on hover and click for any specified <see cref="MouseButton"/>s.
/// </summary>
/// <param name="sampleSet">Set of click samples to play.</param>
/// <param name="buttons">
/// Array of button codes which should trigger the click sound.
2019-09-03 10:21:24 +00:00
/// If this optional parameter is omitted or set to <code>null</code>, the click sound will only be played on left click.
/// </param>
public HoverClickSounds(HoverSampleSet sampleSet = HoverSampleSet.Default, MouseButton[] buttons = null)
2019-02-28 04:31:40 +00:00
: base(sampleSet)
{
this.buttons = buttons ?? new[] { MouseButton.Left };
}
2018-04-13 09:19:50 +00:00
protected override bool OnClick(ClickEvent e)
{
if (buttons.Contains(e.Button))
2022-06-03 13:29:03 +00:00
{
var channel = Enabled.Value ? sampleClick?.GetChannel() : sampleClickDisabled?.GetChannel();
if (channel != null)
{
channel.Frequency.Value = 0.99 + RNG.NextDouble(0.02);
channel.Play();
}
2022-06-03 13:29:03 +00:00
}
2019-09-03 10:20:23 +00:00
return base.OnClick(e);
}
2018-04-13 09:19:50 +00:00
public override void PlayHoverSample()
{
if (!Enabled.Value)
return;
base.PlayHoverSample();
}
[BackgroundDependencyLoader]
2018-08-30 22:04:40 +00:00
private void load(AudioManager audio)
{
2021-06-11 14:49:14 +00:00
sampleClick = audio.Samples.Get($@"UI/{SampleSet.GetDescription()}-select")
?? audio.Samples.Get($@"UI/{HoverSampleSet.Default.GetDescription()}-select");
sampleClickDisabled = audio.Samples.Get($@"UI/{SampleSet.GetDescription()}-select-disabled")
?? audio.Samples.Get($@"UI/{HoverSampleSet.Default.GetDescription()}-select-disabled");
}
}
}