2019-01-24 17:43:03 +09:00
|
|
|
// 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-08-03 16:35:29 +09:00
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-14 23:11:51 +01:00
|
|
|
using JetBrains.Annotations;
|
2019-09-02 13:30:08 +09:00
|
|
|
using osu.Framework.Graphics;
|
2021-09-16 18:26:12 +09:00
|
|
|
using osu.Framework.Input.Events;
|
2020-12-07 12:30:25 +09:00
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-15 16:54:50 +09:00
|
|
|
using osu.Game.Skinning;
|
2018-08-03 16:35:29 +09:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
{
|
2018-11-29 22:05:13 +07:00
|
|
|
public partial class DrawableSwellTick : DrawableTaikoHitObject<SwellTick>
|
2018-08-03 16:35:29 +09:00
|
|
|
{
|
2018-08-06 11:31:46 +09:00
|
|
|
public override bool DisplayResult => false;
|
2018-08-03 16:49:24 +09:00
|
|
|
|
2020-12-14 23:11:51 +01:00
|
|
|
public DrawableSwellTick()
|
|
|
|
: this(null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public DrawableSwellTick([CanBeNull] SwellTick hitObject)
|
2018-08-03 16:35:29 +09:00
|
|
|
: base(hitObject)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-09-02 13:30:08 +09:00
|
|
|
protected override void UpdateInitialTransforms() => this.FadeOut();
|
|
|
|
|
2020-09-29 15:13:11 +09:00
|
|
|
public void TriggerResult(bool hit)
|
2019-09-02 13:25:39 +09:00
|
|
|
{
|
|
|
|
HitObject.StartTime = Time.Current;
|
2020-09-29 15:13:11 +09:00
|
|
|
ApplyResult(r => r.Type = hit ? r.Judgement.MaxResult : r.Judgement.MinResult);
|
2019-09-02 13:25:39 +09:00
|
|
|
}
|
2018-08-03 16:35:29 +09:00
|
|
|
|
2018-08-06 11:31:46 +09:00
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-08-03 16:35:29 +09:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e) => false;
|
2020-04-11 13:14:34 +09:00
|
|
|
|
2022-11-09 16:04:56 +09:00
|
|
|
protected override SkinnableDrawable CreateMainPiece() => new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.DrumRollTick),
|
2020-04-15 16:54:50 +09:00
|
|
|
_ => new TickPiece());
|
2018-08-03 16:35:29 +09:00
|
|
|
}
|
|
|
|
}
|