1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 02:17:46 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSliderHead.cs

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

87 lines
2.5 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 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System.Diagnostics;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.Scoring;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
public partial class DrawableSliderHead : DrawableHitCircle
{
public new SliderHeadCircle HitObject => (SliderHeadCircle)base.HitObject;
public DrawableSlider DrawableSlider => (DrawableSlider)ParentHitObject;
public override bool DisplayResult
{
get
{
if (HitObject?.ClassicSliderBehaviour == true)
return false;
return base.DisplayResult;
}
}
private readonly IBindable<int> pathVersion = new Bindable<int>();
2018-11-09 12:58:46 +08:00
protected override OsuSkinComponents CirclePieceComponent => OsuSkinComponents.SliderHeadHitCircle;
2020-11-12 14:59:48 +08:00
public DrawableSliderHead()
{
}
public DrawableSliderHead(SliderHeadCircle h)
: base(h)
{
2018-11-09 12:58:46 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void OnFree()
2020-11-12 14:59:48 +08:00
{
base.OnFree();
2020-11-12 14:59:48 +08:00
2020-12-03 19:03:39 +08:00
pathVersion.UnbindFrom(DrawableSlider.PathVersion);
2020-11-12 14:59:48 +08:00
}
protected override void UpdatePosition()
{
// Slider head is always drawn at (0,0).
}
2020-12-03 18:46:42 +08:00
protected override void OnApply()
2020-11-12 14:59:48 +08:00
{
2020-12-03 18:46:42 +08:00
base.OnApply();
2020-11-12 14:59:48 +08:00
2020-12-03 19:03:39 +08:00
pathVersion.BindTo(DrawableSlider.PathVersion);
2020-11-12 14:59:48 +08:00
CheckHittable = (d, t, r) => DrawableSlider.CheckHittable?.Invoke(d, t, r) ?? ClickAction.Hit;
}
2018-04-13 17:19:50 +08:00
protected override HitResult ResultFor(double timeOffset)
{
Debug.Assert(HitObject != null);
2023-11-02 22:42:52 +08:00
if (HitObject.ClassicSliderBehaviour)
{
// With classic slider behaviour, heads are considered fully hit if in the largest hit window.
// We can't award a full Great because the true Great judgement is awarded on the Slider itself,
2023-11-03 01:52:47 +08:00
// reduced based on number of ticks hit,
// so we use the most suitable LargeTick judgement here instead.
2023-11-02 22:42:52 +08:00
return base.ResultFor(timeOffset).IsHit() ? HitResult.LargeTickHit : HitResult.LargeTickMiss;
}
return base.ResultFor(timeOffset);
}
public override void Shake()
{
base.Shake();
DrawableSlider.Shake();
}
}
}