osu/osu.Game.Rulesets.Taiko/Objects/DrumRoll.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
3.6 KiB
C#
Raw Normal View History

// 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;
using System.Threading;
2017-07-26 04:22:46 +00:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
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
{
/// <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>
/// Numer of ticks per beat length.
2017-03-17 04:56:14 +00:00
/// </summary>
public int TickRate = 1;
2018-04-13 09:19:50 +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>
private double tickSpacing = 100;
2018-04-13 09:19:50 +00:00
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
2017-03-17 04:56:14 +00:00
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2018-04-13 09:19:50 +00:00
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
2020-04-21 07:45:01 +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
tickSpacing = timingPoint.BeatLength / TickRate;
2017-03-17 04:56:14 +00:00
}
2018-04-13 09:19:50 +00:00
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
2017-03-17 04:56:14 +00:00
{
createTicks(cancellationToken);
base.CreateNestedHitObjects(cancellationToken);
}
2018-04-13 09:19:50 +00:00
private void createTicks(CancellationToken cancellationToken)
{
if (tickSpacing == 0)
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
for (double t = StartTime; t < EndTime + tickSpacing / 2; t += tickSpacing)
2017-03-17 04:56:14 +00:00
{
cancellationToken.ThrowIfCancellationRequested();
AddNested(new DrumRollTick
2017-03-17 04:56:14 +00:00
{
FirstTick = first,
TickSpacing = tickSpacing,
2017-03-17 04:56:14 +00:00
StartTime = t,
IsStrong = IsStrong
});
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-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;
SliderPath IHasPath.Path
=> 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
}
}