2022-07-15 19:07:01 +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.
|
|
|
|
|
2022-06-06 12:42:49 +08:00
|
|
|
using System;
|
|
|
|
using osu.Game.Rulesets.Taiko.Difficulty.Preprocessing;
|
2022-07-05 14:41:40 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour;
|
2022-07-15 19:07:01 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour.Data;
|
2022-06-06 12:42:49 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Evaluators
|
|
|
|
{
|
|
|
|
public class ColourEvaluator
|
|
|
|
{
|
|
|
|
private static double sigmoid(double val, double center, double width)
|
|
|
|
{
|
|
|
|
return Math.Tanh(Math.E * -(val - center) / width);
|
|
|
|
}
|
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
private static double sigmoid(double val, double center, double width, double middle, double height)
|
2022-07-01 14:27:23 +08:00
|
|
|
{
|
2022-07-05 14:41:40 +08:00
|
|
|
return sigmoid(val, center, width) * (height / 2) + middle;
|
2022-07-01 14:27:23 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Evaluate the difficulty of the first note of a <see cref="MonoEncoding"/>.
|
|
|
|
/// <param name="encoding">The encoding to evaluate.</param>
|
|
|
|
/// <param name="i">The index of the mono encoding within it's parent <see cref="ColourEncoding"/>.</param>
|
|
|
|
/// </summary>
|
|
|
|
public static double EvaluateDifficultyOf(MonoEncoding encoding, int i)
|
2022-07-01 14:27:23 +08:00
|
|
|
{
|
2022-07-05 14:41:40 +08:00
|
|
|
return sigmoid(i, 2, 2, 0.5, 1);
|
2022-07-01 14:27:23 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Evaluate the difficulty of the first note of a <see cref="ColourEncoding"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="encoding">The encoding to evaluate.</param>
|
|
|
|
/// <param name="i">The index of the colour encoding within it's parent <see cref="CoupledColourEncoding"/>.</param>
|
|
|
|
public static double EvaluateDifficultyOf(ColourEncoding encoding, int i)
|
2022-06-06 12:42:49 +08:00
|
|
|
{
|
2022-07-05 14:41:40 +08:00
|
|
|
return sigmoid(i, 2, 2, 0.5, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Evaluate the difficulty of the first note of a <see cref="CoupledColourEncoding"/>.
|
|
|
|
/// </summary>
|
|
|
|
public static double EvaluateDifficultyOf(CoupledColourEncoding encoding)
|
|
|
|
{
|
|
|
|
return 1 - sigmoid(encoding.RepetitionInterval, 2, 2, 0.5, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Pre-evaluate and *assign* difficulty values of all hit objects encoded in a <see cref="CoupledColourEncoding"/>.
|
|
|
|
/// Difficulty values are assigned to <see cref="TaikoDifficultyHitObjectColour.EvaluatedDifficulty"/> of each
|
|
|
|
/// <see cref="TaikoDifficultyHitObject"/> encoded within.
|
|
|
|
/// </summary>
|
|
|
|
public static void PreEvaluateDifficulties(CoupledColourEncoding encoding)
|
|
|
|
{
|
2022-07-07 16:04:46 +08:00
|
|
|
double coupledEncodingDifficulty = 2 * EvaluateDifficultyOf(encoding);
|
2022-07-05 14:41:40 +08:00
|
|
|
encoding.Payload[0].Payload[0].EncodedData[0].Colour!.EvaluatedDifficulty += coupledEncodingDifficulty;
|
2022-07-15 19:07:01 +08:00
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
for (int i = 0; i < encoding.Payload.Count; i++)
|
|
|
|
{
|
|
|
|
ColourEncoding colourEncoding = encoding.Payload[i];
|
|
|
|
double colourEncodingDifficulty = EvaluateDifficultyOf(colourEncoding, i) * coupledEncodingDifficulty;
|
|
|
|
colourEncoding.Payload[0].EncodedData[0].Colour!.EvaluatedDifficulty += colourEncodingDifficulty;
|
2022-07-15 19:07:01 +08:00
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
for (int j = 0; j < colourEncoding.Payload.Count; j++)
|
|
|
|
{
|
|
|
|
MonoEncoding monoEncoding = colourEncoding.Payload[j];
|
2022-07-07 16:04:46 +08:00
|
|
|
monoEncoding.EncodedData[0].Colour!.EvaluatedDifficulty += EvaluateDifficultyOf(monoEncoding, j) * colourEncodingDifficulty * 0.5;
|
2022-07-05 14:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
2022-06-06 12:42:49 +08:00
|
|
|
}
|
|
|
|
}
|
2022-06-09 17:22:55 +08:00
|
|
|
}
|