2020-12-20 22:26:31 +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.
|
|
|
|
|
|
|
|
#nullable enable
|
|
|
|
|
2021-02-01 16:57:32 +08:00
|
|
|
using System.Collections.Generic;
|
2020-12-20 22:26:31 +08:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.AspNetCore.SignalR.Client;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Game.Online.API;
|
2021-01-03 09:32:50 +08:00
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-20 22:26:31 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-20 22:26:31 +08:00
|
|
|
{
|
2020-12-25 12:38:11 +08:00
|
|
|
public class MultiplayerClient : StatefulMultiplayerClient
|
2020-12-20 22:26:31 +08:00
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
private readonly HubClientConnector connector;
|
2020-12-20 22:26:31 +08:00
|
|
|
|
2021-02-09 07:01:52 +08:00
|
|
|
public override IBindable<bool> IsConnected => connector.IsConnected;
|
2020-12-20 22:26:31 +08:00
|
|
|
|
2021-02-09 07:01:52 +08:00
|
|
|
private HubConnection? connection => connector.CurrentConnection;
|
2020-12-24 16:58:38 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
public MultiplayerClient(EndpointConfiguration endpoints)
|
2020-12-24 16:58:38 +08:00
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
InternalChild = connector = new HubClientConnector("Multiplayer client", endpoints.MultiplayerEndpointUrl)
|
2020-12-20 22:26:31 +08:00
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
OnNewConnection = newConnection =>
|
2020-12-20 22:26:31 +08:00
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
// this is kind of SILLY
|
|
|
|
// https://github.com/dotnet/aspnetcore/issues/15198
|
|
|
|
newConnection.On<MultiplayerRoomState>(nameof(IMultiplayerClient.RoomStateChanged), ((IMultiplayerClient)this).RoomStateChanged);
|
|
|
|
newConnection.On<MultiplayerRoomUser>(nameof(IMultiplayerClient.UserJoined), ((IMultiplayerClient)this).UserJoined);
|
|
|
|
newConnection.On<MultiplayerRoomUser>(nameof(IMultiplayerClient.UserLeft), ((IMultiplayerClient)this).UserLeft);
|
|
|
|
newConnection.On<int>(nameof(IMultiplayerClient.HostChanged), ((IMultiplayerClient)this).HostChanged);
|
|
|
|
newConnection.On<MultiplayerRoomSettings>(nameof(IMultiplayerClient.SettingsChanged), ((IMultiplayerClient)this).SettingsChanged);
|
|
|
|
newConnection.On<int, MultiplayerUserState>(nameof(IMultiplayerClient.UserStateChanged), ((IMultiplayerClient)this).UserStateChanged);
|
|
|
|
newConnection.On(nameof(IMultiplayerClient.LoadRequested), ((IMultiplayerClient)this).LoadRequested);
|
|
|
|
newConnection.On(nameof(IMultiplayerClient.MatchStarted), ((IMultiplayerClient)this).MatchStarted);
|
|
|
|
newConnection.On(nameof(IMultiplayerClient.ResultsReady), ((IMultiplayerClient)this).ResultsReady);
|
|
|
|
newConnection.On<int, IEnumerable<APIMod>>(nameof(IMultiplayerClient.UserModsChanged), ((IMultiplayerClient)this).UserModsChanged);
|
|
|
|
},
|
|
|
|
};
|
2020-12-20 22:26:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override Task<MultiplayerRoom> JoinRoom(long roomId)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2020-12-24 00:01:01 +08:00
|
|
|
return Task.FromCanceled<MultiplayerRoom>(new CancellationToken(true));
|
2020-12-20 22:26:31 +08:00
|
|
|
|
|
|
|
return connection.InvokeAsync<MultiplayerRoom>(nameof(IMultiplayerServer.JoinRoom), roomId);
|
|
|
|
}
|
|
|
|
|
2021-01-25 19:41:51 +08:00
|
|
|
protected override Task LeaveRoomInternal()
|
2020-12-20 22:26:31 +08:00
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2021-01-25 19:41:51 +08:00
|
|
|
return Task.FromCanceled(new CancellationToken(true));
|
2020-12-20 22:26:31 +08:00
|
|
|
|
2021-01-25 19:41:51 +08:00
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.LeaveRoom));
|
2020-12-20 22:26:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override Task TransferHost(int userId)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2020-12-20 22:26:31 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.TransferHost), userId);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Task ChangeSettings(MultiplayerRoomSettings settings)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2020-12-20 22:26:31 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.ChangeSettings), settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Task ChangeState(MultiplayerUserState newState)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2020-12-20 22:26:31 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.ChangeState), newState);
|
|
|
|
}
|
|
|
|
|
2021-01-03 09:32:50 +08:00
|
|
|
public override Task ChangeBeatmapAvailability(BeatmapAvailability newBeatmapAvailability)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2021-01-03 09:32:50 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.ChangeBeatmapAvailability), newBeatmapAvailability);
|
|
|
|
}
|
|
|
|
|
2021-02-01 16:57:32 +08:00
|
|
|
public override Task ChangeUserMods(IEnumerable<APIMod> newMods)
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2021-02-01 16:57:32 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.ChangeUserMods), newMods);
|
|
|
|
}
|
|
|
|
|
2020-12-20 22:26:31 +08:00
|
|
|
public override Task StartMatch()
|
|
|
|
{
|
2021-02-09 07:01:52 +08:00
|
|
|
if (!IsConnected.Value)
|
2020-12-20 22:26:31 +08:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
|
|
|
return connection.InvokeAsync(nameof(IMultiplayerServer.StartMatch));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|