mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 10:17:43 +08:00
85 lines
2.8 KiB
C#
85 lines
2.8 KiB
C#
|
// 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.
|
||
|
|
||
|
using System.Collections.Generic;
|
||
|
using osu.Framework.Bindables;
|
||
|
using osu.Framework.Utils;
|
||
|
using osu.Game.Online;
|
||
|
using osu.Game.Online.Spectator;
|
||
|
using osu.Game.Replays.Legacy;
|
||
|
using osu.Game.Scoring;
|
||
|
|
||
|
namespace osu.Game.Tests.Visual.Spectator
|
||
|
{
|
||
|
public class TestSpectatorStreamingClient : SpectatorStreamingClient
|
||
|
{
|
||
|
public new BindableList<int> PlayingUsers => (BindableList<int>)base.PlayingUsers;
|
||
|
private readonly HashSet<int> watchingUsers = new HashSet<int>();
|
||
|
|
||
|
private readonly Dictionary<int, int> userBeatmapDictionary = new Dictionary<int, int>();
|
||
|
private readonly Dictionary<int, bool> userSentStateDictionary = new Dictionary<int, bool>();
|
||
|
|
||
|
public TestSpectatorStreamingClient()
|
||
|
: base(new DevelopmentEndpointConfiguration())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public void StartPlay(int userId, int beatmapId)
|
||
|
{
|
||
|
userBeatmapDictionary[userId] = beatmapId;
|
||
|
sendState(userId, beatmapId);
|
||
|
}
|
||
|
|
||
|
public void EndPlay(int userId, int beatmapId)
|
||
|
{
|
||
|
((ISpectatorClient)this).UserFinishedPlaying(userId, new SpectatorState
|
||
|
{
|
||
|
BeatmapID = beatmapId,
|
||
|
RulesetID = 0,
|
||
|
});
|
||
|
|
||
|
userSentStateDictionary[userId] = false;
|
||
|
}
|
||
|
|
||
|
public void SendFrames(int userId, int index, int count)
|
||
|
{
|
||
|
var frames = new List<LegacyReplayFrame>();
|
||
|
|
||
|
for (int i = index; i < index + count; i++)
|
||
|
{
|
||
|
var buttonState = i == index + count - 1 ? ReplayButtonState.None : ReplayButtonState.Left1;
|
||
|
|
||
|
frames.Add(new LegacyReplayFrame(i * 100, RNG.Next(0, 512), RNG.Next(0, 512), buttonState));
|
||
|
}
|
||
|
|
||
|
var bundle = new FrameDataBundle(new ScoreInfo(), frames);
|
||
|
((ISpectatorClient)this).UserSentFrames(userId, bundle);
|
||
|
|
||
|
if (!userSentStateDictionary[userId])
|
||
|
sendState(userId, userBeatmapDictionary[userId]);
|
||
|
}
|
||
|
|
||
|
public override void WatchUser(int userId)
|
||
|
{
|
||
|
// When newly watching a user, the server sends the playing state immediately.
|
||
|
if (!watchingUsers.Contains(userId) && PlayingUsers.Contains(userId))
|
||
|
sendState(userId, userBeatmapDictionary[userId]);
|
||
|
|
||
|
base.WatchUser(userId);
|
||
|
|
||
|
watchingUsers.Add(userId);
|
||
|
}
|
||
|
|
||
|
private void sendState(int userId, int beatmapId)
|
||
|
{
|
||
|
((ISpectatorClient)this).UserBeganPlaying(userId, new SpectatorState
|
||
|
{
|
||
|
BeatmapID = beatmapId,
|
||
|
RulesetID = 0,
|
||
|
});
|
||
|
|
||
|
userSentStateDictionary[userId] = true;
|
||
|
}
|
||
|
}
|
||
|
}
|