2019-01-24 16:43:03 +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.
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
2018-12-11 16:32:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2020-02-19 18:42:25 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2020-02-19 18:42:25 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2020-12-29 15:47:36 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2020-02-19 18:42:25 +08:00
|
|
|
|
using osu.Game.Beatmaps.Drawables;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-12-19 15:56:51 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-12-27 19:06:07 +08:00
|
|
|
|
using osu.Game.Input;
|
2018-12-26 15:46:50 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2020-12-25 12:38:11 +08:00
|
|
|
|
using osu.Game.Online.Rooms;
|
2020-08-03 21:41:22 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2018-05-28 11:28:11 +08:00
|
|
|
|
using osu.Game.Screens.Menu;
|
2020-12-25 23:50:00 +08:00
|
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
|
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
|
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge.Components;
|
|
|
|
|
using osu.Game.Screens.OnlinePlay.Match;
|
2020-11-08 20:16:27 +08:00
|
|
|
|
using osu.Game.Users;
|
2020-12-24 04:50:29 +08:00
|
|
|
|
using osuTK;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2018-12-11 16:32:01 +08:00
|
|
|
|
[Cached]
|
2021-02-19 16:58:04 +08:00
|
|
|
|
public abstract class OnlinePlayScreen : OsuScreen, IHasSubScreenStack
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2020-12-26 00:05:29 +08:00
|
|
|
|
public override bool CursorVisible => (screenStack.CurrentScreen as IOnlinePlaySubScreen)?.CursorVisible ?? true;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
|
2020-02-06 13:22:01 +08:00
|
|
|
|
// this is required due to PlayerLoader eventually being pushed to the main stack
|
|
|
|
|
// while leases may be taken out by a subscreen.
|
2019-02-12 10:19:34 +08:00
|
|
|
|
public override bool DisallowExternalBeatmapRulesetChanges => true;
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
|
|
|
|
private readonly MultiplayerWaveContainer waves;
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2018-12-19 15:56:51 +08:00
|
|
|
|
private readonly OsuButton createButton;
|
2018-12-26 19:05:57 +08:00
|
|
|
|
private readonly LoungeSubScreen loungeSubScreen;
|
2019-01-23 19:52:00 +08:00
|
|
|
|
private readonly ScreenStack screenStack;
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2019-02-08 14:38:05 +08:00
|
|
|
|
private readonly IBindable<bool> isIdle = new BindableBool();
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
[Cached(Type = typeof(IRoomManager))]
|
2020-12-20 16:42:23 +08:00
|
|
|
|
protected RoomManager RoomManager { get; private set; }
|
2020-12-18 23:15:41 +08:00
|
|
|
|
|
2019-02-05 14:38:19 +08:00
|
|
|
|
[Cached]
|
2020-02-27 18:23:21 +08:00
|
|
|
|
private readonly Bindable<Room> selectedRoom = new Bindable<Room>();
|
2019-02-08 13:57:51 +08:00
|
|
|
|
|
|
|
|
|
[Cached]
|
2020-07-15 04:19:48 +08:00
|
|
|
|
private readonly Bindable<FilterCriteria> currentFilter = new Bindable<FilterCriteria>(new FilterCriteria());
|
2018-12-14 16:35:18 +08:00
|
|
|
|
|
2020-12-29 04:39:11 +08:00
|
|
|
|
[Cached]
|
2021-01-10 04:38:20 +08:00
|
|
|
|
private OngoingOperationTracker ongoingOperationTracker { get; set; }
|
2020-12-29 04:39:11 +08:00
|
|
|
|
|
2020-08-10 07:16:01 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2020-08-03 21:41:22 +08:00
|
|
|
|
private MusicController music { get; set; }
|
|
|
|
|
|
2019-01-25 19:25:55 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuGameBase game { get; set; }
|
|
|
|
|
|
2018-12-26 15:46:50 +08:00
|
|
|
|
[Resolved]
|
2020-12-24 20:59:10 +08:00
|
|
|
|
protected IAPIProvider API { get; private set; }
|
2018-12-26 15:46:50 +08:00
|
|
|
|
|
2019-01-31 12:50:37 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2019-01-25 19:25:55 +08:00
|
|
|
|
private OsuLogo logo { get; set; }
|
|
|
|
|
|
2020-02-19 18:42:25 +08:00
|
|
|
|
private readonly Drawable header;
|
|
|
|
|
private readonly Drawable headerBackground;
|
|
|
|
|
|
2020-12-26 00:00:00 +08:00
|
|
|
|
protected OnlinePlayScreen()
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-01-25 19:47:31 +08:00
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
|
Origin = Anchor.Centre;
|
2019-01-25 19:25:55 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2019-02-12 12:02:33 +08:00
|
|
|
|
Padding = new MarginPadding { Horizontal = -HORIZONTAL_OVERFLOW_PADDING };
|
2019-01-25 19:25:55 +08:00
|
|
|
|
|
2020-03-11 09:18:41 +08:00
|
|
|
|
var backgroundColour = Color4Extensions.FromHex(@"3e3a44");
|
2020-02-19 18:48:34 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
InternalChild = waves = new MultiplayerWaveContainer
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-12-20 16:42:23 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2020-02-19 18:42:25 +08:00
|
|
|
|
new Box
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-02-19 18:48:34 +08:00
|
|
|
|
Colour = backgroundColour,
|
2018-05-16 08:14:10 +08:00
|
|
|
|
},
|
2019-02-12 12:02:33 +08:00
|
|
|
|
new Container
|
2018-12-19 15:56:51 +08:00
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = Header.HEIGHT },
|
2020-02-19 18:42:25 +08:00
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
header = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 400,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
headerBackground = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Width = 1.25f,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new HeaderBackgroundSprite
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2020-02-20 13:28:38 +08:00
|
|
|
|
Height = 400 // Keep a static height so the header doesn't change as it's resized between subscreens
|
2020-02-19 18:42:25 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Bottom = -1 }, // 1px padding to avoid a 1px gap due to masking
|
|
|
|
|
Child = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-06-25 21:13:39 +08:00
|
|
|
|
Colour = ColourInfo.GradientVertical(backgroundColour.Opacity(0.5f), backgroundColour)
|
2020-02-19 18:42:25 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-12-26 00:00:31 +08:00
|
|
|
|
screenStack = new OnlinePlaySubScreenStack { RelativeSizeAxes = Axes.Both }
|
2020-02-19 18:42:25 +08:00
|
|
|
|
}
|
2018-12-19 15:56:51 +08:00
|
|
|
|
},
|
2020-12-24 23:18:35 +08:00
|
|
|
|
new Header(ScreenTitle, screenStack),
|
2020-12-24 05:02:37 +08:00
|
|
|
|
createButton = CreateNewMultiplayerGameButton().With(button =>
|
2018-12-26 15:46:50 +08:00
|
|
|
|
{
|
2020-12-24 05:02:37 +08:00
|
|
|
|
button.Anchor = Anchor.TopRight;
|
|
|
|
|
button.Origin = Anchor.TopRight;
|
|
|
|
|
button.Size = new Vector2(150, Header.HEIGHT - 20);
|
|
|
|
|
button.Margin = new MarginPadding
|
2020-12-24 04:50:29 +08:00
|
|
|
|
{
|
|
|
|
|
Top = 10,
|
|
|
|
|
Right = 10 + HORIZONTAL_OVERFLOW_PADDING,
|
2020-12-24 05:02:37 +08:00
|
|
|
|
};
|
|
|
|
|
button.Action = () => OpenNewRoom();
|
|
|
|
|
}),
|
2021-01-10 04:38:20 +08:00
|
|
|
|
RoomManager = CreateRoomManager(),
|
|
|
|
|
ongoingOperationTracker = new OngoingOperationTracker()
|
2019-02-12 12:02:33 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2018-12-26 19:05:57 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
screenStack.ScreenPushed += screenPushed;
|
|
|
|
|
screenStack.ScreenExited += screenExited;
|
2020-11-08 20:16:27 +08:00
|
|
|
|
|
2020-12-20 22:36:56 +08:00
|
|
|
|
screenStack.Push(loungeSubScreen = CreateLounge());
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-22 13:19:12 +08:00
|
|
|
|
private readonly IBindable<APIState> apiState = new Bindable<APIState>();
|
|
|
|
|
|
2018-12-27 19:17:27 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2018-12-27 19:06:07 +08:00
|
|
|
|
private void load(IdleTracker idleTracker)
|
2018-12-27 16:12:47 +08:00
|
|
|
|
{
|
2020-12-24 20:59:10 +08:00
|
|
|
|
apiState.BindTo(API.State);
|
2020-10-22 13:19:12 +08:00
|
|
|
|
apiState.BindValueChanged(onlineStateChanged, true);
|
2018-12-27 19:17:27 +08:00
|
|
|
|
|
|
|
|
|
if (idleTracker != null)
|
|
|
|
|
isIdle.BindTo(idleTracker.IsIdle);
|
2018-12-27 19:06:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-22 13:19:12 +08:00
|
|
|
|
private void onlineStateChanged(ValueChangedEvent<APIState> state) => Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
if (state.NewValue != APIState.Online)
|
2020-12-29 15:47:36 +08:00
|
|
|
|
{
|
|
|
|
|
Logger.Log("API connection was lost, can't continue with online play", LoggingTarget.Network, LogLevel.Important);
|
2020-10-22 13:19:12 +08:00
|
|
|
|
Schedule(forcefullyExit);
|
2020-12-29 15:47:36 +08:00
|
|
|
|
}
|
2020-10-22 13:19:12 +08:00
|
|
|
|
});
|
|
|
|
|
|
2018-12-27 19:06:07 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2020-12-18 23:15:41 +08:00
|
|
|
|
isIdle.BindValueChanged(idle => UpdatePollingRate(idle.NewValue), true);
|
2018-12-27 19:06:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 14:56:18 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
|
{
|
2019-02-12 12:02:33 +08:00
|
|
|
|
var dependencies = new CachedModelDependencyContainer<Room>(base.CreateChildDependencies(parent));
|
2020-02-27 18:23:21 +08:00
|
|
|
|
dependencies.Model.BindTo(selectedRoom);
|
2019-02-05 14:56:18 +08:00
|
|
|
|
return dependencies;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
protected abstract void UpdatePollingRate(bool isIdle);
|
2018-12-27 16:12:47 +08:00
|
|
|
|
|
|
|
|
|
private void forcefullyExit()
|
|
|
|
|
{
|
|
|
|
|
// This is temporary since we don't currently have a way to force screens to be exited
|
2019-01-23 19:52:00 +08:00
|
|
|
|
if (this.IsCurrentScreen())
|
2019-10-31 12:42:11 +08:00
|
|
|
|
{
|
|
|
|
|
while (this.IsCurrentScreen())
|
|
|
|
|
this.Exit();
|
|
|
|
|
}
|
2018-12-27 16:12:47 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.MakeCurrent();
|
2018-12-27 16:12:47 +08:00
|
|
|
|
Schedule(forcefullyExit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override void OnEntering(IScreen last)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.FadeIn();
|
2018-05-16 08:14:10 +08:00
|
|
|
|
waves.Show();
|
2020-12-24 22:07:03 +08:00
|
|
|
|
|
|
|
|
|
if (loungeSubScreen.IsCurrentScreen())
|
|
|
|
|
loungeSubScreen.OnEntering(last);
|
|
|
|
|
else
|
|
|
|
|
loungeSubScreen.MakeCurrent();
|
2019-06-19 12:15:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnResuming(IScreen last)
|
|
|
|
|
{
|
|
|
|
|
this.FadeIn(250);
|
|
|
|
|
this.ScaleTo(1, 250, Easing.OutSine);
|
|
|
|
|
|
2020-12-24 22:07:03 +08:00
|
|
|
|
screenStack.CurrentScreen?.OnResuming(last);
|
2019-06-19 12:15:58 +08:00
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
UpdatePollingRate(isIdle.Value);
|
2019-06-19 12:15:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnSuspending(IScreen next)
|
|
|
|
|
{
|
|
|
|
|
this.ScaleTo(1.1f, 250, Easing.InSine);
|
|
|
|
|
this.FadeOut(250);
|
|
|
|
|
|
2020-12-24 22:07:03 +08:00
|
|
|
|
screenStack.CurrentScreen?.OnSuspending(next);
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
UpdatePollingRate(isIdle.Value);
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 18:11:34 +08:00
|
|
|
|
public override bool OnExiting(IScreen next)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2020-12-18 23:15:41 +08:00
|
|
|
|
RoomManager.PartRoom();
|
2019-10-30 13:42:14 +08:00
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
waves.Hide();
|
2018-12-18 16:07:47 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
this.Delay(WaveContainer.DISAPPEAR_DURATION).FadeOut();
|
2018-12-26 19:05:57 +08:00
|
|
|
|
|
2020-12-24 22:07:03 +08:00
|
|
|
|
screenStack.CurrentScreen?.OnExiting(next);
|
2019-02-12 12:29:41 +08:00
|
|
|
|
base.OnExiting(next);
|
2019-01-25 19:25:55 +08:00
|
|
|
|
return false;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 15:02:01 +08:00
|
|
|
|
public override bool OnBackButton()
|
|
|
|
|
{
|
2021-06-08 16:54:54 +08:00
|
|
|
|
if (!(screenStack.CurrentScreen is IOnlinePlaySubScreen onlineSubScreen))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (((Drawable)onlineSubScreen).IsLoaded && onlineSubScreen.AllowBackButton && onlineSubScreen.OnBackButton())
|
2020-07-14 15:29:57 +08:00
|
|
|
|
return true;
|
|
|
|
|
|
2020-07-14 15:02:01 +08:00
|
|
|
|
if (screenStack.CurrentScreen != null && !(screenStack.CurrentScreen is LoungeSubScreen))
|
|
|
|
|
{
|
|
|
|
|
screenStack.Exit();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 12:29:41 +08:00
|
|
|
|
protected override void LogoExiting(OsuLogo logo)
|
|
|
|
|
{
|
|
|
|
|
base.LogoExiting(logo);
|
|
|
|
|
|
|
|
|
|
// the wave overlay transition takes longer than expected to run.
|
|
|
|
|
logo.Delay(WaveContainer.DISAPPEAR_DURATION / 2).FadeOut();
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-19 16:15:35 +08:00
|
|
|
|
/// <summary>
|
2020-12-20 22:32:57 +08:00
|
|
|
|
/// Creates and opens the newly-created room.
|
2020-10-19 16:15:35 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="room">An optional template to use when creating the room.</param>
|
2020-12-20 22:32:57 +08:00
|
|
|
|
public void OpenNewRoom(Room room = null) => loungeSubScreen.Open(room ?? CreateNewRoom());
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a new room.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The created <see cref="Room"/>.</returns>
|
2020-12-24 20:59:10 +08:00
|
|
|
|
protected abstract Room CreateNewRoom();
|
2020-02-20 17:28:20 +08:00
|
|
|
|
|
2020-02-19 18:42:25 +08:00
|
|
|
|
private void screenPushed(IScreen lastScreen, IScreen newScreen)
|
|
|
|
|
{
|
2020-11-08 20:16:27 +08:00
|
|
|
|
subScreenChanged(lastScreen, newScreen);
|
2020-02-19 18:42:25 +08:00
|
|
|
|
}
|
2019-06-19 12:15:58 +08:00
|
|
|
|
|
|
|
|
|
private void screenExited(IScreen lastScreen, IScreen newScreen)
|
2018-05-16 08:14:10 +08:00
|
|
|
|
{
|
2020-11-08 20:16:27 +08:00
|
|
|
|
subScreenChanged(lastScreen, newScreen);
|
2018-12-11 16:32:01 +08:00
|
|
|
|
|
2019-06-19 12:15:58 +08:00
|
|
|
|
if (screenStack.CurrentScreen == null && this.IsCurrentScreen())
|
|
|
|
|
this.Exit();
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-08 20:16:27 +08:00
|
|
|
|
private void subScreenChanged(IScreen lastScreen, IScreen newScreen)
|
2018-12-26 21:37:09 +08:00
|
|
|
|
{
|
2020-02-19 18:42:25 +08:00
|
|
|
|
switch (newScreen)
|
|
|
|
|
{
|
|
|
|
|
case LoungeSubScreen _:
|
2020-12-26 00:02:35 +08:00
|
|
|
|
header.Delay(OnlinePlaySubScreen.RESUME_TRANSITION_DELAY).ResizeHeightTo(400, OnlinePlaySubScreen.APPEAR_DURATION, Easing.OutQuint);
|
|
|
|
|
headerBackground.MoveToX(0, OnlinePlaySubScreen.X_MOVE_DURATION, Easing.OutQuint);
|
2020-02-19 18:42:25 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2020-12-20 22:40:19 +08:00
|
|
|
|
case RoomSubScreen _:
|
2020-12-26 00:02:35 +08:00
|
|
|
|
header.ResizeHeightTo(135, OnlinePlaySubScreen.APPEAR_DURATION, Easing.OutQuint);
|
|
|
|
|
headerBackground.MoveToX(-OnlinePlaySubScreen.X_SHIFT, OnlinePlaySubScreen.X_MOVE_DURATION, Easing.OutQuint);
|
2020-02-19 18:42:25 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-08 20:16:27 +08:00
|
|
|
|
if (lastScreen is IOsuScreen lastOsuScreen)
|
|
|
|
|
Activity.UnbindFrom(lastOsuScreen.Activity);
|
|
|
|
|
|
|
|
|
|
if (newScreen is IOsuScreen newOsuScreen)
|
|
|
|
|
((IBindable<UserActivity>)Activity).BindTo(newOsuScreen.Activity);
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
UpdatePollingRate(isIdle.Value);
|
2019-06-24 10:54:41 +08:00
|
|
|
|
createButton.FadeTo(newScreen is LoungeSubScreen ? 1 : 0, 200);
|
2018-12-26 21:37:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-18 23:15:41 +08:00
|
|
|
|
protected IScreen CurrentSubScreen => screenStack.CurrentScreen;
|
|
|
|
|
|
2020-12-24 23:18:35 +08:00
|
|
|
|
protected abstract string ScreenTitle { get; }
|
|
|
|
|
|
2020-12-20 16:42:23 +08:00
|
|
|
|
protected abstract RoomManager CreateRoomManager();
|
2020-12-18 23:15:41 +08:00
|
|
|
|
|
2020-12-20 22:36:56 +08:00
|
|
|
|
protected abstract LoungeSubScreen CreateLounge();
|
|
|
|
|
|
2020-12-24 05:02:37 +08:00
|
|
|
|
protected abstract OsuButton CreateNewMultiplayerGameButton();
|
|
|
|
|
|
2018-05-16 08:14:10 +08:00
|
|
|
|
private class MultiplayerWaveContainer : WaveContainer
|
|
|
|
|
{
|
|
|
|
|
protected override bool StartHidden => true;
|
|
|
|
|
|
|
|
|
|
public MultiplayerWaveContainer()
|
|
|
|
|
{
|
2020-03-11 09:18:41 +08:00
|
|
|
|
FirstWaveColour = Color4Extensions.FromHex(@"654d8c");
|
|
|
|
|
SecondWaveColour = Color4Extensions.FromHex(@"554075");
|
|
|
|
|
ThirdWaveColour = Color4Extensions.FromHex(@"44325e");
|
|
|
|
|
FourthWaveColour = Color4Extensions.FromHex(@"392850");
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-19 18:42:25 +08:00
|
|
|
|
|
2020-12-26 00:12:33 +08:00
|
|
|
|
private class HeaderBackgroundSprite : OnlinePlayBackgroundSprite
|
2020-02-19 18:42:25 +08:00
|
|
|
|
{
|
|
|
|
|
protected override UpdateableBeatmapBackgroundSprite CreateBackgroundSprite() => new BackgroundSprite { RelativeSizeAxes = Axes.Both };
|
|
|
|
|
|
|
|
|
|
private class BackgroundSprite : UpdateableBeatmapBackgroundSprite
|
|
|
|
|
{
|
|
|
|
|
protected override double TransformDuration => 200;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-19 16:58:04 +08:00
|
|
|
|
|
|
|
|
|
ScreenStack IHasSubScreenStack.SubScreenStack => screenStack;
|
2018-05-16 08:14:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|