mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
48 lines
1.5 KiB
C#
48 lines
1.5 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Desktop.Windows
|
|
{
|
|
public class GameplayWinKeyBlocker : Component
|
|
{
|
|
private Bindable<bool> disableWinKey;
|
|
private IBindable<bool> localUserPlaying;
|
|
private IBindable<bool> isActive;
|
|
|
|
[Resolved]
|
|
private GameHost host { get; set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ILocalUserPlayInfo localUserInfo, OsuConfigManager config)
|
|
{
|
|
localUserPlaying = localUserInfo.IsPlaying.GetBoundCopy();
|
|
localUserPlaying.BindValueChanged(_ => updateBlocking());
|
|
|
|
isActive = host.IsActive.GetBoundCopy();
|
|
isActive.BindValueChanged(_ => updateBlocking());
|
|
|
|
disableWinKey = config.GetBindable<bool>(OsuSetting.GameplayDisableWinKey);
|
|
disableWinKey.BindValueChanged(_ => updateBlocking(), true);
|
|
}
|
|
|
|
private void updateBlocking()
|
|
{
|
|
bool shouldDisable = isActive.Value && disableWinKey.Value && localUserPlaying.Value;
|
|
|
|
if (shouldDisable)
|
|
host.InputThread.Scheduler.Add(WindowsKey.Disable);
|
|
else
|
|
host.InputThread.Scheduler.Add(WindowsKey.Enable);
|
|
}
|
|
}
|
|
}
|