2023-05-18 19:52:40 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-05-09 18:33:33 +08:00
|
|
|
|
using System;
|
2023-06-15 02:34:06 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2023-05-09 18:33:33 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2023-06-15 02:34:06 +08:00
|
|
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Mania.Scoring
|
2017-03-16 11:40:35 +08:00
|
|
|
|
{
|
2023-05-09 18:33:33 +08:00
|
|
|
|
public partial class ManiaScoreProcessor : ScoreProcessor
|
2017-03-16 11:40:35 +08:00
|
|
|
|
{
|
2023-05-09 18:33:33 +08:00
|
|
|
|
private const double combo_base = 4;
|
|
|
|
|
|
2023-05-18 19:52:40 +08:00
|
|
|
|
public ManiaScoreProcessor()
|
|
|
|
|
: base(new ManiaRuleset())
|
2022-03-14 14:51:10 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-15 02:34:06 +08:00
|
|
|
|
protected override IEnumerable<HitObject> EnumerateHitObjects(IBeatmap beatmap)
|
2024-02-09 01:01:00 +08:00
|
|
|
|
=> base.EnumerateHitObjects(beatmap).Order(JudgementOrderComparer.DEFAULT);
|
2023-06-15 02:34:06 +08:00
|
|
|
|
|
2023-05-19 16:27:02 +08:00
|
|
|
|
protected override double ComputeTotalScore(double comboProgress, double accuracyProgress, double bonusPortion)
|
2023-05-09 18:33:33 +08:00
|
|
|
|
{
|
2023-12-20 17:43:06 +08:00
|
|
|
|
return 150000 * comboProgress
|
|
|
|
|
+ 850000 * Math.Pow(Accuracy.Value, 2 + 2 * Accuracy.Value) * accuracyProgress
|
2023-05-19 13:37:26 +08:00
|
|
|
|
+ bonusPortion;
|
2023-05-09 18:33:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-21 13:58:23 +08:00
|
|
|
|
protected override double GetComboScoreChange(JudgementResult result)
|
|
|
|
|
{
|
|
|
|
|
return getBaseComboScoreForResult(result.Type) * Math.Min(Math.Max(0.5, Math.Log(result.ComboAfterJudgement, combo_base)), Math.Log(400, combo_base));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int GetBaseScoreForResult(HitResult result)
|
2023-12-20 17:35:45 +08:00
|
|
|
|
{
|
2023-12-20 19:23:43 +08:00
|
|
|
|
switch (result)
|
2023-12-20 17:35:45 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.Perfect:
|
|
|
|
|
return 305;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-21 13:58:23 +08:00
|
|
|
|
return base.GetBaseScoreForResult(result);
|
2023-12-20 17:35:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-21 13:58:23 +08:00
|
|
|
|
private int getBaseComboScoreForResult(HitResult result)
|
2023-12-20 17:35:45 +08:00
|
|
|
|
{
|
2023-12-20 19:23:43 +08:00
|
|
|
|
switch (result)
|
2023-12-20 17:35:45 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.Perfect:
|
2023-12-20 19:23:43 +08:00
|
|
|
|
return 300;
|
2023-12-20 17:35:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-21 13:58:23 +08:00
|
|
|
|
return GetBaseScoreForResult(result);
|
2023-12-20 17:35:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-14 18:29:36 +08:00
|
|
|
|
private class JudgementOrderComparer : IComparer<HitObject>
|
2023-06-15 02:34:06 +08:00
|
|
|
|
{
|
|
|
|
|
public static readonly JudgementOrderComparer DEFAULT = new JudgementOrderComparer();
|
|
|
|
|
|
2023-07-14 18:29:36 +08:00
|
|
|
|
public int Compare(HitObject? x, HitObject? y)
|
2023-06-15 02:34:06 +08:00
|
|
|
|
{
|
|
|
|
|
if (ReferenceEquals(x, y)) return 0;
|
|
|
|
|
if (ReferenceEquals(x, null)) return -1;
|
|
|
|
|
if (ReferenceEquals(y, null)) return 1;
|
|
|
|
|
|
|
|
|
|
int result = x.GetEndTime().CompareTo(y.GetEndTime());
|
|
|
|
|
if (result != 0)
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
|
|
// due to the way input is handled in mania, notes take precedence over ticks in judging order.
|
2023-07-15 10:19:34 +08:00
|
|
|
|
if (x is Note && y is not Note) return -1;
|
|
|
|
|
if (x is not Note && y is Note) return 1;
|
2023-06-15 02:34:06 +08:00
|
|
|
|
|
2023-07-15 10:19:34 +08:00
|
|
|
|
return x is ManiaHitObject maniaX && y is ManiaHitObject maniaY
|
|
|
|
|
? maniaX.Column.CompareTo(maniaY.Column)
|
|
|
|
|
: 0;
|
2023-06-15 02:34:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-16 11:40:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|