osu/osu.Game/Screens/OnlinePlay/Multiplayer/MultiplayerLoungeSubScreen.cs

35 lines
1.1 KiB
C#
Raw Normal View History

2020-12-20 14:36:56 +00: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.Logging;
2020-12-20 15:21:30 +00:00
using osu.Game.Online.Multiplayer;
2020-12-25 04:38:11 +00:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Lounge;
using osu.Game.Screens.OnlinePlay.Lounge.Components;
using osu.Game.Screens.OnlinePlay.Match;
2020-12-20 14:36:56 +00:00
namespace osu.Game.Screens.OnlinePlay.Multiplayer
2020-12-20 14:36:56 +00:00
{
2020-12-25 04:38:11 +00:00
public class MultiplayerLoungeSubScreen : LoungeSubScreen
2020-12-20 14:36:56 +00:00
{
2020-12-25 04:38:11 +00:00
protected override FilterControl CreateFilterControl() => new MultiplayerFilterControl();
2020-12-20 15:21:30 +00:00
2020-12-25 04:38:11 +00:00
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new MultiplayerMatchSubScreen(room);
[Resolved]
private StatefulMultiplayerClient client { get; set; }
public override void Open(Room room)
{
if (!client.IsConnected.Value)
{
Logger.Log("Not currently connected to the multiplayer server.", LoggingTarget.Runtime, LogLevel.Important);
return;
}
base.Open(room);
}
2020-12-20 14:36:56 +00:00
}
}