2020-07-01 23:15:41 +08: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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Platform;
|
2020-10-10 12:11:36 +08:00
|
|
|
|
using osu.Game;
|
2020-07-01 23:15:41 +08:00
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace osu.Desktop.Windows
|
|
|
|
|
{
|
2020-07-24 15:38:48 +08:00
|
|
|
|
public class GameplayWinKeyBlocker : Component
|
2020-07-01 23:15:41 +08:00
|
|
|
|
{
|
|
|
|
|
private Bindable<bool> disableWinKey;
|
2020-10-10 12:11:36 +08:00
|
|
|
|
private Bindable<bool> localUserPlaying;
|
2020-07-01 23:15:41 +08:00
|
|
|
|
|
2020-10-10 12:11:36 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private GameHost host { get; set; }
|
2020-07-01 23:15:41 +08:00
|
|
|
|
|
2020-10-10 12:28:24 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-10-10 12:11:36 +08:00
|
|
|
|
private void load(OsuGame game, OsuConfigManager config)
|
2020-07-01 23:15:41 +08:00
|
|
|
|
{
|
2020-10-10 12:11:36 +08:00
|
|
|
|
localUserPlaying = game.LocalUserPlaying.GetBoundCopy();
|
|
|
|
|
localUserPlaying.BindValueChanged(_ => updateBlocking());
|
2020-07-01 23:15:41 +08:00
|
|
|
|
|
2020-07-23 03:45:27 +08:00
|
|
|
|
disableWinKey = config.GetBindable<bool>(OsuSetting.GameplayDisableWinKey);
|
2020-07-24 15:38:48 +08:00
|
|
|
|
disableWinKey.BindValueChanged(_ => updateBlocking(), true);
|
2020-07-01 23:15:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-24 15:38:48 +08:00
|
|
|
|
private void updateBlocking()
|
2020-07-01 23:15:41 +08:00
|
|
|
|
{
|
2020-10-10 12:11:36 +08:00
|
|
|
|
bool shouldDisable = disableWinKey.Value && localUserPlaying.Value;
|
2020-07-23 18:45:14 +08:00
|
|
|
|
|
2020-07-24 15:38:48 +08:00
|
|
|
|
if (shouldDisable)
|
2020-07-01 23:15:41 +08:00
|
|
|
|
host.InputThread.Scheduler.Add(WindowsKey.Disable);
|
|
|
|
|
else
|
|
|
|
|
host.InputThread.Scheduler.Add(WindowsKey.Enable);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|