1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 01:07:23 +08:00

70 lines
1.8 KiB
C#
Raw Normal View History

// 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 System.ComponentModel;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
2019-11-27 22:47:00 +11:00
using osu.Framework.Threading;
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>
public class HoverSounds : CompositeDrawable
{
private SampleChannel sampleHover;
2019-11-27 22:47:00 +11:00
/// <summary>
/// Length of debounce for hover sound playback, in milliseconds. Default is 50ms.
2019-11-27 22:47:00 +11:00
/// </summary>
2020-01-20 23:59:21 +09:00
public double HoverDebounceTime { get; } = 50;
2019-11-27 22:47:00 +11:00
2018-04-13 18:19:50 +09:00
protected readonly HoverSampleSet SampleSet;
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal)
{
SampleSet = sampleSet;
RelativeSizeAxes = Axes.Both;
}
2019-11-27 22:47:00 +11:00
private ScheduledDelegate playDelegate;
2018-10-02 12:02:47 +09:00
protected override bool OnHover(HoverEvent e)
2018-04-13 18:19:50 +09:00
{
2019-11-27 22:47:00 +11:00
playDelegate?.Cancel();
if (HoverDebounceTime <= 0)
2019-11-27 22:47:00 +11:00
sampleHover?.Play();
else
playDelegate = Scheduler.AddDelayed(() => sampleHover?.Play(), HoverDebounceTime);
2019-11-27 22:47:00 +11:00
2018-10-02 12:02:47 +09:00
return base.OnHover(e);
2018-04-13 18:19:50 +09:00
}
[BackgroundDependencyLoader]
2018-08-31 07:04:40 +09:00
private void load(AudioManager audio)
2018-04-13 18:19:50 +09:00
{
sampleHover = audio.Samples.Get($@"UI/generic-hover{SampleSet.GetDescription()}");
2018-04-13 18:19:50 +09:00
}
}
public enum HoverSampleSet
{
[Description("")]
Loud,
2019-02-28 13:31:40 +09:00
2018-04-13 18:19:50 +09:00
[Description("-soft")]
Normal,
2019-02-28 13:31:40 +09:00
2018-04-13 18:19:50 +09:00
[Description("-softer")]
Soft
}
}