2020-12-20 22:36: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.
|
|
|
|
|
2020-12-23 15:17:55 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Logging;
|
2021-07-14 17:55:01 +08:00
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
using osu.Game.Online.API;
|
2020-12-20 23:21:30 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Lounge.Components;
|
|
|
|
using osu.Game.Screens.OnlinePlay.Match;
|
2020-12-20 22:36:56 +08:00
|
|
|
|
2020-12-25 23:50:00 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
2020-12-20 22:36:56 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class MultiplayerLoungeSubScreen : LoungeSubScreen
|
2020-12-20 22:36:56 +08:00
|
|
|
{
|
2021-07-14 17:55:01 +08:00
|
|
|
[Resolved]
|
|
|
|
private IAPIProvider api { get; set; }
|
2020-12-23 15:17:55 +08:00
|
|
|
|
|
|
|
[Resolved]
|
2021-05-20 14:39:45 +08:00
|
|
|
private MultiplayerClient client { get; set; }
|
2020-12-23 15:17:55 +08:00
|
|
|
|
2021-08-12 18:48:15 +08:00
|
|
|
protected override FilterCriteria CreateFilterCriteria()
|
|
|
|
{
|
|
|
|
var criteria = base.CreateFilterCriteria();
|
2021-08-13 12:07:02 +08:00
|
|
|
criteria.Category = @"realtime";
|
2021-08-12 18:48:15 +08:00
|
|
|
return criteria;
|
|
|
|
}
|
2021-07-14 17:55:01 +08:00
|
|
|
|
|
|
|
protected override OsuButton CreateNewRoomButton() => new CreateMultiplayerMatchButton();
|
|
|
|
|
|
|
|
protected override Room CreateNewRoom() => new Room
|
|
|
|
{
|
|
|
|
Name = { Value = $"{api.LocalUser}'s awesome room" },
|
2021-08-05 18:55:15 +08:00
|
|
|
Category = { Value = RoomCategory.Realtime },
|
|
|
|
Type = { Value = MatchType.HeadToHead },
|
2021-07-14 17:55:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new MultiplayerMatchSubScreen(room);
|
|
|
|
|
2021-07-23 01:23:37 +08:00
|
|
|
protected override void OpenNewRoom(Room room)
|
2020-12-23 15:17:55 +08:00
|
|
|
{
|
2021-07-23 01:23:37 +08:00
|
|
|
if (client?.IsConnected.Value != true)
|
2020-12-23 15:17:55 +08:00
|
|
|
{
|
|
|
|
Logger.Log("Not currently connected to the multiplayer server.", LoggingTarget.Runtime, LogLevel.Important);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-23 01:23:37 +08:00
|
|
|
base.OpenNewRoom(room);
|
2020-12-23 15:17:55 +08:00
|
|
|
}
|
2020-12-20 22:36:56 +08:00
|
|
|
}
|
|
|
|
}
|