2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2018-08-03 15:56:46 +08:00
|
|
|
|
using System;
|
2020-05-11 11:53:54 +08:00
|
|
|
|
using System.Collections.Generic;
|
2019-09-02 17:31:33 +08:00
|
|
|
|
using System.Diagnostics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
2020-12-15 05:53:46 +08:00
|
|
|
|
using JetBrains.Annotations;
|
2020-05-26 13:43:38 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2020-05-11 11:53:54 +08:00
|
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2020-12-07 11:30:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-27 15:13:28 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
|
{
|
2020-12-15 04:47:31 +08:00
|
|
|
|
public class DrawableHit : DrawableTaikoStrongableHitObject<Hit, Hit.StrongNestedHit>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list of keys which can result in hits for this HitObject.
|
|
|
|
|
/// </summary>
|
2020-05-26 13:43:38 +08:00
|
|
|
|
public TaikoAction[] HitActions { get; private set; }
|
2018-08-02 19:36:08 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-08-03 15:12:38 +08:00
|
|
|
|
/// The action that caused this <see cref="DrawableHit"/> to be hit.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2020-04-27 15:13:28 +08:00
|
|
|
|
public TaikoAction? HitAction
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
2018-08-03 15:12:38 +08:00
|
|
|
|
|
|
|
|
|
private bool validActionPressed;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-28 16:18:34 +08:00
|
|
|
|
private bool pressHandledThisFrame;
|
2018-09-25 17:37:25 +08:00
|
|
|
|
|
2020-12-15 05:53:46 +08:00
|
|
|
|
private readonly Bindable<HitType> type = new Bindable<HitType>();
|
2020-05-26 13:43:38 +08:00
|
|
|
|
|
2020-12-15 05:53:46 +08:00
|
|
|
|
public DrawableHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DrawableHit([CanBeNull] Hit hit)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(hit)
|
|
|
|
|
{
|
|
|
|
|
FillMode = FillMode.Fit;
|
2020-05-26 13:43:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 05:53:46 +08:00
|
|
|
|
protected override void OnApply()
|
2020-05-26 13:43:38 +08:00
|
|
|
|
{
|
2020-12-15 05:53:46 +08:00
|
|
|
|
type.BindTo(HitObject.TypeBindable);
|
2020-05-26 13:43:38 +08:00
|
|
|
|
type.BindValueChanged(_ =>
|
|
|
|
|
{
|
2020-09-23 16:57:57 +08:00
|
|
|
|
updateActionsFromType();
|
|
|
|
|
|
2020-12-15 05:53:46 +08:00
|
|
|
|
// will overwrite samples, should only be called on subsequent changes
|
|
|
|
|
// after the initial application.
|
2020-09-23 16:57:57 +08:00
|
|
|
|
updateSamplesFromTypeChange();
|
|
|
|
|
|
2020-05-26 13:43:38 +08:00
|
|
|
|
RecreatePieces();
|
|
|
|
|
});
|
2020-12-15 05:53:46 +08:00
|
|
|
|
|
|
|
|
|
// action update also has to happen immediately on application.
|
|
|
|
|
updateActionsFromType();
|
|
|
|
|
|
|
|
|
|
base.OnApply();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnFree()
|
|
|
|
|
{
|
|
|
|
|
base.OnFree();
|
|
|
|
|
|
|
|
|
|
type.UnbindFrom(HitObject.TypeBindable);
|
|
|
|
|
type.UnbindEvents();
|
|
|
|
|
|
|
|
|
|
UnproxyContent();
|
|
|
|
|
|
|
|
|
|
HitActions = null;
|
|
|
|
|
HitAction = null;
|
|
|
|
|
validActionPressed = pressHandledThisFrame = false;
|
2020-09-23 16:57:57 +08:00
|
|
|
|
}
|
2020-04-27 15:13:28 +08:00
|
|
|
|
|
2020-09-24 12:22:14 +08:00
|
|
|
|
private HitSampleInfo[] getRimSamples() => HitObject.Samples.Where(s => s.Name == HitSampleInfo.HIT_CLAP || s.Name == HitSampleInfo.HIT_WHISTLE).ToArray();
|
2020-09-23 17:09:40 +08:00
|
|
|
|
|
2020-09-24 12:28:29 +08:00
|
|
|
|
protected override void LoadSamples()
|
2020-09-23 17:09:40 +08:00
|
|
|
|
{
|
2020-09-24 12:28:29 +08:00
|
|
|
|
base.LoadSamples();
|
2020-09-23 17:09:40 +08:00
|
|
|
|
|
2020-09-24 12:28:29 +08:00
|
|
|
|
type.Value = getRimSamples().Any() ? HitType.Rim : HitType.Centre;
|
2020-09-23 17:09:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 16:57:57 +08:00
|
|
|
|
private void updateSamplesFromTypeChange()
|
|
|
|
|
{
|
2020-09-24 12:22:14 +08:00
|
|
|
|
var rimSamples = getRimSamples();
|
2020-09-23 16:57:57 +08:00
|
|
|
|
|
|
|
|
|
bool isRimType = HitObject.Type == HitType.Rim;
|
|
|
|
|
|
2020-09-24 12:22:14 +08:00
|
|
|
|
if (isRimType != rimSamples.Any())
|
2020-09-23 16:57:57 +08:00
|
|
|
|
{
|
|
|
|
|
if (isRimType)
|
2020-12-01 14:37:51 +08:00
|
|
|
|
HitObject.Samples.Add(new HitSampleInfo(HitSampleInfo.HIT_CLAP));
|
2020-09-23 16:57:57 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2020-09-24 12:22:14 +08:00
|
|
|
|
foreach (var sample in rimSamples)
|
2020-09-23 16:57:57 +08:00
|
|
|
|
HitObject.Samples.Remove(sample);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-26 13:43:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 16:57:57 +08:00
|
|
|
|
private void updateActionsFromType()
|
2020-05-26 13:43:38 +08:00
|
|
|
|
{
|
2020-04-27 15:13:28 +08:00
|
|
|
|
HitActions =
|
|
|
|
|
HitObject.Type == HitType.Centre
|
|
|
|
|
? new[] { TaikoAction.LeftCentre, TaikoAction.RightCentre }
|
|
|
|
|
: new[] { TaikoAction.LeftRim, TaikoAction.RightRim };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-27 15:13:28 +08:00
|
|
|
|
protected override SkinnableDrawable CreateMainPiece() => HitObject.Type == HitType.Centre
|
|
|
|
|
? new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.CentreHit), _ => new CentreHitCirclePiece(), confineMode: ConfineMode.ScaleToFit)
|
|
|
|
|
: new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.RimHit), _ => new RimHitCirclePiece(), confineMode: ConfineMode.ScaleToFit);
|
|
|
|
|
|
2020-05-19 22:28:13 +08:00
|
|
|
|
public override IEnumerable<HitSampleInfo> GetSamples()
|
2020-05-11 11:53:54 +08:00
|
|
|
|
{
|
|
|
|
|
// normal and claps are always handled by the drum (see DrumSampleMapping).
|
2020-05-18 23:17:13 +08:00
|
|
|
|
// in addition, whistles are excluded as they are an alternative rim marker.
|
|
|
|
|
|
|
|
|
|
var samples = HitObject.Samples.Where(s =>
|
|
|
|
|
s.Name != HitSampleInfo.HIT_NORMAL
|
|
|
|
|
&& s.Name != HitSampleInfo.HIT_CLAP
|
|
|
|
|
&& s.Name != HitSampleInfo.HIT_WHISTLE);
|
2020-05-11 15:19:47 +08:00
|
|
|
|
|
|
|
|
|
if (HitObject.Type == HitType.Rim && HitObject.IsStrong)
|
|
|
|
|
{
|
|
|
|
|
// strong + rim always maps to whistle.
|
|
|
|
|
// TODO: this should really be in the legacy decoder, but can't be because legacy encoding parity would be broken.
|
|
|
|
|
// when we add a taiko editor, this is probably not going to play nice.
|
|
|
|
|
|
|
|
|
|
var corrected = samples.ToList();
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < corrected.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
var s = corrected[i];
|
|
|
|
|
|
|
|
|
|
if (s.Name != HitSampleInfo.HIT_FINISH)
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-12-01 14:37:51 +08:00
|
|
|
|
corrected[i] = s.With(HitSampleInfo.HIT_WHISTLE);
|
2020-05-11 15:19:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return corrected;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return samples;
|
2020-05-11 11:53:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-02 17:31:33 +08:00
|
|
|
|
Debug.Assert(HitObject.HitWindows != null);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
|
|
|
|
if (!HitObject.HitWindows.CanBeHit(timeOffset))
|
2020-10-03 04:58:10 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var result = HitObject.HitWindows.ResultFor(timeOffset);
|
2018-12-06 20:04:54 +08:00
|
|
|
|
if (result == HitResult.None)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-08-03 15:12:38 +08:00
|
|
|
|
if (!validActionPressed)
|
2020-10-03 04:58:10 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
else
|
2018-08-03 15:12:38 +08:00
|
|
|
|
ApplyResult(r => r.Type = result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool OnPressed(TaikoAction action)
|
|
|
|
|
{
|
2018-09-28 16:18:34 +08:00
|
|
|
|
if (pressHandledThisFrame)
|
2018-09-25 17:37:25 +08:00
|
|
|
|
return true;
|
2018-08-03 15:12:38 +08:00
|
|
|
|
if (Judged)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
validActionPressed = HitActions.Contains(action);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
// Only count this as handled if the new judgement is a hit
|
2018-08-06 10:31:46 +08:00
|
|
|
|
var result = UpdateResult(true);
|
2018-08-03 15:12:38 +08:00
|
|
|
|
if (IsHit)
|
|
|
|
|
HitAction = action;
|
|
|
|
|
|
2018-09-25 17:37:25 +08: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
|
2018-09-28 16:18:34 +08:00
|
|
|
|
pressHandledThisFrame = true;
|
2018-08-03 15:12:38 +08:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
|
public override void OnReleased(TaikoAction action)
|
2018-08-03 15:12:38 +08:00
|
|
|
|
{
|
|
|
|
|
if (action == HitAction)
|
|
|
|
|
HitAction = null;
|
2020-01-22 12:22:34 +08:00
|
|
|
|
base.OnReleased(action);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2018-09-25 17:37:25 +08:00
|
|
|
|
// The input manager processes all input prior to us updating, so this is the perfect time
|
|
|
|
|
// for us to remove the extra press blocking, before input is handled in the next frame
|
2018-09-28 16:18:34 +08:00
|
|
|
|
pressHandledThisFrame = false;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-04 15:19:07 +08:00
|
|
|
|
protected override void UpdateHitStateTransforms(ArmedState state)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-02 17:31:33 +08:00
|
|
|
|
Debug.Assert(HitObject.HitWindows != null);
|
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
switch (state)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-08-27 10:03:56 +08:00
|
|
|
|
case ArmedState.Idle:
|
|
|
|
|
validActionPressed = false;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
UnproxyContent();
|
|
|
|
|
break;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
case ArmedState.Miss:
|
2019-09-12 18:29:08 +08:00
|
|
|
|
this.FadeOut(100);
|
2019-08-27 10:03:56 +08:00
|
|
|
|
break;
|
2018-06-11 20:45:19 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
case ArmedState.Hit:
|
|
|
|
|
// If we're far enough away from the left stage, we should bring outselves in front of it
|
|
|
|
|
ProxyContent();
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2020-04-15 15:54:50 +08:00
|
|
|
|
var flash = (MainPiece.Drawable as CirclePiece)?.FlashBox;
|
2019-08-27 10:03:56 +08:00
|
|
|
|
flash?.FadeTo(0.9f).FadeOut(300);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
const float gravity_time = 300;
|
|
|
|
|
const float gravity_travel_height = 200;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
this.ScaleTo(0.8f, gravity_time * 2, Easing.OutQuad);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-27 10:03:56 +08:00
|
|
|
|
this.MoveToY(-gravity_travel_height, gravity_time, Easing.Out)
|
|
|
|
|
.Then()
|
|
|
|
|
.MoveToY(gravity_travel_height * 2, gravity_time * 2, Easing.In);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-12 18:29:08 +08:00
|
|
|
|
this.FadeOut(800);
|
2019-08-27 10:03:56 +08:00
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-03 15:12:38 +08:00
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
protected override DrawableStrongNestedHit CreateStrongNestedHit(Hit.StrongNestedHit hitObject) => new StrongNestedHit(hitObject);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
|
2020-12-21 01:02:31 +08:00
|
|
|
|
public class StrongNestedHit : DrawableStrongNestedHit
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2020-12-15 06:21:19 +08:00
|
|
|
|
public new DrawableHit ParentHitObject => (DrawableHit)base.ParentHitObject;
|
|
|
|
|
|
2018-08-03 15:56:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The lenience for the second key press.
|
|
|
|
|
/// This does not adjust by map difficulty in ScoreV2 yet.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const double second_hit_window = 30;
|
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
public StrongNestedHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-08-03 15:56:46 +08:00
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
public StrongNestedHit([CanBeNull] Hit.StrongNestedHit nestedHit)
|
|
|
|
|
: base(nestedHit)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (!ParentHitObject.Result.HasResult)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2018-08-06 10:31:46 +08:00
|
|
|
|
base.CheckForResult(userTriggered, timeOffset);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (!ParentHitObject.Result.IsHit)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2020-09-29 14:13:11 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-11-29 10:06:40 +08:00
|
|
|
|
|
2018-08-03 15:56:46 +08:00
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (timeOffset - ParentHitObject.Result.TimeOffset > second_hit_window)
|
2020-09-29 14:13:11 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (Math.Abs(timeOffset - ParentHitObject.Result.TimeOffset) <= second_hit_window)
|
2020-09-29 14:13:11 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool OnPressed(TaikoAction action)
|
|
|
|
|
{
|
|
|
|
|
// Don't process actions until the main hitobject is hit
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (!ParentHitObject.IsHit)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Don't process actions if the pressed button was released
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (ParentHitObject.HitAction == null)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// Don't handle invalid hit action presses
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (!ParentHitObject.HitActions.Contains(action))
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return false;
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
return UpdateResult(true);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|