2020-05-11 13:50:02 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
|
|
|
using osu.Game.Rulesets.Difficulty.Skills;
|
2021-02-06 12:06:16 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2022-07-21 19:15:22 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Difficulty.Evaluators;
|
2020-05-11 13:50:02 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Skills
|
|
|
|
|
{
|
2020-08-23 01:34:16 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Calculates the colour coefficient of taiko difficulty.
|
|
|
|
|
/// </summary>
|
2021-08-17 06:14:29 +08:00
|
|
|
|
public class Colour : StrainDecaySkill
|
2020-05-11 13:50:02 +08:00
|
|
|
|
{
|
2022-07-07 16:04:46 +08:00
|
|
|
|
protected override double SkillMultiplier => 0.12;
|
2020-05-11 13:50:02 +08:00
|
|
|
|
|
2022-08-19 15:45:43 +08:00
|
|
|
|
// This is set to decay slower than other skills, due to the fact that only the first note of each encoding class
|
|
|
|
|
// having any difficulty values, and we want to allow colour difficulty to be able to build up even on
|
2022-07-14 16:29:23 +08:00
|
|
|
|
// slower maps.
|
|
|
|
|
protected override double StrainDecayBase => 0.8;
|
2022-06-28 10:38:58 +08:00
|
|
|
|
|
2021-02-06 12:06:16 +08:00
|
|
|
|
public Colour(Mod[] mods)
|
|
|
|
|
: base(mods)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-13 00:35:56 +08:00
|
|
|
|
protected override double StrainValueOf(DifficultyHitObject current)
|
2020-05-22 19:50:21 +08:00
|
|
|
|
{
|
2022-07-21 19:15:22 +08:00
|
|
|
|
return ColourEvaluator.EvaluateDifficultyOf(current);
|
2022-07-01 14:27:23 +08:00
|
|
|
|
}
|
2020-05-11 13:50:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|