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