// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions.ObjectExtensions; using osu.Framework.Graphics; using osu.Game.Extensions; using osu.Game.Online.API; using osu.Game.Online.Spectator; using osu.Game.Scoring; namespace osu.Game.Online { /// /// A persistent component that binds to the spectator server and API in order to deliver updates about the logged in user's gameplay statistics. /// public partial class UserStatisticsWatcher : Component { private readonly LocalUserStatisticsProvider statisticsProvider; public IBindable LatestUpdate => latestUpdate; private readonly Bindable latestUpdate = new Bindable(); [Resolved] private SpectatorClient spectatorClient { get; set; } = null!; [Resolved] private IAPIProvider api { get; set; } = null!; private readonly Dictionary watchedScores = new Dictionary(); public UserStatisticsWatcher(LocalUserStatisticsProvider statisticsProvider) { this.statisticsProvider = statisticsProvider; } protected override void LoadComplete() { base.LoadComplete(); spectatorClient.OnUserScoreProcessed += userScoreProcessed; } /// /// Registers for a user statistics update after the given has been processed server-side. /// /// The score to listen for the statistics update for. public void RegisterForStatisticsUpdateAfter(ScoreInfo score) { Schedule(() => { if (!api.IsLoggedIn) return; if (!score.Ruleset.IsLegacyRuleset() || score.OnlineID <= 0) return; watchedScores.Add(score.OnlineID, score); }); } private void userScoreProcessed(int userId, long scoreId) { if (userId != api.LocalUser.Value?.OnlineID) return; if (!watchedScores.Remove(scoreId, out var scoreInfo)) return; statisticsProvider.RefetchStatistics(scoreInfo.Ruleset, u => Schedule(() => { if (u.OldStatistics != null) latestUpdate.Value = new ScoreBasedUserStatisticsUpdate(scoreInfo, u.OldStatistics, u.NewStatistics); })); } protected override void Dispose(bool isDisposing) { if (spectatorClient.IsNotNull()) spectatorClient.OnUserScoreProcessed -= userScoreProcessed; base.Dispose(isDisposing); } } }