2017-02-07 04:59:30 +00:00
|
|
|
|
// 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 09:56:20 +00:00
|
|
|
|
|
2017-04-19 06:40:10 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-04-20 02:02:56 +00:00
|
|
|
|
using osu.Framework.Extensions;
|
2017-09-05 08:09:58 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-09-06 08:02:13 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2017-04-19 06:40:10 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2016-11-29 11:30:16 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Scoring
|
2016-11-29 11:30:16 +00:00
|
|
|
|
{
|
2017-09-06 09:05:51 +00:00
|
|
|
|
internal class OsuScoreProcessor : ScoreProcessor<OsuHitObject>
|
2016-11-29 11:30:16 +00:00
|
|
|
|
{
|
2017-09-06 09:05:51 +00:00
|
|
|
|
public OsuScoreProcessor(RulesetContainer<OsuHitObject> rulesetContainer)
|
2017-08-09 04:28:29 +00:00
|
|
|
|
: base(rulesetContainer)
|
2017-01-16 20:14:35 +00:00
|
|
|
|
{
|
2017-03-16 04:13:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-04 09:51:50 +00:00
|
|
|
|
private float hpDrainRate;
|
2017-08-31 08:31:48 +00:00
|
|
|
|
|
2017-09-05 10:44:59 +00:00
|
|
|
|
private readonly Dictionary<HitResult, int> scoreResultCounts = new Dictionary<HitResult, int>();
|
2017-09-05 08:09:58 +00:00
|
|
|
|
private readonly Dictionary<ComboResult, int> comboResultCounts = new Dictionary<ComboResult, int>();
|
|
|
|
|
|
2017-09-12 12:16:47 +00:00
|
|
|
|
protected override void SimulateAutoplay(Beatmap<OsuHitObject> beatmap)
|
2017-08-31 08:31:48 +00:00
|
|
|
|
{
|
2017-10-19 05:05:11 +00:00
|
|
|
|
hpDrainRate = beatmap.BeatmapInfo.BaseDifficulty.DrainRate;
|
2017-09-05 08:09:58 +00:00
|
|
|
|
|
2017-09-12 13:01:08 +00:00
|
|
|
|
foreach (var obj in beatmap.HitObjects)
|
2017-09-05 08:09:58 +00:00
|
|
|
|
{
|
2017-09-12 13:01:08 +00:00
|
|
|
|
var slider = obj as Slider;
|
|
|
|
|
if (slider != null)
|
|
|
|
|
{
|
|
|
|
|
// Head
|
|
|
|
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
|
|
|
|
|
|
|
|
|
// Ticks
|
2017-09-12 13:27:27 +00:00
|
|
|
|
foreach (var unused in slider.Ticks)
|
2017-09-12 13:01:08 +00:00
|
|
|
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-05 10:44:59 +00:00
|
|
|
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
2017-09-05 08:09:58 +00:00
|
|
|
|
}
|
2017-08-31 08:31:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 13:27:27 +00:00
|
|
|
|
protected override void Reset(bool storeResults)
|
2017-03-16 04:13:45 +00:00
|
|
|
|
{
|
2017-09-12 13:27:27 +00:00
|
|
|
|
base.Reset(storeResults);
|
2017-03-16 04:13:45 +00:00
|
|
|
|
|
2017-04-19 06:40:10 +00:00
|
|
|
|
scoreResultCounts.Clear();
|
|
|
|
|
comboResultCounts.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 02:16:08 +00:00
|
|
|
|
public override void PopulateScore(Score score)
|
2017-04-19 06:40:10 +00:00
|
|
|
|
{
|
2017-04-20 02:16:08 +00:00
|
|
|
|
base.PopulateScore(score);
|
2017-04-19 06:40:10 +00:00
|
|
|
|
|
2017-09-05 10:44:59 +00:00
|
|
|
|
score.Statistics[@"300"] = scoreResultCounts.GetOrDefault(HitResult.Great);
|
|
|
|
|
score.Statistics[@"100"] = scoreResultCounts.GetOrDefault(HitResult.Good);
|
|
|
|
|
score.Statistics[@"50"] = scoreResultCounts.GetOrDefault(HitResult.Meh);
|
|
|
|
|
score.Statistics[@"x"] = scoreResultCounts.GetOrDefault(HitResult.Miss);
|
2017-01-16 20:14:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
protected override void OnNewJudgement(Judgement judgement)
|
2016-11-29 12:28:43 +00:00
|
|
|
|
{
|
2017-09-12 12:05:50 +00:00
|
|
|
|
base.OnNewJudgement(judgement);
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
var osuJudgement = (OsuJudgement)judgement;
|
|
|
|
|
|
|
|
|
|
if (judgement.Result != HitResult.None)
|
2017-04-11 15:05:21 +00:00
|
|
|
|
{
|
2017-09-06 08:02:13 +00:00
|
|
|
|
scoreResultCounts[judgement.Result] = scoreResultCounts.GetOrDefault(judgement.Result) + 1;
|
|
|
|
|
comboResultCounts[osuJudgement.Combo] = comboResultCounts.GetOrDefault(osuJudgement.Combo) + 1;
|
2017-04-11 15:05:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
switch (judgement.Result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.Great:
|
|
|
|
|
Health.Value += (10.2 - hpDrainRate) * 0.02;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HitResult.Good:
|
|
|
|
|
Health.Value += (8 - hpDrainRate) * 0.02;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HitResult.Meh:
|
|
|
|
|
Health.Value += (4 - hpDrainRate) * 0.02;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/*case HitResult.SliderTick:
|
|
|
|
|
Health.Value += Math.Max(7 - hpDrainRate, 0) * 0.01;
|
|
|
|
|
break;*/
|
|
|
|
|
|
|
|
|
|
case HitResult.Miss:
|
|
|
|
|
Health.Value -= hpDrainRate * 0.04;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-09-05 08:09:58 +00:00
|
|
|
|
}
|
2016-11-29 11:30:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|