1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/BananaShower.cs
2023-12-06 14:50:03 +09:00

62 lines
1.8 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.Collections.Generic;
using System.Threading;
using osu.Game.Audio;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects.Types;
namespace osu.Game.Rulesets.Catch.Objects
{
public class BananaShower : CatchHitObject, IHasDuration
{
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)
{
// Int truncation added to match osu!stable.
int startTime = (int)StartTime;
int endTime = (int)EndTime;
float spacing = (float)(EndTime - StartTime);
while (spacing > 100)
spacing /= 2;
if (spacing <= 0)
return;
int count = 0;
for (float time = startTime; time <= endTime; time += spacing)
{
cancellationToken.ThrowIfCancellationRequested();
AddNested(new Banana
{
StartTime = time,
BananaIndex = count,
Samples = new List<HitSampleInfo> { new Banana.BananaHitSampleInfo(CreateHitSampleInfo().Volume) }
});
count++;
}
}
public double EndTime
{
get => StartTime + Duration;
set => Duration = value - StartTime;
}
public double Duration { get; set; }
}
}