1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 08:07:26 +08:00
osu-lazer/osu.Game/Screens/Multi/RoomManager.cs

180 lines
5.1 KiB
C#
Raw Normal View History

// 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-20 19:58:34 +08:00
using System;
2018-12-12 18:04:11 +08:00
using System.Linq;
using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Framework.Configuration;
2018-12-12 18:04:11 +08:00
using osu.Framework.Logging;
using osu.Game.Beatmaps;
using osu.Game.Online;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Online.Multiplayer;
2018-12-12 18:04:11 +08:00
using osu.Game.Rulesets;
using osu.Game.Screens.Multi.Lounge.Components;
namespace osu.Game.Screens.Multi
{
public class RoomManager : PollingComponent, IRoomManager
{
2018-12-28 00:45:19 +08:00
public event Action RoomsUpdated;
2019-01-07 17:50:27 +08:00
private readonly BindableList<Room> rooms = new BindableList<Room>();
public IBindableList<Room> Rooms => rooms;
2018-12-20 19:58:34 +08:00
private Room currentRoom;
private FilterCriteria currentFilter = new FilterCriteria();
[Resolved]
private APIAccess api { get; set; }
2018-12-12 18:04:11 +08:00
[Resolved]
private RulesetStore rulesets { get; set; }
[Resolved]
private BeatmapManager beatmaps { get; set; }
2018-12-26 19:12:51 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
PartRoom();
}
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
{
room.Host.Value = api.LocalUser;
2018-12-12 18:04:11 +08:00
var req = new CreateRoomRequest(room);
2018-12-26 19:32:01 +08:00
req.Success += result =>
{
update(room, result);
addRoom(room);
2018-12-28 00:45:19 +08:00
RoomsUpdated?.Invoke();
onSuccess?.Invoke(room);
2018-12-26 19:32:01 +08:00
};
2018-12-26 17:38:58 +08:00
req.Failure += exception =>
{
if (req.Result != null)
onError?.Invoke(req.Result.Error);
else
Logger.Log($"Failed to create the room: {exception}", level: LogLevel.Important);
};
2018-12-20 19:58:34 +08:00
2018-12-12 18:04:11 +08:00
api.Queue(req);
}
2018-12-20 19:58:34 +08:00
private JoinRoomRequest currentJoinRoomRequest;
public void JoinRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
2018-12-20 19:58:34 +08:00
{
currentJoinRoomRequest?.Cancel();
currentJoinRoomRequest = null;
currentJoinRoomRequest = new JoinRoomRequest(room, api.LocalUser.Value);
currentJoinRoomRequest.Success += () =>
{
currentRoom = room;
onSuccess?.Invoke(room);
2018-12-20 19:58:34 +08:00
};
currentJoinRoomRequest.Failure += exception =>
{
Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
onError?.Invoke(exception.ToString());
};
2018-12-20 19:58:34 +08:00
api.Queue(currentJoinRoomRequest);
}
public void PartRoom()
{
if (currentRoom == null)
return;
api.Queue(new PartRoomRequest(currentRoom, api.LocalUser.Value));
currentRoom = null;
}
public void Filter(FilterCriteria criteria)
{
currentFilter = criteria;
PollImmediately();
}
private GetRoomsRequest pollReq;
2018-12-12 18:04:11 +08:00
protected override Task Poll()
{
if (!api.IsLoggedIn)
return base.Poll();
var tcs = new TaskCompletionSource<bool>();
pollReq?.Cancel();
pollReq = new GetRoomsRequest(currentFilter.PrimaryFilter);
2018-12-12 18:04:11 +08:00
pollReq.Success += result =>
{
// Remove past matches
foreach (var r in rooms.ToList())
{
if (result.All(e => e.RoomID.Value != r.RoomID.Value))
rooms.Remove(r);
}
2018-12-28 00:45:19 +08:00
for (int i = 0; i < result.Count; i++)
2018-12-12 18:04:11 +08:00
{
2018-12-28 00:45:19 +08:00
var r = result[i];
r.Position = i;
2018-12-26 19:32:01 +08:00
update(r, r);
addRoom(r);
2018-12-12 18:04:11 +08:00
}
2018-12-28 00:45:19 +08:00
RoomsUpdated?.Invoke();
2018-12-12 18:04:11 +08:00
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
2018-12-12 18:04:11 +08:00
api.Queue(pollReq);
return tcs.Task;
}
2018-12-26 19:32:01 +08:00
/// <summary>
/// Updates a local <see cref="Room"/> with a remote copy.
/// </summary>
/// <param name="local">The local <see cref="Room"/> to update.</param>
/// <param name="remote">The remote <see cref="Room"/> to update with.</param>
private void update(Room local, Room remote)
2018-12-12 18:04:11 +08:00
{
2018-12-26 19:32:01 +08:00
foreach (var pi in remote.Playlist)
pi.MapObjects(beatmaps, rulesets);
2018-12-26 21:14:49 +08:00
2018-12-27 12:30:36 +08:00
local.CopyFrom(remote);
2018-12-12 18:04:11 +08:00
}
2018-12-26 19:32:01 +08:00
/// <summary>
/// Adds a <see cref="Room"/> to the list of available rooms.
/// </summary>
/// <param name="room">The <see cref="Room"/> to add.<</param>
private void addRoom(Room room)
{
2018-12-26 19:32:01 +08:00
var existing = rooms.FirstOrDefault(e => e.RoomID.Value == room.RoomID.Value);
if (existing == null)
rooms.Add(room);
else
existing.CopyFrom(room);
}
}
}