2019-01-24 08:43:03 +00: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-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
2020-12-14 22:10:19 +00:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-09-16 09:26:12 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2020-12-07 03:30:25 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-15 07:54:50 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
|
{
|
2020-12-14 20:47:31 +00:00
|
|
|
|
public class DrawableDrumRollTick : DrawableTaikoStrongableHitObject<DrumRollTick, DrumRollTick.StrongNestedHit>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-04-07 08:40:18 +00:00
|
|
|
|
/// <summary>
|
2020-04-27 03:23:53 +00:00
|
|
|
|
/// The hit type corresponding to the <see cref="TaikoAction"/> that the user pressed to hit this <see cref="DrawableDrumRollTick"/>.
|
2020-04-07 08:40:18 +00:00
|
|
|
|
/// </summary>
|
2020-04-27 03:23:53 +00:00
|
|
|
|
public HitType JudgementType;
|
2020-04-07 08:40:18 +00:00
|
|
|
|
|
2020-12-14 22:10:19 +00:00
|
|
|
|
public DrawableDrumRollTick()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DrawableDrumRollTick([CanBeNull] DrumRollTick tick)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
: base(tick)
|
|
|
|
|
{
|
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 07:54:50 +00:00
|
|
|
|
protected override SkinnableDrawable CreateMainPiece() => new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.DrumRollTick),
|
2020-04-16 01:04:09 +00:00
|
|
|
|
_ => new TickPiece
|
|
|
|
|
{
|
|
|
|
|
Filled = HitObject.FirstTick
|
|
|
|
|
});
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-11-25 14:38:47 +00:00
|
|
|
|
protected override double MaximumJudgementOffset => HitObject.HitWindow;
|
|
|
|
|
|
2018-08-06 02:31:46 +00:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (!userTriggered)
|
2018-08-02 07:09:04 +00:00
|
|
|
|
{
|
|
|
|
|
if (timeOffset > HitObject.HitWindow)
|
2020-09-29 06:13:11 +00:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
return;
|
2018-08-02 07:09:04 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-08-02 07:09:04 +00:00
|
|
|
|
if (Math.Abs(timeOffset) > HitObject.HitWindow)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2020-09-29 06:13:11 +00:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-04 07:19:07 +00:00
|
|
|
|
protected override void UpdateHitStateTransforms(ArmedState state)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Hit:
|
2019-09-12 10:29:08 +00:00
|
|
|
|
this.ScaleTo(0, 100, Easing.OutQuint);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
|
2020-04-07 08:40:18 +00:00
|
|
|
|
{
|
2021-09-16 09:26:12 +00:00
|
|
|
|
JudgementType = e.Action == TaikoAction.LeftRim || e.Action == TaikoAction.RightRim ? HitType.Rim : HitType.Centre;
|
2020-04-07 08:40:18 +00:00
|
|
|
|
return UpdateResult(true);
|
|
|
|
|
}
|
2018-08-03 07:35:12 +00:00
|
|
|
|
|
2020-12-14 22:21:19 +00:00
|
|
|
|
protected override DrawableStrongNestedHit CreateStrongNestedHit(DrumRollTick.StrongNestedHit hitObject) => new StrongNestedHit(hitObject);
|
2018-08-03 07:56:46 +00:00
|
|
|
|
|
2020-12-20 17:02:31 +00:00
|
|
|
|
public class StrongNestedHit : DrawableStrongNestedHit
|
2018-08-03 07:56:46 +00:00
|
|
|
|
{
|
2020-12-14 22:21:19 +00:00
|
|
|
|
public new DrawableDrumRollTick ParentHitObject => (DrawableDrumRollTick)base.ParentHitObject;
|
|
|
|
|
|
|
|
|
|
public StrongNestedHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StrongNestedHit([CanBeNull] DrumRollTick.StrongNestedHit nestedHit)
|
|
|
|
|
: base(nestedHit)
|
2018-08-03 07:56:46 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 02:31:46 +00:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-08-03 07:56:46 +00:00
|
|
|
|
{
|
2020-12-14 22:21:19 +00:00
|
|
|
|
if (!ParentHitObject.Judged)
|
2018-08-03 07:56:46 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2020-12-14 22:21:19 +00:00
|
|
|
|
ApplyResult(r => r.Type = ParentHitObject.IsHit ? r.Judgement.MaxResult : r.Judgement.MinResult);
|
2018-08-03 07:56:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 09:26:12 +00:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e) => false;
|
2018-08-03 07:56:46 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|