2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2018-11-28 15:12:57 +08:00
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2019-04-01 10:23:07 +08:00
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
2018-11-28 15:12:57 +08:00
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.IO.Legacy;
|
2018-11-28 16:20:37 +08:00
|
|
|
|
using osu.Game.Replays;
|
|
|
|
|
using osu.Game.Replays.Legacy;
|
2018-11-28 15:12:57 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2018-11-30 13:48:19 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Replays;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using SharpCompress.Compressors.LZMA;
|
|
|
|
|
|
2018-11-28 15:12:57 +08:00
|
|
|
|
namespace osu.Game.Scoring.Legacy
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-03-24 09:38:24 +08:00
|
|
|
|
public abstract class LegacyScoreDecoder
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-04-19 19:44:38 +08:00
|
|
|
|
private IBeatmap currentBeatmap;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private Ruleset currentRuleset;
|
|
|
|
|
|
2018-11-28 17:45:17 +08:00
|
|
|
|
public Score Parse(Stream stream)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-28 17:45:17 +08:00
|
|
|
|
var score = new Score
|
|
|
|
|
{
|
|
|
|
|
Replay = new Replay()
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-31 16:13:42 +08:00
|
|
|
|
WorkingBeatmap workingBeatmap;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using (SerializationReader sr = new SerializationReader(stream))
|
|
|
|
|
{
|
2018-05-15 10:42:40 +08:00
|
|
|
|
currentRuleset = GetRuleset(sr.ReadByte());
|
2019-12-03 14:28:10 +08:00
|
|
|
|
var scoreInfo = new ScoreInfo { Ruleset = currentRuleset.RulesetInfo };
|
2019-03-27 15:55:46 +08:00
|
|
|
|
|
2019-03-27 15:59:29 +08:00
|
|
|
|
score.ScoreInfo = scoreInfo;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
var version = sr.ReadInt32();
|
|
|
|
|
|
2020-03-31 16:13:42 +08:00
|
|
|
|
workingBeatmap = GetBeatmap(sr.ReadString());
|
2018-11-28 18:48:15 +08:00
|
|
|
|
if (workingBeatmap is DummyWorkingBeatmap)
|
|
|
|
|
throw new BeatmapNotFoundException();
|
|
|
|
|
|
2019-03-27 15:55:46 +08:00
|
|
|
|
scoreInfo.User = new User { Username = sr.ReadString() };
|
2018-11-30 16:36:06 +08:00
|
|
|
|
|
|
|
|
|
// MD5Hash
|
|
|
|
|
sr.ReadString();
|
2018-05-11 19:31:57 +08:00
|
|
|
|
|
2019-12-03 14:28:10 +08:00
|
|
|
|
scoreInfo.SetCount300(sr.ReadUInt16());
|
|
|
|
|
scoreInfo.SetCount100(sr.ReadUInt16());
|
|
|
|
|
scoreInfo.SetCount50(sr.ReadUInt16());
|
|
|
|
|
scoreInfo.SetCountGeki(sr.ReadUInt16());
|
|
|
|
|
scoreInfo.SetCountKatu(sr.ReadUInt16());
|
|
|
|
|
scoreInfo.SetCountMiss(sr.ReadUInt16());
|
2018-05-11 19:31:57 +08:00
|
|
|
|
|
2019-03-27 15:55:46 +08:00
|
|
|
|
scoreInfo.TotalScore = sr.ReadInt32();
|
|
|
|
|
scoreInfo.MaxCombo = sr.ReadUInt16();
|
2018-11-28 16:02:14 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/* score.Perfect = */
|
|
|
|
|
sr.ReadBoolean();
|
2018-11-28 16:02:14 +08:00
|
|
|
|
|
2020-03-24 11:06:24 +08:00
|
|
|
|
scoreInfo.Mods = currentRuleset.ConvertFromLegacyMods((LegacyMods)sr.ReadInt32()).ToArray();
|
2018-11-28 16:02:14 +08:00
|
|
|
|
|
2021-06-08 17:00:09 +08:00
|
|
|
|
// lazer replays get a really high version number.
|
2021-06-08 17:38:47 +08:00
|
|
|
|
if (version < LegacyScoreEncoder.FIRST_LAZER_VERSION)
|
2021-09-10 10:09:13 +08:00
|
|
|
|
scoreInfo.Mods = scoreInfo.Mods.Append(currentRuleset.CreateMod<ModClassic>()).ToArray();
|
2021-06-08 17:00:09 +08:00
|
|
|
|
|
2020-03-27 14:50:11 +08:00
|
|
|
|
currentBeatmap = workingBeatmap.GetPlayableBeatmap(currentRuleset.RulesetInfo, scoreInfo.Mods);
|
|
|
|
|
scoreInfo.Beatmap = currentBeatmap.BeatmapInfo;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/* score.HpGraphString = */
|
|
|
|
|
sr.ReadString();
|
2018-11-28 16:02:14 +08:00
|
|
|
|
|
2019-03-27 15:55:46 +08:00
|
|
|
|
scoreInfo.Date = sr.ReadDateTime();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
var compressedReplay = sr.ReadByteArray();
|
|
|
|
|
|
|
|
|
|
if (version >= 20140721)
|
2019-03-27 15:55:46 +08:00
|
|
|
|
scoreInfo.OnlineScoreID = sr.ReadInt64();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
else if (version >= 20121008)
|
2019-03-27 15:55:46 +08:00
|
|
|
|
scoreInfo.OnlineScoreID = sr.ReadInt32();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-29 17:36:07 +08:00
|
|
|
|
if (scoreInfo.OnlineScoreID <= 0)
|
|
|
|
|
scoreInfo.OnlineScoreID = null;
|
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
if (compressedReplay?.Length > 0)
|
2018-05-11 19:32:06 +08:00
|
|
|
|
{
|
2018-11-30 13:48:19 +08:00
|
|
|
|
using (var replayInStream = new MemoryStream(compressedReplay))
|
2018-05-11 19:32:06 +08:00
|
|
|
|
{
|
2018-11-30 13:48:19 +08:00
|
|
|
|
byte[] properties = new byte[5];
|
|
|
|
|
if (replayInStream.Read(properties, 0, 5) != 5)
|
|
|
|
|
throw new IOException("input .lzma is too short");
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
long outSize = 0;
|
2019-04-01 10:39:02 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
|
{
|
|
|
|
|
int v = replayInStream.ReadByte();
|
|
|
|
|
if (v < 0)
|
|
|
|
|
throw new IOException("Can't Read 1");
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
outSize |= (long)(byte)v << (8 * i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
long compressedSize = replayInStream.Length - replayInStream.Position;
|
|
|
|
|
|
|
|
|
|
using (var lzma = new LzmaStream(properties, replayInStream, compressedSize, outSize))
|
|
|
|
|
using (var reader = new StreamReader(lzma))
|
|
|
|
|
readLegacyReplay(score.Replay, reader);
|
2018-05-11 19:32:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-30 13:48:19 +08:00
|
|
|
|
}
|
2018-05-11 19:32:06 +08:00
|
|
|
|
|
2019-01-23 19:30:32 +08:00
|
|
|
|
CalculateAccuracy(score.ScoreInfo);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-31 16:13:42 +08:00
|
|
|
|
// before returning for database import, we must restore the database-sourced BeatmapInfo.
|
|
|
|
|
// if not, the clone operation in GetPlayableBeatmap will cause a dereference and subsequent database exception.
|
|
|
|
|
score.ScoreInfo.Beatmap = workingBeatmap.BeatmapInfo;
|
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
return score;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-01-23 19:30:32 +08:00
|
|
|
|
protected void CalculateAccuracy(ScoreInfo score)
|
2018-11-30 13:48:19 +08:00
|
|
|
|
{
|
2020-08-28 00:05:06 +08:00
|
|
|
|
int countMiss = score.GetCountMiss() ?? 0;
|
|
|
|
|
int count50 = score.GetCount50() ?? 0;
|
|
|
|
|
int count100 = score.GetCount100() ?? 0;
|
|
|
|
|
int count300 = score.GetCount300() ?? 0;
|
|
|
|
|
int countGeki = score.GetCountGeki() ?? 0;
|
|
|
|
|
int countKatu = score.GetCountKatu() ?? 0;
|
2018-11-30 13:48:19 +08:00
|
|
|
|
|
|
|
|
|
switch (score.Ruleset.ID)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
{
|
|
|
|
|
int totalHits = count50 + count100 + count300 + countMiss;
|
|
|
|
|
score.Accuracy = totalHits > 0 ? (double)(count50 * 50 + count100 * 100 + count300 * 300) / (totalHits * 300) : 1;
|
|
|
|
|
|
|
|
|
|
float ratio300 = (float)count300 / totalHits;
|
|
|
|
|
float ratio50 = (float)count50 / totalHits;
|
|
|
|
|
|
|
|
|
|
if (ratio300 == 1)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.XH : ScoreRank.X;
|
|
|
|
|
else if (ratio300 > 0.9 && ratio50 <= 0.01 && countMiss == 0)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.SH : ScoreRank.S;
|
2019-06-11 16:28:16 +08:00
|
|
|
|
else if ((ratio300 > 0.8 && countMiss == 0) || ratio300 > 0.9)
|
2018-11-30 13:48:19 +08:00
|
|
|
|
score.Rank = ScoreRank.A;
|
2019-06-11 16:28:16 +08:00
|
|
|
|
else if ((ratio300 > 0.7 && countMiss == 0) || ratio300 > 0.8)
|
2018-11-30 13:48:19 +08:00
|
|
|
|
score.Rank = ScoreRank.B;
|
|
|
|
|
else if (ratio300 > 0.6)
|
|
|
|
|
score.Rank = ScoreRank.C;
|
|
|
|
|
else
|
|
|
|
|
score.Rank = ScoreRank.D;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-04-01 10:39:02 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
case 1:
|
|
|
|
|
{
|
|
|
|
|
int totalHits = count50 + count100 + count300 + countMiss;
|
|
|
|
|
score.Accuracy = totalHits > 0 ? (double)(count100 * 150 + count300 * 300) / (totalHits * 300) : 1;
|
|
|
|
|
|
|
|
|
|
float ratio300 = (float)count300 / totalHits;
|
|
|
|
|
float ratio50 = (float)count50 / totalHits;
|
|
|
|
|
|
|
|
|
|
if (ratio300 == 1)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.XH : ScoreRank.X;
|
|
|
|
|
else if (ratio300 > 0.9 && ratio50 <= 0.01 && countMiss == 0)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.SH : ScoreRank.S;
|
2019-06-11 16:28:16 +08:00
|
|
|
|
else if ((ratio300 > 0.8 && countMiss == 0) || ratio300 > 0.9)
|
2018-11-30 13:48:19 +08:00
|
|
|
|
score.Rank = ScoreRank.A;
|
2019-06-11 16:28:16 +08:00
|
|
|
|
else if ((ratio300 > 0.7 && countMiss == 0) || ratio300 > 0.8)
|
2018-11-30 13:48:19 +08:00
|
|
|
|
score.Rank = ScoreRank.B;
|
|
|
|
|
else if (ratio300 > 0.6)
|
|
|
|
|
score.Rank = ScoreRank.C;
|
|
|
|
|
else
|
|
|
|
|
score.Rank = ScoreRank.D;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-04-01 10:39:02 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
case 2:
|
|
|
|
|
{
|
|
|
|
|
int totalHits = count50 + count100 + count300 + countMiss + countKatu;
|
|
|
|
|
score.Accuracy = totalHits > 0 ? (double)(count50 + count100 + count300) / totalHits : 1;
|
|
|
|
|
|
|
|
|
|
if (score.Accuracy == 1)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.XH : ScoreRank.X;
|
|
|
|
|
else if (score.Accuracy > 0.98)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.SH : ScoreRank.S;
|
|
|
|
|
else if (score.Accuracy > 0.94)
|
|
|
|
|
score.Rank = ScoreRank.A;
|
|
|
|
|
else if (score.Accuracy > 0.9)
|
|
|
|
|
score.Rank = ScoreRank.B;
|
|
|
|
|
else if (score.Accuracy > 0.85)
|
|
|
|
|
score.Rank = ScoreRank.C;
|
|
|
|
|
else
|
|
|
|
|
score.Rank = ScoreRank.D;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-04-01 10:39:02 +08:00
|
|
|
|
|
2018-11-30 13:48:19 +08:00
|
|
|
|
case 3:
|
|
|
|
|
{
|
|
|
|
|
int totalHits = count50 + count100 + count300 + countMiss + countGeki + countKatu;
|
|
|
|
|
score.Accuracy = totalHits > 0 ? (double)(count50 * 50 + count100 * 100 + countKatu * 200 + (count300 + countGeki) * 300) / (totalHits * 300) : 1;
|
|
|
|
|
|
|
|
|
|
if (score.Accuracy == 1)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.XH : ScoreRank.X;
|
|
|
|
|
else if (score.Accuracy > 0.95)
|
|
|
|
|
score.Rank = score.Mods.Any(m => m is ModHidden || m is ModFlashlight) ? ScoreRank.SH : ScoreRank.S;
|
|
|
|
|
else if (score.Accuracy > 0.9)
|
|
|
|
|
score.Rank = ScoreRank.A;
|
|
|
|
|
else if (score.Accuracy > 0.8)
|
|
|
|
|
score.Rank = ScoreRank.B;
|
|
|
|
|
else if (score.Accuracy > 0.7)
|
|
|
|
|
score.Rank = ScoreRank.C;
|
|
|
|
|
else
|
|
|
|
|
score.Rank = ScoreRank.D;
|
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void readLegacyReplay(Replay replay, StreamReader reader)
|
|
|
|
|
{
|
|
|
|
|
float lastTime = 0;
|
2019-09-13 22:05:47 +08:00
|
|
|
|
ReplayFrame currentFrame = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-30 13:54:57 +08:00
|
|
|
|
var frames = reader.ReadToEnd().Split(',');
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < frames.Length; i++)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-01-30 13:54:57 +08:00
|
|
|
|
var split = frames[i].Split('|');
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (split.Length < 4)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (split[0] == "-12345")
|
|
|
|
|
{
|
|
|
|
|
// Todo: The seed is provided in split[3], which we'll need to use at some point
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-01 10:23:07 +08:00
|
|
|
|
var diff = Parsing.ParseFloat(split[0]);
|
2020-08-27 23:40:22 +08:00
|
|
|
|
var mouseX = Parsing.ParseFloat(split[1], Parsing.MAX_COORDINATE_VALUE);
|
|
|
|
|
var mouseY = Parsing.ParseFloat(split[2], Parsing.MAX_COORDINATE_VALUE);
|
2020-01-30 13:54:57 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
lastTime += diff;
|
|
|
|
|
|
2020-08-27 23:40:22 +08:00
|
|
|
|
if (i < 2 && mouseX == 256 && mouseY == -500)
|
|
|
|
|
// at the start of the replay, stable places two replay frames, at time 0 and SkipBoundary - 1, respectively.
|
|
|
|
|
// both frames use a position of (256, -500).
|
|
|
|
|
// ignore these frames as they serve no real purpose (and can even mislead ruleset-specific handlers - see mania)
|
2020-01-30 13:54:57 +08:00
|
|
|
|
continue;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
// Todo: At some point we probably want to rewind and play back the negative-time frames
|
|
|
|
|
// but for now we'll achieve equal playback to stable by skipping negative frames
|
|
|
|
|
if (diff < 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
2019-09-13 22:05:47 +08:00
|
|
|
|
currentFrame = convertFrame(new LegacyReplayFrame(lastTime,
|
2020-08-27 23:40:22 +08:00
|
|
|
|
mouseX,
|
|
|
|
|
mouseY,
|
2019-09-13 22:05:47 +08:00
|
|
|
|
(ReplayButtonState)Parsing.ParseInt(split[3])), currentFrame);
|
2019-09-12 17:33:46 +08:00
|
|
|
|
|
2019-09-13 22:05:47 +08:00
|
|
|
|
replay.Frames.Add(currentFrame);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-13 22:05:47 +08:00
|
|
|
|
private ReplayFrame convertFrame(LegacyReplayFrame currentFrame, ReplayFrame lastFrame)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
var convertible = currentRuleset.CreateConvertibleReplayFrame();
|
|
|
|
|
if (convertible == null)
|
|
|
|
|
throw new InvalidOperationException($"Legacy replay cannot be converted for the ruleset: {currentRuleset.Description}");
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2020-03-25 19:21:34 +08:00
|
|
|
|
convertible.FromLegacy(currentFrame, currentBeatmap, lastFrame);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
var frame = (ReplayFrame)convertible;
|
2019-09-12 17:33:46 +08:00
|
|
|
|
frame.Time = currentFrame.Time;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
|
}
|
2018-05-15 10:42:40 +08:00
|
|
|
|
|
2018-05-15 14:27:57 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the <see cref="Ruleset"/> for a specific id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="rulesetId">The id.</param>
|
|
|
|
|
/// <returns>The <see cref="Ruleset"/>.</returns>
|
|
|
|
|
protected abstract Ruleset GetRuleset(int rulesetId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the <see cref="WorkingBeatmap"/> corresponding to an MD5 hash.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="md5Hash">The MD5 hash.</param>
|
|
|
|
|
/// <returns>The <see cref="WorkingBeatmap"/>.</returns>
|
|
|
|
|
protected abstract WorkingBeatmap GetBeatmap(string md5Hash);
|
2018-11-28 18:48:15 +08:00
|
|
|
|
|
|
|
|
|
public class BeatmapNotFoundException : Exception
|
|
|
|
|
{
|
|
|
|
|
public BeatmapNotFoundException()
|
|
|
|
|
: base("No corresponding beatmap for the score could be found.")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|