2019-02-18 13:46:32 +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 System;
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Difficulty.Preprocessing
|
|
|
|
{
|
|
|
|
public class CatchDifficultyHitObject : DifficultyHitObject
|
|
|
|
{
|
|
|
|
private const float normalized_hitobject_radius = 41.0f;
|
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
public new PalpableCatchHitObject BaseObject => (PalpableCatchHitObject)base.BaseObject;
|
2019-02-18 13:46:32 +08:00
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
public new PalpableCatchHitObject LastObject => (PalpableCatchHitObject)base.LastObject;
|
2019-02-16 10:11:31 +08:00
|
|
|
|
|
|
|
public readonly float NormalizedPosition;
|
2019-02-20 13:13:54 +08:00
|
|
|
public readonly float LastNormalizedPosition;
|
2019-02-16 10:11:31 +08:00
|
|
|
|
2019-02-18 13:46:32 +08:00
|
|
|
/// <summary>
|
2019-03-06 13:36:30 +08:00
|
|
|
/// Milliseconds elapsed since the start time of the previous <see cref="CatchDifficultyHitObject"/>, with a minimum of 40ms.
|
2019-02-18 13:46:32 +08:00
|
|
|
/// </summary>
|
|
|
|
public readonly double StrainTime;
|
2020-04-08 11:19:09 +08:00
|
|
|
|
2019-02-19 16:42:24 +08:00
|
|
|
public CatchDifficultyHitObject(HitObject hitObject, HitObject lastObject, double clockRate, float halfCatcherWidth)
|
|
|
|
: base(hitObject, lastObject, clockRate)
|
2019-02-18 13:46:32 +08:00
|
|
|
{
|
|
|
|
// We will scale everything by this factor, so we can assume a uniform CircleSize among beatmaps.
|
2019-02-16 10:11:31 +08:00
|
|
|
var scalingFactor = normalized_hitobject_radius / halfCatcherWidth;
|
2019-02-18 13:46:32 +08:00
|
|
|
|
2020-12-09 16:58:53 +08:00
|
|
|
NormalizedPosition = BaseObject.EffectiveX * scalingFactor;
|
|
|
|
LastNormalizedPosition = LastObject.EffectiveX * scalingFactor;
|
2019-02-18 13:46:32 +08:00
|
|
|
|
2019-03-06 13:36:30 +08:00
|
|
|
// Every strain interval is hard capped at the equivalent of 375 BPM streaming speed as a safety measure
|
|
|
|
StrainTime = Math.Max(40, DeltaTime);
|
2019-02-18 13:46:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|