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.Collections.Generic;
|
|
|
|
|
using osu.Framework.Extensions;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-12-27 23:14:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Scoring
|
|
|
|
|
{
|
|
|
|
|
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject>
|
|
|
|
|
{
|
|
|
|
|
public OsuScoreProcessor(RulesetContainer<OsuHitObject> rulesetContainer)
|
|
|
|
|
: base(rulesetContainer)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private float hpDrainRate;
|
|
|
|
|
|
|
|
|
|
private readonly Dictionary<ComboResult, int> comboResultCounts = new Dictionary<ComboResult, int>();
|
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
protected override void ApplyBeatmap(Beatmap<OsuHitObject> beatmap)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-02 19:36:38 +08:00
|
|
|
|
base.ApplyBeatmap(beatmap);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Reset(bool storeResults)
|
|
|
|
|
{
|
|
|
|
|
base.Reset(storeResults);
|
|
|
|
|
comboResultCounts.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private const double harshness = 0.01;
|
|
|
|
|
|
2018-08-06 09:54:16 +08:00
|
|
|
|
protected override void ApplyResult(JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-06 09:54:16 +08:00
|
|
|
|
base.ApplyResult(result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
var osuResult = (OsuJudgementResult)result;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
if (result.Type != HitResult.None)
|
|
|
|
|
comboResultCounts[osuResult.ComboType] = comboResultCounts.GetOrDefault(osuResult.ComboType) + 1;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-02 19:36:38 +08:00
|
|
|
|
switch (result.Type)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
case HitResult.Great:
|
|
|
|
|
Health.Value += (10.2 - hpDrainRate) * harshness;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HitResult.Good:
|
|
|
|
|
Health.Value += (8 - hpDrainRate) * harshness;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HitResult.Meh:
|
|
|
|
|
Health.Value += (4 - hpDrainRate) * harshness;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/*case HitResult.SliderTick:
|
|
|
|
|
Health.Value += Math.Max(7 - hpDrainRate, 0) * 0.01;
|
|
|
|
|
break;*/
|
|
|
|
|
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
Health.Value -= hpDrainRate * (harshness * 2);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-02 20:07:11 +08:00
|
|
|
|
|
2018-08-06 10:07:41 +08:00
|
|
|
|
protected override JudgementResult CreateResult(Judgement judgement) => new OsuJudgementResult(judgement);
|
2018-12-27 23:14:00 +08:00
|
|
|
|
|
2019-01-03 12:57:56 +08:00
|
|
|
|
public override HitWindows CreateHitWindows() => new OsuHitWindows();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|