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

155 lines
4.3 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
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-26 19:05:57 +08:00
public event Action<Room> RoomJoined;
2018-12-20 19:58:34 +08:00
private readonly BindableCollection<Room> rooms = new BindableCollection<Room>();
public IBindableCollection<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; }
public RoomManager()
{
TimeBetweenPolls = 5000;
}
2018-12-26 19:12:51 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
PartRoom();
}
public void CreateRoom(Room room)
{
room.Host.Value = api.LocalUser;
2018-12-12 18:04:11 +08:00
var req = new CreateRoomRequest(room);
req.Success += result => addRoom(room, result);
req.Failure += exception => Logger.Log($"Failed to create room: {exception}");
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)
{
currentJoinRoomRequest?.Cancel();
currentJoinRoomRequest = null;
currentJoinRoomRequest = new JoinRoomRequest(room, api.LocalUser.Value);
currentJoinRoomRequest.Success += () =>
{
currentRoom = room;
2018-12-26 19:05:57 +08:00
RoomJoined?.Invoke(room);
2018-12-20 19:58:34 +08:00
};
currentJoinRoomRequest.Failure += exception => Logger.Log($"Failed to join room: {exception}");
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();
}
2018-12-12 18:04:11 +08:00
protected override Task Poll()
{
if (!api.IsLoggedIn)
return base.Poll();
var tcs = new TaskCompletionSource<bool>();
var 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);
}
// Add new matches, or update existing
2018-12-12 18:04:11 +08:00
foreach (var r in result)
{
processPlaylist(r);
2018-12-12 18:04:11 +08:00
var existing = rooms.FirstOrDefault(e => e.RoomID.Value == r.RoomID.Value);
if (existing == null)
rooms.Add(r);
else
existing.CopyFrom(r);
}
tcs.SetResult(true);
};
pollReq.Failure += _ => tcs.SetResult(false);
2018-12-12 18:04:11 +08:00
api.Queue(pollReq);
return tcs.Task;
}
private void addRoom(Room local, Room remote)
{
processPlaylist(remote);
2018-12-12 18:04:11 +08:00
local.CopyFrom(remote);
var existing = rooms.FirstOrDefault(e => e.RoomID.Value == local.RoomID.Value);
if (existing != null)
rooms.Remove(existing);
rooms.Add(local);
}
private void processPlaylist(Room room)
{
foreach (var pi in room.Playlist)
pi.MapObjects(beatmaps, rulesets);
}
}
}