2020-12-19 00:17:24 +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
|
|
|
|
|
2021-11-23 15:04:11 +08:00
|
|
|
using System;
|
2020-12-19 00:17:24 +08:00
|
|
|
using System.Collections.Generic;
|
2021-11-26 16:23:50 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2020-12-25 12:38:11 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-06-25 17:02:53 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
2020-12-25 23:50:00 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay.Multiplayer;
|
2021-08-19 11:24:06 +08:00
|
|
|
using osu.Game.Tests.Visual.OnlinePlay;
|
2020-12-19 00:17:24 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Tests.Visual.Multiplayer
|
2020-12-19 00:17:24 +08:00
|
|
|
{
|
2021-06-25 17:02:53 +08:00
|
|
|
/// <summary>
|
2021-10-27 15:10:22 +08:00
|
|
|
/// A <see cref="RoomManager"/> for use in multiplayer test scenes.
|
2021-08-19 11:24:06 +08:00
|
|
|
/// Should generally not be used by itself outside of a <see cref="MultiplayerTestScene"/>.
|
2021-06-25 17:02:53 +08:00
|
|
|
/// </summary>
|
2021-10-27 15:10:22 +08:00
|
|
|
public partial class TestMultiplayerRoomManager : MultiplayerRoomManager
|
2020-12-19 00:17:24 +08:00
|
|
|
{
|
2021-10-28 13:29:49 +08:00
|
|
|
private readonly TestRoomRequestsHandler requestsHandler;
|
|
|
|
|
|
|
|
public TestMultiplayerRoomManager(TestRoomRequestsHandler requestsHandler)
|
|
|
|
{
|
|
|
|
this.requestsHandler = requestsHandler;
|
|
|
|
}
|
2020-12-19 00:17:24 +08:00
|
|
|
|
2021-10-27 15:10:22 +08:00
|
|
|
public IReadOnlyList<Room> ServerSideRooms => requestsHandler.ServerSideRooms;
|
2020-12-19 00:17:24 +08:00
|
|
|
|
2021-11-23 15:04:11 +08:00
|
|
|
public override void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
|
2021-12-20 12:10:13 +08:00
|
|
|
=> base.CreateRoom(room, r => onSuccess?.Invoke(r), onError);
|
2021-11-23 15:04:11 +08:00
|
|
|
|
|
|
|
public override void JoinRoom(Room room, string password = null, Action<Room> onSuccess = null, Action<string> onError = null)
|
2021-12-20 12:10:13 +08:00
|
|
|
=> base.JoinRoom(room, password, r => onSuccess?.Invoke(r), onError);
|
2021-11-23 15:04:11 +08:00
|
|
|
|
2021-08-19 11:24:06 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Adds a room to a local "server-side" list that's returned when a <see cref="GetRoomsRequest"/> is fired.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="room">The room.</param>
|
2021-11-26 16:23:50 +08:00
|
|
|
/// <param name="host">The host.</param>
|
|
|
|
public void AddServerSideRoom(Room room, APIUser host) => requestsHandler.AddServerSideRoom(room, host);
|
2020-12-19 00:17:24 +08:00
|
|
|
}
|
|
|
|
}
|