1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Scoring/OsuScoreProcessor.cs

162 lines
5.4 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 17:56:20 +08:00
using System;
2017-04-19 14:40:10 +08:00
using System.Collections.Generic;
using osu.Framework.Configuration;
using osu.Framework.Extensions;
using osu.Game.Beatmaps;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Judgements;
using osu.Game.Rulesets.Osu.Objects;
2017-04-19 14:40:10 +08:00
using osu.Game.Rulesets.Osu.Objects.Drawables;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
2016-11-29 19:30:16 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Scoring
2016-11-29 19:30:16 +08:00
{
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject, OsuJudgement>
2016-11-29 19:30:16 +08:00
{
public readonly Bindable<ScoringMode> Mode = new Bindable<ScoringMode>(ScoringMode.Exponential);
public OsuScoreProcessor()
{
}
2017-08-09 12:28:29 +08:00
public OsuScoreProcessor(RulesetContainer<OsuHitObject, OsuJudgement> rulesetContainer)
: base(rulesetContainer)
{
}
2017-09-04 17:51:50 +08:00
private float hpDrainRate;
2017-08-31 16:31:48 +08:00
private int totalAccurateJudgements;
private readonly Dictionary<OsuScoreResult, int> scoreResultCounts = new Dictionary<OsuScoreResult, int>();
private readonly Dictionary<ComboResult, int> comboResultCounts = new Dictionary<ComboResult, int>();
private double comboMaxScore;
protected override void ComputeTargets(Beatmap<OsuHitObject> beatmap)
2017-08-31 16:31:48 +08:00
{
2017-09-04 17:51:50 +08:00
hpDrainRate = beatmap.BeatmapInfo.Difficulty.DrainRate;
totalAccurateJudgements = beatmap.HitObjects.Count;
foreach (var h in beatmap.HitObjects)
{
// TODO: add support for other object types.
AddJudgement(new OsuJudgement
{
MaxScore = OsuScoreResult.Hit300,
Score = OsuScoreResult.Hit300,
Result = HitResult.Hit
});
}
2017-08-31 16:31:48 +08:00
}
protected override void Reset()
{
base.Reset();
2017-08-31 20:26:06 +08:00
Health.Value = 1;
Accuracy.Value = 1;
2017-04-19 14:40:10 +08:00
scoreResultCounts.Clear();
comboResultCounts.Clear();
}
public override void PopulateScore(Score score)
2017-04-19 14:40:10 +08:00
{
base.PopulateScore(score);
2017-04-19 14:40:10 +08:00
score.Statistics[@"300"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit300);
score.Statistics[@"100"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit100);
score.Statistics[@"50"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Hit50);
score.Statistics[@"x"] = scoreResultCounts.GetOrDefault(OsuScoreResult.Miss);
}
protected override void OnNewJudgement(OsuJudgement judgement)
{
if (judgement != null)
{
2017-04-19 14:40:10 +08:00
if (judgement.Result != HitResult.None)
{
2017-04-20 10:23:40 +08:00
scoreResultCounts[judgement.Score] = scoreResultCounts.GetOrDefault(judgement.Score) + 1;
comboResultCounts[judgement.Combo] = comboResultCounts.GetOrDefault(judgement.Combo) + 1;
2017-04-19 14:40:10 +08:00
}
2017-08-31 14:36:25 +08:00
switch (judgement.Score)
{
2017-08-31 14:36:25 +08:00
case OsuScoreResult.Hit300:
2017-09-04 17:51:50 +08:00
Health.Value += (10.2 - hpDrainRate) * 0.02;
2017-08-31 14:36:25 +08:00
break;
case OsuScoreResult.Hit100:
2017-09-04 17:51:50 +08:00
Health.Value += (8 - hpDrainRate) * 0.02;
break;
2017-08-31 14:36:25 +08:00
case OsuScoreResult.Hit50:
2017-09-04 17:51:50 +08:00
Health.Value += (4 - hpDrainRate) * 0.02;
2017-08-31 14:36:25 +08:00
break;
2017-08-31 16:44:00 +08:00
case OsuScoreResult.SliderTick:
Health.Value += Math.Max(7 - hpDrainRate, 0) * 0.01;
2017-08-31 16:44:00 +08:00
break;
2017-08-31 14:36:25 +08:00
case OsuScoreResult.Miss:
2017-09-04 17:51:50 +08:00
Health.Value -= hpDrainRate * 0.04;
break;
}
}
calculateScore();
calculateScore();
}
private void calculateScore()
{
int baseScore = 0;
double comboScore = 0;
int baseMaxScore = 0;
foreach (var j in Judgements)
{
baseScore += j.ScoreValue;
baseMaxScore += j.MaxScoreValue;
comboScore += j.ScoreValue * (1 + Combo.Value / 10d);
}
Accuracy.Value = (double)baseScore / baseMaxScore;
if (comboScore > comboMaxScore)
comboMaxScore = comboScore;
if (baseScore == 0)
TotalScore.Value = 0;
else
{
// temporary to make scoring feel more like score v1 without being score v1.
float exponentialFactor = Mode.Value == ScoringMode.Exponential ? (float)Judgements.Count / 100 : 1;
TotalScore.Value =
(int)
(
exponentialFactor *
700000 * comboScore / comboMaxScore +
300000 * Math.Pow(Accuracy.Value, 10) * ((double)Judgements.Count / totalAccurateJudgements) +
0 /* bonusScore */
);
}
}
public enum ScoringMode
{
Standardised,
Exponential
}
2016-11-29 19:30:16 +08:00
}
}