2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-10-02 13:20:55 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
|
{
|
2020-10-02 13:20:55 +08:00
|
|
|
|
/// <summary>
|
2020-10-02 14:21:52 +08:00
|
|
|
|
/// A hit circle which is at the end of a slider path (either repeat or final tail).
|
2020-10-02 13:20:55 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class SliderEndCircle : HitCircle
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-02 14:21:52 +08:00
|
|
|
|
private readonly Slider slider;
|
|
|
|
|
|
|
|
|
|
protected SliderEndCircle(Slider slider)
|
|
|
|
|
{
|
|
|
|
|
this.slider = slider;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-02 13:20:55 +08:00
|
|
|
|
public int RepeatIndex { get; set; }
|
2020-10-02 14:21:52 +08:00
|
|
|
|
|
|
|
|
|
public double SpanDuration => slider.SpanDuration;
|
2020-10-02 13:20:55 +08:00
|
|
|
|
|
2021-10-01 13:56:42 +08:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
|
2020-10-02 13:20:55 +08:00
|
|
|
|
{
|
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
|
|
|
|
|
|
|
|
|
if (RepeatIndex > 0)
|
2020-10-02 13:37:07 +08:00
|
|
|
|
{
|
|
|
|
|
// Repeat points after the first span should appear behind the still-visible one.
|
|
|
|
|
TimeFadeIn = 0;
|
|
|
|
|
|
|
|
|
|
// The next end circle should appear exactly after the previous circle (on the same end) is hit.
|
|
|
|
|
TimePreempt = SpanDuration * 2;
|
|
|
|
|
}
|
2020-10-02 14:21:52 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// taken from osu-stable
|
|
|
|
|
const float first_end_circle_preempt_adjust = 2 / 3f;
|
|
|
|
|
|
|
|
|
|
// The first end circle should fade in with the slider.
|
|
|
|
|
TimePreempt = (StartTime - slider.StartTime) + slider.TimePreempt * first_end_circle_preempt_adjust;
|
|
|
|
|
}
|
2020-10-02 13:20:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override HitWindows CreateHitWindows() => HitWindows.Empty;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|