2017-03-15 16:50:52 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-09-08 18:21:35 +08:00
|
|
|
|
using System;
|
2017-03-15 16:50:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-09-08 18:21:35 +08:00
|
|
|
|
using System.Linq;
|
2017-03-15 13:06:05 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2017-07-26 12:22:46 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-09-14 19:05:43 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2017-09-08 18:21:35 +08:00
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using osu.Game.Rulesets.Replays;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-03-15 13:06:05 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
|
|
|
|
public class GetScoresRequest : APIRequest<GetScoresResponse>
|
|
|
|
|
{
|
|
|
|
|
private readonly BeatmapInfo beatmap;
|
|
|
|
|
|
|
|
|
|
public GetScoresRequest(BeatmapInfo beatmap)
|
|
|
|
|
{
|
2017-09-15 11:44:48 +08:00
|
|
|
|
if (!beatmap.OnlineBeatmapID.HasValue)
|
|
|
|
|
throw new InvalidOperationException($"Cannot lookup a beatmap's scores without having a populated {nameof(BeatmapInfo.OnlineBeatmapID)}.");
|
|
|
|
|
|
2017-03-15 13:06:05 +08:00
|
|
|
|
this.beatmap = beatmap;
|
2017-08-15 21:30:53 +08:00
|
|
|
|
|
|
|
|
|
Success += onSuccess;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onSuccess(GetScoresResponse r)
|
|
|
|
|
{
|
2017-09-08 00:20:14 +08:00
|
|
|
|
foreach (OnlineScore score in r.Scores)
|
2017-09-08 18:17:16 +08:00
|
|
|
|
score.ApplyBeatmap(beatmap);
|
2017-03-15 13:06:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-19 15:02:18 +08:00
|
|
|
|
protected override string Target => $@"beatmaps/{beatmap.OnlineBeatmapID}/scores";
|
2017-03-15 13:06:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GetScoresResponse
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"scores")]
|
2017-09-08 00:20:14 +08:00
|
|
|
|
public IEnumerable<OnlineScore> Scores;
|
2017-03-15 13:06:05 +08:00
|
|
|
|
}
|
2017-09-08 18:21:35 +08:00
|
|
|
|
|
|
|
|
|
public class OnlineScore : Score
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"score")]
|
|
|
|
|
private double totalScore
|
|
|
|
|
{
|
|
|
|
|
set { TotalScore = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"max_combo")]
|
|
|
|
|
private int maxCombo
|
|
|
|
|
{
|
|
|
|
|
set { MaxCombo = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"user")]
|
|
|
|
|
private User user
|
|
|
|
|
{
|
|
|
|
|
set { User = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"replay_data")]
|
|
|
|
|
private Replay replay
|
|
|
|
|
{
|
|
|
|
|
set { Replay = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-14 19:05:43 +08:00
|
|
|
|
[JsonProperty(@"mode_int")]
|
|
|
|
|
public int OnlineRulesetID { get; set; }
|
|
|
|
|
|
2017-09-08 18:21:35 +08:00
|
|
|
|
[JsonProperty(@"score_id")]
|
|
|
|
|
private long onlineScoreID
|
|
|
|
|
{
|
|
|
|
|
set { OnlineScoreID = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"created_at")]
|
|
|
|
|
private DateTimeOffset date
|
|
|
|
|
{
|
|
|
|
|
set { Date = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-14 19:05:43 +08:00
|
|
|
|
[JsonProperty(@"beatmap")]
|
|
|
|
|
private BeatmapInfo beatmap
|
|
|
|
|
{
|
|
|
|
|
set { Beatmap = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"beatmapset")]
|
|
|
|
|
private BeatmapMetadata metadata
|
|
|
|
|
{
|
|
|
|
|
set { Beatmap.Metadata = value; }
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-08 18:21:35 +08:00
|
|
|
|
[JsonProperty(@"statistics")]
|
2017-09-28 00:08:42 +08:00
|
|
|
|
private Dictionary<string, object> jsonStats
|
2017-09-08 18:21:35 +08:00
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
foreach (var kvp in value)
|
|
|
|
|
{
|
|
|
|
|
string key = kvp.Key;
|
|
|
|
|
switch (key)
|
|
|
|
|
{
|
|
|
|
|
case @"count_300":
|
|
|
|
|
key = @"300";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_100":
|
|
|
|
|
key = @"100";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_50":
|
|
|
|
|
key = @"50";
|
|
|
|
|
break;
|
|
|
|
|
case @"count_miss":
|
|
|
|
|
key = @"x";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Statistics.Add(key, kvp.Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"mods")]
|
|
|
|
|
private string[] modStrings { get; set; }
|
|
|
|
|
|
|
|
|
|
public void ApplyBeatmap(BeatmapInfo beatmap)
|
|
|
|
|
{
|
|
|
|
|
Beatmap = beatmap;
|
2017-09-14 19:05:43 +08:00
|
|
|
|
ApplyRuleset(beatmap.Ruleset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ApplyRuleset(RulesetInfo ruleset)
|
|
|
|
|
{
|
|
|
|
|
Ruleset = ruleset;
|
2017-09-08 18:21:35 +08:00
|
|
|
|
|
|
|
|
|
// Evaluate the mod string
|
|
|
|
|
Mods = Ruleset.CreateInstance().GetAllMods().Where(mod => modStrings.Contains(mod.ShortenedName)).ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-08 00:20:14 +08:00
|
|
|
|
}
|