mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:37:51 +08:00
54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
// 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.Threading;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
{
|
|
public class BananaShower : CatchHitObject, IHasDuration
|
|
{
|
|
public override FruitVisualRepresentation VisualRepresentation => FruitVisualRepresentation.Banana;
|
|
|
|
public override bool LastInCombo => true;
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
|
|
|
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
|
|
{
|
|
base.CreateNestedHitObjects(cancellationToken);
|
|
createBananas(cancellationToken);
|
|
}
|
|
|
|
private void createBananas(CancellationToken cancellationToken)
|
|
{
|
|
double spacing = Duration;
|
|
while (spacing > 100)
|
|
spacing /= 2;
|
|
|
|
if (spacing <= 0)
|
|
return;
|
|
|
|
for (double i = StartTime; i <= EndTime; i += spacing)
|
|
{
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
AddNested(new Banana
|
|
{
|
|
Samples = Samples,
|
|
StartTime = i
|
|
});
|
|
}
|
|
}
|
|
|
|
public double EndTime
|
|
{
|
|
get => StartTime + Duration;
|
|
set => Duration = value - StartTime;
|
|
}
|
|
|
|
public double Duration { get; set; }
|
|
}
|
|
}
|