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
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2020-05-15 09:07:41 +00:00
|
|
|
|
using System.Threading;
|
2017-07-26 04:22:46 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-05-23 04:55:18 +00:00
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2021-08-30 05:40:25 +00:00
|
|
|
|
using osu.Game.Beatmaps.Formats;
|
2018-11-29 01:56:19 +00:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2020-04-21 07:45:01 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2019-09-06 06:24:00 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-04-21 07:45:01 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
2020-12-14 20:46:02 +00:00
|
|
|
|
public class DrumRoll : TaikoStrongableHitObject, IHasPath
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
2017-04-03 05:10:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Drum roll distance that results in a duration of 1 speed-adjusted beat length.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const float base_distance = 100;
|
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
|
|
|
|
|
2017-04-05 04:52:53 +00:00
|
|
|
|
public double Duration { get; set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-04-21 07:45:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Velocity of this <see cref="DrumRoll"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double Velocity { get; private set; }
|
|
|
|
|
|
2017-03-17 04:56:14 +00:00
|
|
|
|
/// <summary>
|
2017-04-03 06:32:38 +00:00
|
|
|
|
/// Numer of ticks per beat length.
|
2017-03-17 04:56:14 +00:00
|
|
|
|
/// </summary>
|
2017-04-03 06:32:38 +00:00
|
|
|
|
public int TickRate = 1;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-03 06:32:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The length (in milliseconds) between ticks of this drumroll.
|
|
|
|
|
/// <para>Half of this value is the hit window of the ticks.</para>
|
|
|
|
|
/// </summary>
|
2022-06-24 11:01:16 +00:00
|
|
|
|
private double tickSpacing = 100;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-01 05:56:42 +00:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
2017-12-22 12:42:54 +00:00
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-23 04:55:18 +00:00
|
|
|
|
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
|
2020-04-21 07:45:01 +00:00
|
|
|
|
|
2021-08-31 14:59:36 +00:00
|
|
|
|
double scoringDistance = base_distance * difficulty.SliderMultiplier * DifficultyControlPoint.SliderVelocity;
|
2020-04-21 07:45:01 +00:00
|
|
|
|
Velocity = scoringDistance / timingPoint.BeatLength;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-06-24 11:01:16 +00:00
|
|
|
|
tickSpacing = timingPoint.BeatLength / TickRate;
|
2017-03-17 04:56:14 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-05-15 09:07:41 +00:00
|
|
|
|
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
2022-08-05 14:30:07 +00:00
|
|
|
|
createTicks(cancellationToken);
|
2018-08-03 07:11:57 +00:00
|
|
|
|
|
2020-05-15 09:07:41 +00:00
|
|
|
|
base.CreateNestedHitObjects(cancellationToken);
|
2017-12-22 12:42:54 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-08-05 14:30:07 +00:00
|
|
|
|
private void createTicks(CancellationToken cancellationToken)
|
2017-12-22 12:42:54 +00:00
|
|
|
|
{
|
2022-06-24 11:01:16 +00:00
|
|
|
|
if (tickSpacing == 0)
|
2022-08-05 14:30:07 +00:00
|
|
|
|
return;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-17 04:56:14 +00:00
|
|
|
|
bool first = true;
|
2019-04-01 03:16:05 +00:00
|
|
|
|
|
2022-06-24 11:01:16 +00:00
|
|
|
|
for (double t = StartTime; t < EndTime + tickSpacing / 2; t += tickSpacing)
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
2020-05-15 10:25:14 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2022-08-05 14:30:07 +00:00
|
|
|
|
AddNested(new DrumRollTick
|
2017-03-17 04:56:14 +00:00
|
|
|
|
{
|
|
|
|
|
FirstTick = first,
|
2022-06-24 11:01:16 +00:00
|
|
|
|
TickSpacing = tickSpacing,
|
2017-03-17 04:56:14 +00:00
|
|
|
|
StartTime = t,
|
2017-12-26 10:57:16 +00:00
|
|
|
|
IsStrong = IsStrong
|
2017-12-22 12:42:54 +00:00
|
|
|
|
});
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-17 04:56:14 +00:00
|
|
|
|
first = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-06 08:09:42 +00:00
|
|
|
|
|
2022-08-30 12:44:44 +00:00
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
2019-09-02 07:10:30 +00:00
|
|
|
|
|
2019-10-09 10:08:31 +00:00
|
|
|
|
protected override HitWindows CreateHitWindows() => HitWindows.Empty;
|
2020-04-21 07:45:01 +00:00
|
|
|
|
|
2020-12-13 11:59:46 +00:00
|
|
|
|
protected override StrongNestedHitObject CreateStrongNestedHit(double startTime) => new StrongNestedHit { StartTime = startTime };
|
|
|
|
|
|
|
|
|
|
public class StrongNestedHit : StrongNestedHitObject
|
|
|
|
|
{
|
2022-09-06 08:27:29 +00:00
|
|
|
|
// The strong hit of the drum roll doesn't actually provide any score.
|
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
2020-12-13 11:59:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-21 07:45:01 +00:00
|
|
|
|
#region LegacyBeatmapEncoder
|
|
|
|
|
|
|
|
|
|
double IHasDistance.Distance => Duration * Velocity;
|
|
|
|
|
|
2020-05-26 08:44:47 +00:00
|
|
|
|
SliderPath IHasPath.Path
|
2021-08-30 05:40:25 +00:00
|
|
|
|
=> new SliderPath(PathType.Linear, new[] { Vector2.Zero, new Vector2(1) }, ((IHasDistance)this).Distance / LegacyBeatmapEncoder.LEGACY_TAIKO_VELOCITY_MULTIPLIER);
|
2020-04-21 07:45:01 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
2017-03-17 04:56:14 +00:00
|
|
|
|
}
|
2017-12-21 07:02:33 +00:00
|
|
|
|
}
|