// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.Collections.Generic; using osu.Game.Beatmaps; using osu.Game.Beatmaps.ControlPoints; using osu.Game.Rulesets.Objects.Types; namespace osu.Game.Rulesets.Mania.Objects { /// /// Represents a hit object which requires pressing, holding, and releasing a key. /// public class HoldNote : ManiaHitObject, IHasEndTime { public double EndTime => StartTime + Duration; private double duration; public double Duration { get { return duration; } set { duration = value; Tail.StartTime = EndTime; } } public override double StartTime { get { return base.StartTime; } set { base.StartTime = value; Head.StartTime = value; Tail.StartTime = EndTime; } } /// /// The head note of the hold. /// public readonly Note Head = new Note(); /// /// The tail note of the hold. /// public readonly Note Tail = new TailNote(); /// /// The time between ticks of this hold. /// private double tickSpacing = 50; public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty) { base.ApplyDefaults(controlPointInfo, difficulty); TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime); tickSpacing = timingPoint.BeatLength / difficulty.SliderTickRate; Head.ApplyDefaults(controlPointInfo, difficulty); Tail.ApplyDefaults(controlPointInfo, difficulty); } /// /// The scoring scoring ticks of the hold note. /// public IEnumerable Ticks => ticks ?? (ticks = createTicks()); private List ticks; private List createTicks() { var ret = new List(); if (tickSpacing == 0) return ret; for (double t = StartTime + tickSpacing; t <= EndTime - tickSpacing; t += tickSpacing) { ret.Add(new HoldNoteTick { StartTime = t }); } return ret; } /// /// The tail of the hold note. /// private class TailNote : Note { /// /// Lenience of release hit windows. This is to make cases where the hold note release /// is timed alongside presses of other hit objects less awkward. /// private const double release_window_lenience = 1.5; public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty) { base.ApplyDefaults(controlPointInfo, difficulty); HitWindows *= release_window_lenience; } } } }