2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2023-05-02 12:41:39 +02:00
|
|
|
|
using System.Collections.Generic;
|
2020-05-15 18:07:41 +09:00
|
|
|
|
using System.Threading;
|
2023-05-02 12:41:39 +02:00
|
|
|
|
using osu.Game.Audio;
|
2020-02-23 13:01:30 +09:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
2020-05-27 12:38:39 +09:00
|
|
|
|
public class BananaShower : CatchHitObject, IHasDuration
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
public override bool LastInCombo => true;
|
|
|
|
|
|
2020-02-23 13:01:30 +09:00
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
|
|
|
|
|
2020-05-15 18:07:41 +09:00
|
|
|
|
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-05-15 18:07:41 +09:00
|
|
|
|
base.CreateNestedHitObjects(cancellationToken);
|
2020-05-21 12:13:02 +09:00
|
|
|
|
createBananas(cancellationToken);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-21 12:13:02 +09:00
|
|
|
|
private void createBananas(CancellationToken cancellationToken)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-12-06 14:50:03 +09:00
|
|
|
|
// Int truncation added to match osu!stable.
|
2023-12-05 15:39:23 +09:00
|
|
|
|
int startTime = (int)StartTime;
|
|
|
|
|
int endTime = (int)EndTime;
|
|
|
|
|
float spacing = (float)(EndTime - StartTime);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
while (spacing > 100)
|
|
|
|
|
spacing /= 2;
|
|
|
|
|
|
|
|
|
|
if (spacing <= 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2023-12-05 15:39:23 +09:00
|
|
|
|
int count = 0;
|
2020-07-30 17:58:49 +09:00
|
|
|
|
|
2023-12-05 15:39:23 +09:00
|
|
|
|
for (float time = startTime; time <= endTime; time += spacing)
|
2019-11-11 19:53:22 +08:00
|
|
|
|
{
|
2020-05-21 12:13:02 +09:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2023-05-02 12:41:39 +02:00
|
|
|
|
AddNested(new Banana
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-07-30 17:58:49 +09:00
|
|
|
|
StartTime = time,
|
2023-12-05 15:39:23 +09:00
|
|
|
|
BananaIndex = count,
|
2023-05-17 14:07:48 +09:00
|
|
|
|
Samples = new List<HitSampleInfo> { new Banana.BananaHitSampleInfo(CreateHitSampleInfo().Volume) }
|
2018-04-13 18:19:50 +09:00
|
|
|
|
});
|
2020-07-30 17:58:49 +09:00
|
|
|
|
|
2023-12-05 15:39:23 +09:00
|
|
|
|
count++;
|
2019-11-11 19:53:22 +08:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-05 17:12:26 +09:00
|
|
|
|
public double EndTime
|
|
|
|
|
{
|
|
|
|
|
get => StartTime + Duration;
|
|
|
|
|
set => Duration = value - StartTime;
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public double Duration { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|