1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 19:37:50 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/DrumRoll.cs

83 lines
2.7 KiB
C#
Raw Normal View History

2017-03-17 12:56:14 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Types;
2017-03-17 12:56:14 +08:00
using System;
2017-07-26 12:22:46 +08:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
2017-03-17 12:56:14 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.Objects
2017-03-17 12:56:14 +08:00
{
2017-04-05 12:52:53 +08:00
public class DrumRoll : TaikoHitObject, IHasEndTime
2017-03-17 12:56:14 +08:00
{
/// <summary>
/// Drum roll distance that results in a duration of 1 speed-adjusted beat length.
/// </summary>
private const float base_distance = 100;
2017-04-05 12:52:53 +08:00
public double EndTime => StartTime + Duration;
2017-03-17 12:56:14 +08:00
2017-04-05 12:52:53 +08:00
public double Duration { get; set; }
2017-03-17 12:56:14 +08:00
/// <summary>
/// Numer of ticks per beat length.
2017-03-17 12:56:14 +08:00
/// </summary>
public int TickRate = 1;
2017-03-17 12:56:14 +08:00
/// <summary>
/// Number of drum roll ticks required for a "Good" hit.
/// </summary>
2017-03-22 00:33:22 +08:00
public double RequiredGoodHits { get; protected set; }
2017-03-17 12:56:14 +08:00
/// <summary>
/// Number of drum roll ticks required for a "Great" hit.
/// </summary>
2017-03-22 00:33:22 +08:00
public double RequiredGreatHits { get; protected set; }
2017-03-17 12:56:14 +08: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;
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
2017-03-17 12:56:14 +08:00
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2017-03-17 12:56:14 +08:00
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
tickSpacing = timingPoint.BeatLength / TickRate;
2017-03-17 12:56:14 +08:00
RequiredGoodHits = NestedHitObjects.Count * Math.Min(0.15, 0.05 + 0.10 / 6 * difficulty.OverallDifficulty);
RequiredGreatHits = NestedHitObjects.Count * Math.Min(0.30, 0.10 + 0.20 / 6 * difficulty.OverallDifficulty);
2017-03-17 12:56:14 +08:00
}
protected override void CreateNestedHitObjects()
2017-03-17 12:56:14 +08:00
{
base.CreateNestedHitObjects();
createTicks();
}
2017-03-17 12:56:14 +08:00
private void createTicks()
{
if (tickSpacing == 0)
return;
2017-03-17 12:56:14 +08:00
bool first = true;
2017-04-05 12:52:22 +08:00
for (double t = StartTime; t < EndTime + tickSpacing / 2; t += tickSpacing)
2017-03-17 12:56:14 +08:00
{
AddNested(new DrumRollTick
2017-03-17 12:56:14 +08:00
{
FirstTick = first,
TickSpacing = tickSpacing,
2017-03-17 12:56:14 +08:00
StartTime = t,
IsStrong = IsStrong
});
2017-03-17 12:56:14 +08:00
first = false;
}
}
}
}