2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2020-05-15 09:07:41 +00:00
|
|
|
|
using System.Threading;
|
2020-02-23 04:01:30 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
2020-05-27 03:38:39 +00:00
|
|
|
|
public class BananaShower : CatchHitObject, IHasDuration
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
public override FruitVisualRepresentation VisualRepresentation => FruitVisualRepresentation.Banana;
|
|
|
|
|
|
|
|
|
|
public override bool LastInCombo => true;
|
|
|
|
|
|
2020-02-23 04:01:30 +00:00
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
|
|
|
|
|
2020-05-15 09:07:41 +00:00
|
|
|
|
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-05-15 09:07:41 +00:00
|
|
|
|
base.CreateNestedHitObjects(cancellationToken);
|
2020-05-21 03:13:02 +00:00
|
|
|
|
createBananas(cancellationToken);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-21 03:13:02 +00:00
|
|
|
|
private void createBananas(CancellationToken cancellationToken)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
double spacing = Duration;
|
|
|
|
|
while (spacing > 100)
|
|
|
|
|
spacing /= 2;
|
|
|
|
|
|
|
|
|
|
if (spacing <= 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (double i = StartTime; i <= EndTime; i += spacing)
|
2019-11-11 11:53:22 +00:00
|
|
|
|
{
|
2020-05-21 03:13:02 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
AddNested(new Banana
|
|
|
|
|
{
|
|
|
|
|
Samples = Samples,
|
2018-06-13 12:15:10 +00:00
|
|
|
|
StartTime = i
|
2018-04-13 09:19:50 +00:00
|
|
|
|
});
|
2019-11-11 11:53:22 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 08:12:26 +00:00
|
|
|
|
public double EndTime
|
|
|
|
|
{
|
|
|
|
|
get => StartTime + Duration;
|
|
|
|
|
set => Duration = value - StartTime;
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
public double Duration { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|