2021-10-28 16:57:17 +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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Database;
|
2021-11-04 17:02:44 +08:00
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-10-28 17:23:52 +08:00
|
|
|
using osu.Game.Rulesets;
|
2021-10-28 16:57:17 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Scoring
|
|
|
|
{
|
|
|
|
public interface IScoreInfo : IHasOnlineID<long>
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
APIUser User { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
long TotalScore { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
int MaxCombo { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
double Accuracy { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
bool HasReplay { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
DateTimeOffset Date { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
double? PP { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
IBeatmapInfo Beatmap { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
IRulesetInfo Ruleset { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-31 22:49:26 +08:00
|
|
|
ScoreRank Rank { get; }
|
2021-10-28 16:57:17 +08:00
|
|
|
|
2021-10-28 17:23:52 +08:00
|
|
|
// Mods is currently missing from this interface as the `IMod` class has properties which can't be fulfilled by `APIMod`,
|
|
|
|
// but also doesn't expose `Settings`. We can consider how to implement this in the future if required.
|
2021-10-29 13:18:10 +08:00
|
|
|
|
|
|
|
// Statistics is also missing. This can be reconsidered once changes in serialisation have been completed.
|
2021-10-28 16:57:17 +08:00
|
|
|
}
|
|
|
|
}
|