2019-02-18 13:54:21 +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.
|
|
|
|
|
2020-06-08 15:30:26 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2019-02-18 13:54:21 +08:00
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing
|
|
|
|
{
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Represents a single hit object in taiko difficulty calculation.
|
|
|
|
/// </summary>
|
2019-02-18 13:54:21 +08:00
|
|
|
public class TaikoDifficultyHitObject : DifficultyHitObject
|
|
|
|
{
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The rhythm required to hit this hit object.
|
|
|
|
/// </summary>
|
2020-05-11 13:50:02 +08:00
|
|
|
public readonly TaikoDifficultyHitObjectRhythm Rhythm;
|
2020-08-23 01:34:16 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The hit type of this hit object.
|
|
|
|
/// </summary>
|
2020-08-13 00:35:56 +08:00
|
|
|
public readonly HitType? HitType;
|
2020-08-23 01:34:16 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The index of the object in the beatmap.
|
|
|
|
/// </summary>
|
2020-08-22 23:51:35 +08:00
|
|
|
public readonly int ObjectIndex;
|
2019-02-18 13:54:21 +08:00
|
|
|
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Whether the object should carry a penalty due to being hittable using special techniques
|
|
|
|
/// making it easier to do so.
|
|
|
|
/// </summary>
|
2020-08-19 01:31:10 +08:00
|
|
|
public bool StaminaCheese;
|
2020-05-11 13:50:02 +08:00
|
|
|
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a new difficulty hit object.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hitObject">The gameplay <see cref="HitObject"/> associated with this difficulty object.</param>
|
|
|
|
/// <param name="lastObject">The gameplay <see cref="HitObject"/> preceding <paramref name="hitObject"/>.</param>
|
|
|
|
/// <param name="lastLastObject">The gameplay <see cref="HitObject"/> preceding <paramref name="lastObject"/>.</param>
|
|
|
|
/// <param name="clockRate">The rate of the gameplay clock. Modified by speed-changing mods.</param>
|
|
|
|
/// <param name="objectIndex">The index of the object in the beatmap.</param>
|
2020-08-22 23:10:31 +08:00
|
|
|
public TaikoDifficultyHitObject(HitObject hitObject, HitObject lastObject, HitObject lastLastObject, double clockRate, int objectIndex)
|
2019-02-19 16:45:16 +08:00
|
|
|
: base(hitObject, lastObject, clockRate)
|
2019-02-18 13:54:21 +08:00
|
|
|
{
|
2020-05-11 13:53:42 +08:00
|
|
|
var currentHit = hitObject as Hit;
|
|
|
|
|
2020-08-23 01:34:16 +08:00
|
|
|
Rhythm = getClosestRhythm(lastObject, lastLastObject, clockRate);
|
2020-08-13 00:35:56 +08:00
|
|
|
HitType = currentHit?.Type;
|
2020-06-08 15:30:26 +08:00
|
|
|
|
2020-08-12 23:59:22 +08:00
|
|
|
ObjectIndex = objectIndex;
|
2019-02-18 13:54:21 +08:00
|
|
|
}
|
2020-05-11 13:50:02 +08:00
|
|
|
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// List of most common rhythm changes in taiko maps.
|
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
|
|
|
/// The general guidelines for the values are:
|
|
|
|
/// <list type="bullet">
|
|
|
|
/// <item>rhythm changes with ratio closer to 1 (that are <i>not</i> 1) are harder to play,</item>
|
|
|
|
/// <item>speeding up is <i>generally</i> harder than slowing down (with exceptions of rhythm changes requiring a hand switch).</item>
|
|
|
|
/// </list>
|
|
|
|
/// </remarks>
|
2020-08-22 23:10:31 +08:00
|
|
|
private static readonly TaikoDifficultyHitObjectRhythm[] common_rhythms =
|
2020-06-08 15:30:26 +08:00
|
|
|
{
|
2020-08-22 23:10:31 +08:00
|
|
|
new TaikoDifficultyHitObjectRhythm(1, 1, 0.0),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(2, 1, 0.3),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(1, 2, 0.5),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(3, 1, 0.3),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(1, 3, 0.35),
|
2020-08-23 01:34:16 +08:00
|
|
|
new TaikoDifficultyHitObjectRhythm(3, 2, 0.6), // purposefully higher (requires hand switch in full alternating gameplay style)
|
2020-08-22 23:10:31 +08:00
|
|
|
new TaikoDifficultyHitObjectRhythm(2, 3, 0.4),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(5, 4, 0.5),
|
|
|
|
new TaikoDifficultyHitObjectRhythm(4, 5, 0.7)
|
|
|
|
};
|
|
|
|
|
2020-08-23 01:34:16 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Returns the closest rhythm change from <see cref="common_rhythms"/> required to hit this object.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="lastObject">The gameplay <see cref="HitObject"/> preceding this one.</param>
|
|
|
|
/// <param name="lastLastObject">The gameplay <see cref="HitObject"/> preceding <paramref name="lastObject"/>.</param>
|
|
|
|
/// <param name="clockRate">The rate of the gameplay clock.</param>
|
|
|
|
private TaikoDifficultyHitObjectRhythm getClosestRhythm(HitObject lastObject, HitObject lastLastObject, double clockRate)
|
|
|
|
{
|
|
|
|
double prevLength = (lastObject.StartTime - lastLastObject.StartTime) / clockRate;
|
|
|
|
double ratio = DeltaTime / prevLength;
|
|
|
|
|
|
|
|
return common_rhythms.OrderBy(x => Math.Abs(x.Ratio - ratio)).First();
|
|
|
|
}
|
2019-02-18 13:54:21 +08:00
|
|
|
}
|
|
|
|
}
|