1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Rulesets/Difficulty/PerformanceCalculator.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2018-04-13 17:19:50 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Timing;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Scoring;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Difficulty
2018-04-13 17:19:50 +08:00
{
public abstract class PerformanceCalculator
{
2018-06-14 15:04:48 +08:00
protected readonly DifficultyAttributes Attributes;
2018-04-13 17:19:50 +08:00
2018-05-16 00:43:58 +08:00
protected readonly Ruleset Ruleset;
protected readonly IBeatmap Beatmap;
2018-04-13 17:19:50 +08:00
protected readonly Score Score;
protected double TimeRate { get; private set; } = 1;
2018-06-14 15:04:48 +08:00
protected PerformanceCalculator(Ruleset ruleset, WorkingBeatmap beatmap, Score score)
2018-04-13 17:19:50 +08:00
{
2018-05-16 00:43:58 +08:00
Ruleset = ruleset;
Score = score;
2018-04-13 17:19:50 +08:00
2018-06-14 15:04:48 +08:00
beatmap.Mods.Value = score.Mods;
Beatmap = beatmap.GetPlayableBeatmap(ruleset.RulesetInfo);
Attributes = ruleset.CreateDifficultyCalculator(beatmap).Calculate(score.Mods);
ApplyMods(score.Mods);
}
2018-05-14 10:52:22 +08:00
protected virtual void ApplyMods(Mod[] mods)
{
var clock = new StopwatchClock();
mods.OfType<IApplicableToClock>().ForEach(m => m.ApplyToClock(clock));
TimeRate = clock.Rate;
2018-04-13 17:19:50 +08:00
}
public abstract double Calculate(Dictionary<string, double> categoryDifficulty = null);
2018-04-13 17:19:50 +08:00
}
}