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