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

42 lines
1.2 KiB
C#
Raw Normal View History

// 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;
using System.Linq;
using osu.Framework.Audio.Track;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Game.Rulesets.Mods;
2018-11-28 15:12:57 +08:00
using osu.Game.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;
2018-11-30 14:18:52 +08:00
protected readonly ScoreInfo Score;
2018-04-13 17:19:50 +08:00
protected double TimeRate { get; private set; } = 1;
protected PerformanceCalculator(Ruleset ruleset, DifficultyAttributes attributes, ScoreInfo score)
2018-04-13 17:19:50 +08:00
{
2018-05-16 00:43:58 +08:00
Ruleset = ruleset;
2018-11-30 14:18:52 +08:00
Score = score;
2018-04-13 17:19:50 +08:00
Attributes = attributes ?? throw new ArgumentNullException(nameof(attributes));
2018-11-30 14:18:52 +08:00
ApplyMods(score.Mods);
}
2018-05-14 10:52:22 +08:00
protected virtual void ApplyMods(Mod[] mods)
{
var track = new TrackVirtual(10000);
mods.OfType<IApplicableToTrack>().ForEach(m => m.ApplyToTrack(track));
TimeRate = track.Rate;
2018-04-13 17:19:50 +08:00
}
2021-12-21 18:08:31 +08:00
public abstract PerformanceAttributes Calculate();
2018-04-13 17:19:50 +08:00
}
}