mirror of
https://github.com/ppy/osu
synced 2025-02-21 21:17:13 +00:00
Moved OnlineScore inside GetScoresRequest.cs
This commit is contained in:
parent
526ee107b8
commit
0b1403683b
@ -1,10 +1,14 @@
|
|||||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using osu.Framework.IO.Network;
|
using osu.Framework.IO.Network;
|
||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
|
using osu.Game.Users;
|
||||||
|
using osu.Game.Rulesets.Replays;
|
||||||
using osu.Game.Rulesets.Scoring;
|
using osu.Game.Rulesets.Scoring;
|
||||||
|
|
||||||
namespace osu.Game.Online.API.Requests
|
namespace osu.Game.Online.API.Requests
|
||||||
@ -42,4 +46,86 @@ namespace osu.Game.Online.API.Requests
|
|||||||
[JsonProperty(@"scores")]
|
[JsonProperty(@"scores")]
|
||||||
public IEnumerable<OnlineScore> Scores;
|
public IEnumerable<OnlineScore> Scores;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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; }
|
||||||
|
}
|
||||||
|
|
||||||
|
[JsonProperty(@"score_id")]
|
||||||
|
private long onlineScoreID
|
||||||
|
{
|
||||||
|
set { OnlineScoreID = value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
[JsonProperty(@"created_at")]
|
||||||
|
private DateTimeOffset date
|
||||||
|
{
|
||||||
|
set { Date = value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
[JsonProperty(@"statistics")]
|
||||||
|
private Dictionary<string, dynamic> jsonStats
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
Ruleset = beatmap.Ruleset;
|
||||||
|
|
||||||
|
// Evaluate the mod string
|
||||||
|
Mods = Ruleset.CreateInstance().GetAllMods().Where(mod => modStrings.Contains(mod.ShortenedName)).ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,95 +0,0 @@
|
|||||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
||||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using osu.Game.Beatmaps;
|
|
||||||
using osu.Game.Users;
|
|
||||||
using osu.Game.Rulesets.Replays;
|
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Scoring
|
|
||||||
{
|
|
||||||
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; }
|
|
||||||
}
|
|
||||||
|
|
||||||
[JsonProperty(@"score_id")]
|
|
||||||
private long onlineScoreID
|
|
||||||
{
|
|
||||||
set { OnlineScoreID = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
[JsonProperty(@"created_at")]
|
|
||||||
private DateTimeOffset date
|
|
||||||
{
|
|
||||||
set { Date = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
[JsonProperty(@"statistics")]
|
|
||||||
private Dictionary<string, dynamic> jsonStats
|
|
||||||
{
|
|
||||||
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;
|
|
||||||
Ruleset = beatmap.Ruleset;
|
|
||||||
|
|
||||||
// Evaluate the mod string
|
|
||||||
Mods = Ruleset.CreateInstance().GetAllMods().Where(mod => modStrings.Contains(mod.ShortenedName)).ToArray();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -244,7 +244,6 @@
|
|||||||
<Compile Include="Rulesets\Replays\ReplayFrame.cs" />
|
<Compile Include="Rulesets\Replays\ReplayFrame.cs" />
|
||||||
<Compile Include="Rulesets\RulesetStore.cs" />
|
<Compile Include="Rulesets\RulesetStore.cs" />
|
||||||
<Compile Include="Rulesets\Scoring\Score.cs" />
|
<Compile Include="Rulesets\Scoring\Score.cs" />
|
||||||
<Compile Include="Rulesets\Scoring\OnlineScore.cs" />
|
|
||||||
<Compile Include="Rulesets\Scoring\ScoreProcessor.cs" />
|
<Compile Include="Rulesets\Scoring\ScoreProcessor.cs" />
|
||||||
<Compile Include="Rulesets\Timing\SpeedAdjustmentContainer.cs" />
|
<Compile Include="Rulesets\Timing\SpeedAdjustmentContainer.cs" />
|
||||||
<Compile Include="Rulesets\Timing\LinearScrollingContainer.cs" />
|
<Compile Include="Rulesets\Timing\LinearScrollingContainer.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user