// 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.ControlPoints; using osu.Game.Database; 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 Duration { get; set; } public double EndTime => StartTime + Duration; private Note headNote; public Note HeadNote => headNote ?? (headNote = new Note { StartTime = StartTime }); private Note tailNote; public Note TailNote => tailNote ?? (tailNote = new HoldNoteTail { StartTime = EndTime }); /// /// The length (in milliseconds) 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; } 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 + HeadNote.HitWindows.Great / 2; t <= EndTime - TailNote.HitWindows.Great / 2; t+= tickSpacing) { ret.Add(new HoldNoteTick { StartTime = t }); } return ret; } } }