osu/osu.Game.Rulesets.Mania/Objects/HoldNote.cs

31 lines
1003 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-02 09:44:02 +00:00
2017-05-03 03:53:45 +00:00
using osu.Game.Beatmaps.Timing;
using osu.Game.Database;
using osu.Game.Rulesets.Mania.Judgements;
using osu.Game.Rulesets.Objects.Types;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Mania.Objects
2016-09-02 09:44:02 +00:00
{
2017-05-03 03:53:45 +00:00
public class HoldNote : Note, IHasEndTime
2016-09-02 09:44:02 +00:00
{
2017-05-03 03:53:45 +00:00
/// <summary>
/// Lenience of release hit windows.
/// </summary>
private const double release_window_lenience = 1.5;
public double Duration { get; set; }
public double EndTime => StartTime + Duration;
public HitWindows ReleaseHitWindows { get; protected set; } = new HitWindows();
public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty)
{
base.ApplyDefaults(timing, difficulty);
ReleaseHitWindows = HitWindows * release_window_lenience;
}
2016-09-02 09:44:02 +00:00
}
}