1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 03:27:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/HoverSounds.cs

74 lines
2.1 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 17:19:50 +08:00
using System.ComponentModel;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Game.Configuration;
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>
public class HoverSounds : CompositeDrawable
{
private SampleChannel sampleHover;
2019-11-27 19:47:00 +08:00
/// <summary>
/// Length of debounce for hover sound playback, in milliseconds.
2019-11-27 19:47:00 +08:00
/// </summary>
public double HoverDebounceTime { get; } = 20;
2019-11-27 19:47:00 +08:00
2018-04-13 17:19:50 +08:00
protected readonly HoverSampleSet SampleSet;
private Bindable<double?> lastPlaybackTime;
2018-04-13 17:19:50 +08:00
public HoverSounds(HoverSampleSet sampleSet = HoverSampleSet.Normal)
{
SampleSet = sampleSet;
RelativeSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
private void load(AudioManager audio, SessionStatics statics)
{
lastPlaybackTime = statics.GetBindable<double?>(Static.LastHoverSoundPlaybackTime);
sampleHover = audio.Samples.Get($@"UI/generic-hover{SampleSet.GetDescription()}");
}
2019-11-27 19:47:00 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2018-04-13 17:19:50 +08:00
{
bool enoughTimePassedSinceLastPlayback = !lastPlaybackTime.Value.HasValue || Time.Current - lastPlaybackTime.Value >= HoverDebounceTime;
2019-11-27 19:47:00 +08:00
if (enoughTimePassedSinceLastPlayback)
{
2019-11-27 19:47:00 +08:00
sampleHover?.Play();
lastPlaybackTime.Value = Time.Current;
}
2019-11-27 19:47:00 +08:00
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
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")]
Soft
}
}