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-12-25 10:45:50 +08:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi
|
|
|
|
{
|
|
|
|
public interface IRoomManager
|
|
|
|
{
|
2018-12-28 00:45:19 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Invoked when the <see cref="Room"/>s have been updated.
|
|
|
|
/// </summary>
|
|
|
|
event Action RoomsUpdated;
|
|
|
|
|
2018-12-25 10:45:50 +08:00
|
|
|
/// <summary>
|
|
|
|
/// All the active <see cref="Room"/>s.
|
|
|
|
/// </summary>
|
2019-01-07 17:50:27 +08:00
|
|
|
IBindableList<Room> Rooms { get; }
|
2018-12-25 10:45:50 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new <see cref="Room"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="room">The <see cref="Room"/> to create.</param>
|
2018-12-26 19:45:56 +08:00
|
|
|
/// <param name="onSuccess">An action to be invoked if the creation succeeds.</param>
|
2018-12-26 17:38:58 +08:00
|
|
|
/// <param name="onError">An action to be invoked if an error occurred.</param>
|
2018-12-26 20:10:31 +08:00
|
|
|
void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null);
|
2018-12-25 10:45:50 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Joins a <see cref="Room"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="room">The <see cref="Room"/> to join. <see cref="Room.RoomID"/> must be populated.</param>
|
2018-12-26 20:10:31 +08:00
|
|
|
/// <param name="onSuccess"></param>
|
|
|
|
/// <param name="onError"></param>
|
|
|
|
void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null);
|
2018-12-25 10:45:50 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Parts the currently-joined <see cref="Room"/>.
|
|
|
|
/// </summary>
|
|
|
|
void PartRoom();
|
|
|
|
}
|
|
|
|
}
|