1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/BananaShower.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.7 KiB
C#
Raw Normal View History

// 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
using System.Collections.Generic;
using System.Threading;
using osu.Game.Audio;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects.Types;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Catch.Objects
{
2020-05-27 11:38:39 +08:00
public class BananaShower : CatchHitObject, IHasDuration
{
public override bool LastInCombo => true;
2018-04-13 17:19:50 +08:00
public override Judgement CreateJudgement() => new IgnoreJudgement();
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
{
base.CreateNestedHitObjects(cancellationToken);
createBananas(cancellationToken);
}
2018-04-13 17:19:50 +08:00
private void createBananas(CancellationToken cancellationToken)
{
double spacing = Duration;
while (spacing > 100)
spacing /= 2;
2018-04-13 17:19:50 +08:00
if (spacing <= 0)
return;
2018-04-13 17:19:50 +08:00
2020-07-30 16:58:49 +08:00
double time = StartTime;
int i = 0;
while (time <= EndTime)
2019-11-11 19:53:22 +08:00
{
cancellationToken.ThrowIfCancellationRequested();
AddNested(new Banana
{
2020-07-30 16:58:49 +08:00
StartTime = time,
BananaIndex = i,
Samples = new List<HitSampleInfo> { new Banana.BananaHitSampleInfo(CreateHitSampleInfo().Volume) }
});
2020-07-30 16:58:49 +08:00
time += spacing;
i++;
2019-11-11 19:53:22 +08:00
}
}
2018-04-13 17:19:50 +08:00
2020-02-05 16:12:26 +08:00
public double EndTime
{
get => StartTime + Duration;
set => Duration = value - StartTime;
}
2018-04-13 17:19:50 +08:00
public double Duration { get; set; }
}
}