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-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-08-03 16:56:46 +09:00
|
|
|
|
using System;
|
2019-09-02 18:31:33 +09:00
|
|
|
|
using System.Diagnostics;
|
2017-04-04 12:38:55 +09:00
|
|
|
|
using System.Linq;
|
2020-12-14 22:53:46 +01:00
|
|
|
|
using JetBrains.Annotations;
|
2020-05-26 14:43:38 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2017-03-28 10:33:23 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-09-16 18:26:12 +09:00
|
|
|
|
using osu.Framework.Input.Events;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-12-30 21:23:18 +01:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-12-07 12:30:25 +09:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-27 16:13:28 +09:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
2017-03-17 16:55:57 +09:00
|
|
|
|
{
|
2020-12-14 21:47:31 +01:00
|
|
|
|
public partial class DrawableHit : DrawableTaikoStrongableHitObject<Hit, Hit.StrongNestedHit>
|
2017-03-17 16:55:57 +09:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list of keys which can result in hits for this HitObject.
|
|
|
|
|
/// </summary>
|
2024-06-13 14:49:56 +02:00
|
|
|
|
public TaikoAction[] HitActions { get; internal set; }
|
2018-08-02 20:36:08 +09:00
|
|
|
|
|
2017-03-17 16:55:57 +09:00
|
|
|
|
/// <summary>
|
2018-08-03 16:12:38 +09:00
|
|
|
|
/// The action that caused this <see cref="DrawableHit"/> to be hit.
|
2017-03-17 16:55:57 +09:00
|
|
|
|
/// </summary>
|
2020-04-27 16:13:28 +09:00
|
|
|
|
public TaikoAction? HitAction
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
2018-08-03 16:12:38 +09:00
|
|
|
|
|
|
|
|
|
private bool validActionPressed;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-07-25 20:07:01 +02:00
|
|
|
|
private double? lastPressHandleTime;
|
2018-09-25 18:37:25 +09:00
|
|
|
|
|
2020-12-14 22:53:46 +01:00
|
|
|
|
private readonly Bindable<HitType> type = new Bindable<HitType>();
|
2020-05-26 14:43:38 +09:00
|
|
|
|
|
2020-12-14 22:53:46 +01:00
|
|
|
|
public DrawableHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DrawableHit([CanBeNull] Hit hit)
|
2017-03-24 14:59:59 +09:00
|
|
|
|
: base(hit)
|
2017-03-17 16:55:57 +09:00
|
|
|
|
{
|
2017-08-03 13:54:13 +09:30
|
|
|
|
FillMode = FillMode.Fit;
|
2020-05-26 14:43:38 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 22:53:46 +01:00
|
|
|
|
protected override void OnApply()
|
2020-05-26 14:43:38 +09:00
|
|
|
|
{
|
2020-12-14 22:53:46 +01:00
|
|
|
|
type.BindTo(HitObject.TypeBindable);
|
2021-05-21 16:10:48 +09:00
|
|
|
|
// this doesn't need to be run inline as RecreatePieces is called by the base call below.
|
2021-05-21 16:45:28 +09:00
|
|
|
|
type.BindValueChanged(_ => Scheduler.AddOnce(RecreatePieces));
|
2020-12-14 22:53:46 +01:00
|
|
|
|
|
|
|
|
|
base.OnApply();
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-21 16:10:48 +09:00
|
|
|
|
protected override void RecreatePieces()
|
|
|
|
|
{
|
|
|
|
|
updateActionsFromType();
|
|
|
|
|
base.RecreatePieces();
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 22:53:46 +01:00
|
|
|
|
protected override void OnFree()
|
|
|
|
|
{
|
|
|
|
|
base.OnFree();
|
|
|
|
|
|
|
|
|
|
type.UnbindFrom(HitObject.TypeBindable);
|
|
|
|
|
type.UnbindEvents();
|
|
|
|
|
|
|
|
|
|
UnproxyContent();
|
|
|
|
|
|
|
|
|
|
HitActions = null;
|
|
|
|
|
HitAction = null;
|
2023-07-25 20:07:01 +02:00
|
|
|
|
validActionPressed = false;
|
|
|
|
|
lastPressHandleTime = null;
|
2020-09-23 17:57:57 +09:00
|
|
|
|
}
|
2020-04-27 16:13:28 +09:00
|
|
|
|
|
2020-09-23 17:57:57 +09:00
|
|
|
|
private void updateActionsFromType()
|
2020-05-26 14:43:38 +09:00
|
|
|
|
{
|
2020-04-27 16:13:28 +09:00
|
|
|
|
HitActions =
|
|
|
|
|
HitObject.Type == HitType.Centre
|
|
|
|
|
? new[] { TaikoAction.LeftCentre, TaikoAction.RightCentre }
|
|
|
|
|
: new[] { TaikoAction.LeftRim, TaikoAction.RightRim };
|
2017-03-17 16:55:57 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-04-27 16:13:28 +09:00
|
|
|
|
protected override SkinnableDrawable CreateMainPiece() => HitObject.Type == HitType.Centre
|
2022-11-09 16:04:56 +09:00
|
|
|
|
? new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.CentreHit), _ => new CentreHitCirclePiece(), confineMode: ConfineMode.ScaleToFit)
|
|
|
|
|
: new SkinnableDrawable(new TaikoSkinComponentLookup(TaikoSkinComponents.RimHit), _ => new RimHitCirclePiece(), confineMode: ConfineMode.ScaleToFit);
|
2020-04-27 16:13:28 +09:00
|
|
|
|
|
2018-08-06 11:31:46 +09:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2017-03-17 16:55:57 +09:00
|
|
|
|
{
|
2019-09-02 18:31:33 +09:00
|
|
|
|
Debug.Assert(HitObject.HitWindows != null);
|
|
|
|
|
|
2017-03-17 16:55:57 +09:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
2018-02-02 18:53:30 +09:00
|
|
|
|
if (!HitObject.HitWindows.CanBeHit(timeOffset))
|
2024-02-05 13:21:01 +01:00
|
|
|
|
ApplyMinResult();
|
2017-03-17 16:55:57 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2024-02-05 13:35:41 +01:00
|
|
|
|
var result = HitObject.HitWindows.ResultFor(timeOffset);
|
|
|
|
|
if (result == HitResult.None)
|
2017-03-17 16:55:57 +09:00
|
|
|
|
return;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-08-03 16:12:38 +09:00
|
|
|
|
if (!validActionPressed)
|
2024-02-05 13:21:01 +01:00
|
|
|
|
ApplyMinResult();
|
2018-02-02 18:53:30 +09:00
|
|
|
|
else
|
2024-02-05 13:35:41 +01:00
|
|
|
|
ApplyResult(result);
|
2017-03-17 16:55:57 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
|
2017-03-17 16:55:57 +09:00
|
|
|
|
{
|
2023-07-25 20:07:01 +02:00
|
|
|
|
if (lastPressHandleTime == Time.Current)
|
2018-09-25 18:37:25 +09:00
|
|
|
|
return true;
|
2018-08-03 16:12:38 +09:00
|
|
|
|
if (Judged)
|
|
|
|
|
return false;
|
|
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
|
validActionPressed = HitActions.Contains(e.Action);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-12-08 09:42:10 +01:00
|
|
|
|
// Only count this as handled if the new judgement is a hit
|
2021-10-27 13:04:41 +09:00
|
|
|
|
bool result = UpdateResult(true);
|
2018-08-03 16:12:38 +09:00
|
|
|
|
if (IsHit)
|
2021-09-16 18:26:12 +09:00
|
|
|
|
HitAction = e.Action;
|
2018-08-03 16:12:38 +09:00
|
|
|
|
|
2018-09-25 18:37:25 +09:00
|
|
|
|
// Regardless of whether we've hit or not, any secondary key presses in the same frame should be discarded
|
|
|
|
|
// E.g. hitting a non-strong centre as a strong should not fall through and perform a hit on the next note
|
2023-07-25 20:07:01 +02:00
|
|
|
|
lastPressHandleTime = Time.Current;
|
2018-08-03 16:12:38 +09:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
|
public override void OnReleased(KeyBindingReleaseEvent<TaikoAction> e)
|
2018-08-03 16:12:38 +09:00
|
|
|
|
{
|
2021-09-16 18:26:12 +09:00
|
|
|
|
if (e.Action == HitAction)
|
2018-08-03 16:12:38 +09:00
|
|
|
|
HitAction = null;
|
2021-09-16 18:26:12 +09:00
|
|
|
|
base.OnReleased(e);
|
2017-03-17 16:55:57 +09:00
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-11-04 16:19:07 +09:00
|
|
|
|
protected override void UpdateHitStateTransforms(ArmedState state)
|
2017-03-28 10:33:23 +09:00
|
|
|
|
{
|
2019-09-02 18:31:33 +09:00
|
|
|
|
Debug.Assert(HitObject.HitWindows != null);
|
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
switch (state)
|
2017-03-28 10:33:23 +09:00
|
|
|
|
{
|
2019-08-27 05:03:56 +03:00
|
|
|
|
case ArmedState.Idle:
|
|
|
|
|
validActionPressed = false;
|
2019-04-01 12:16:05 +09:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
UnproxyContent();
|
|
|
|
|
break;
|
2019-04-01 12:16:05 +09:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
case ArmedState.Miss:
|
2019-09-12 19:29:08 +09:00
|
|
|
|
this.FadeOut(100);
|
2019-08-27 05:03:56 +03:00
|
|
|
|
break;
|
2018-06-11 21:45:19 +09:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
case ArmedState.Hit:
|
2022-11-08 15:19:08 +09:00
|
|
|
|
// If we're far enough away from the left stage, we should bring ourselves in front of it
|
2019-08-27 05:03:56 +03:00
|
|
|
|
ProxyContent();
|
2019-04-01 12:16:05 +09:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
const float gravity_time = 300;
|
|
|
|
|
const float gravity_travel_height = 200;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-02-09 17:57:51 +09:00
|
|
|
|
if (SnapJudgementLocation)
|
|
|
|
|
MainPiece.MoveToX(-X);
|
2023-02-06 13:34:54 +00:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
this.ScaleTo(0.8f, gravity_time * 2, Easing.OutQuad);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-08-27 05:03:56 +03:00
|
|
|
|
this.MoveToY(-gravity_travel_height, gravity_time, Easing.Out)
|
|
|
|
|
.Then()
|
|
|
|
|
.MoveToY(gravity_travel_height * 2, gravity_time * 2, Easing.In);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-09-12 19:29:08 +09:00
|
|
|
|
this.FadeOut(800);
|
2019-08-27 05:03:56 +03:00
|
|
|
|
break;
|
2017-03-28 10:33:23 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-03 16:12:38 +09:00
|
|
|
|
|
2020-12-14 23:21:19 +01:00
|
|
|
|
protected override DrawableStrongNestedHit CreateStrongNestedHit(Hit.StrongNestedHit hitObject) => new StrongNestedHit(hitObject);
|
2018-08-03 16:56:46 +09:00
|
|
|
|
|
2020-12-20 18:02:31 +01:00
|
|
|
|
public partial class StrongNestedHit : DrawableStrongNestedHit
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
2020-12-14 23:21:19 +01:00
|
|
|
|
public new DrawableHit ParentHitObject => (DrawableHit)base.ParentHitObject;
|
|
|
|
|
|
2018-08-03 16:56:46 +09:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The lenience for the second key press.
|
|
|
|
|
/// This does not adjust by map difficulty in ScoreV2 yet.
|
|
|
|
|
/// </summary>
|
2023-06-30 17:02:08 +09:00
|
|
|
|
public const double SECOND_HIT_WINDOW = 30;
|
2018-08-03 16:56:46 +09:00
|
|
|
|
|
2020-12-14 23:21:19 +01:00
|
|
|
|
public StrongNestedHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-08-03 16:56:46 +09:00
|
|
|
|
|
2020-12-14 23:21:19 +01:00
|
|
|
|
public StrongNestedHit([CanBeNull] Hit.StrongNestedHit nestedHit)
|
|
|
|
|
: base(nestedHit)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 11:31:46 +09:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
2020-12-14 23:21:19 +01:00
|
|
|
|
if (!ParentHitObject.Result.HasResult)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
2018-08-06 11:31:46 +09:00
|
|
|
|
base.CheckForResult(userTriggered, timeOffset);
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 23:21:19 +01:00
|
|
|
|
if (!ParentHitObject.Result.IsHit)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
2024-02-05 13:21:01 +01:00
|
|
|
|
ApplyMinResult();
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-11-29 09:06:40 +07:00
|
|
|
|
|
2018-08-03 16:56:46 +09:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
2023-06-30 17:02:08 +09:00
|
|
|
|
if (timeOffset - ParentHitObject.Result.TimeOffset > SECOND_HIT_WINDOW)
|
2024-02-05 13:21:01 +01:00
|
|
|
|
ApplyMinResult();
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-30 17:02:08 +09:00
|
|
|
|
if (Math.Abs(timeOffset - ParentHitObject.Result.TimeOffset) <= SECOND_HIT_WINDOW)
|
2024-02-05 13:21:01 +01:00
|
|
|
|
ApplyMaxResult();
|
2018-08-03 16:56:46 +09:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 18:26:12 +09:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
{
|
|
|
|
|
// Don't process actions until the main hitobject is hit
|
2020-12-14 23:21:19 +01:00
|
|
|
|
if (!ParentHitObject.IsHit)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Don't process actions if the pressed button was released
|
2020-12-14 23:21:19 +01:00
|
|
|
|
if (ParentHitObject.HitAction == null)
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Don't handle invalid hit action presses
|
2021-09-16 18:26:12 +09:00
|
|
|
|
if (!ParentHitObject.HitActions.Contains(e.Action))
|
2018-08-03 16:56:46 +09:00
|
|
|
|
return false;
|
|
|
|
|
|
2018-08-06 11:31:46 +09:00
|
|
|
|
return UpdateResult(true);
|
2018-08-03 16:56:46 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-17 16:55:57 +09:00
|
|
|
|
}
|
|
|
|
|
}
|