mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
54 lines
1.7 KiB
C#
54 lines
1.7 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input;
|
|
using osu.Framework.Input.Bindings;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Input.Bindings;
|
|
|
|
namespace osu.Game.Overlays.Volume
|
|
{
|
|
public class VolumeControlReceptor : Container, IScrollBindingHandler<GlobalAction>, IHandleGlobalKeyboardInput
|
|
{
|
|
public Func<GlobalAction, bool> ActionRequested;
|
|
public Func<GlobalAction, float, bool, bool> ScrollActionRequested;
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
|
{
|
|
switch (e.Action)
|
|
{
|
|
case GlobalAction.DecreaseVolume:
|
|
case GlobalAction.IncreaseVolume:
|
|
case GlobalAction.ToggleMute:
|
|
case GlobalAction.NextVolumeMeter:
|
|
case GlobalAction.PreviousVolumeMeter:
|
|
ActionRequested?.Invoke(e.Action);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
|
{
|
|
}
|
|
|
|
protected override bool OnScroll(ScrollEvent e)
|
|
{
|
|
if (e.ScrollDelta.Y == 0)
|
|
return false;
|
|
|
|
// forward any unhandled mouse scroll events to the volume control.
|
|
ScrollActionRequested?.Invoke(GlobalAction.IncreaseVolume, e.ScrollDelta.Y, e.IsPrecise);
|
|
return true;
|
|
}
|
|
|
|
public bool OnScroll(KeyBindingScrollEvent<GlobalAction> e) =>
|
|
ScrollActionRequested?.Invoke(e.Action, e.ScrollAmount, e.IsPrecise) ?? false;
|
|
}
|
|
}
|