2020-10-14 19:43:56 +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.
|
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-10-14 19:43:56 +08:00
|
|
|
|
using Android.Content.PM;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game;
|
|
|
|
|
|
|
|
|
|
namespace osu.Android
|
|
|
|
|
{
|
|
|
|
|
public partial class GameplayScreenRotationLocker : Component
|
|
|
|
|
{
|
|
|
|
|
private Bindable<bool> localUserPlaying;
|
|
|
|
|
|
2020-10-19 02:07:42 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGameActivity gameActivity { get; set; }
|
|
|
|
|
|
2020-10-14 19:43:56 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuGame game)
|
|
|
|
|
{
|
|
|
|
|
localUserPlaying = game.LocalUserPlaying.GetBoundCopy();
|
2020-10-19 16:01:24 +08:00
|
|
|
|
localUserPlaying.BindValueChanged(updateLock, true);
|
2020-10-14 19:43:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-17 01:21:51 +08:00
|
|
|
|
private void updateLock(ValueChangedEvent<bool> userPlaying)
|
2020-10-14 19:43:56 +08:00
|
|
|
|
{
|
2020-10-19 02:07:42 +08:00
|
|
|
|
gameActivity.RunOnUiThread(() =>
|
2020-10-14 19:43:56 +08:00
|
|
|
|
{
|
2022-02-03 20:55:04 +08:00
|
|
|
|
gameActivity.RequestedOrientation = userPlaying.NewValue ? ScreenOrientation.Locked : gameActivity.DefaultOrientation;
|
2020-10-14 19:43:56 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|