2019-09-13 21:44:40 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-06-11 14:39:06 +08:00
|
|
|
|
using System;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2021-09-16 17:26:12 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-06-29 15:49:01 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Judgements;
|
2020-02-19 17:01:59 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2020-09-29 13:26:36 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-06-11 22:00:26 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
2021-07-21 15:40:35 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The horizontal band at the bottom of the playfield the catcher is moving on.
|
|
|
|
|
/// It holds a <see cref="Catcher"/> as a child and translates input to the catcher movement.
|
|
|
|
|
/// It also holds a combo display that is above the catcher, and judgment results are translated to the catcher and the combo display.
|
|
|
|
|
/// </summary>
|
2021-06-11 14:39:06 +08:00
|
|
|
|
public class CatcherArea : Container, IKeyBindingHandler<CatchAction>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-07-21 15:28:31 +08:00
|
|
|
|
public Catcher Catcher
|
2021-07-19 18:44:40 +08:00
|
|
|
|
{
|
|
|
|
|
get => catcher;
|
2021-07-27 17:59:55 +08:00
|
|
|
|
set => catcherContainer.Child = catcher = value;
|
2021-07-19 18:44:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-27 17:59:55 +08:00
|
|
|
|
private readonly Container<Catcher> catcherContainer;
|
|
|
|
|
|
2020-09-13 04:39:06 +08:00
|
|
|
|
private readonly CatchComboDisplay comboDisplay;
|
2020-07-15 19:58:09 +08:00
|
|
|
|
|
2021-07-28 17:13:43 +08:00
|
|
|
|
private readonly CatcherTrailDisplay catcherTrails;
|
|
|
|
|
|
2021-07-19 18:44:40 +08:00
|
|
|
|
private Catcher catcher;
|
|
|
|
|
|
2021-06-11 14:39:06 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <c>-1</c> when only left button is pressed.
|
|
|
|
|
/// <c>1</c> when only right button is pressed.
|
|
|
|
|
/// <c>0</c> when none or both left and right buttons are pressed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int currentDirection;
|
|
|
|
|
|
2021-07-27 17:59:55 +08:00
|
|
|
|
// TODO: support replay rewind
|
|
|
|
|
private bool lastHyperDashState;
|
|
|
|
|
|
2021-07-21 15:40:35 +08:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// <see cref="Catcher"/> must be set before loading.
|
|
|
|
|
/// </remarks>
|
2021-07-19 18:44:40 +08:00
|
|
|
|
public CatcherArea()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-07-21 15:43:24 +08:00
|
|
|
|
Size = new Vector2(CatchPlayfield.WIDTH, Catcher.BASE_SIZE);
|
2021-07-27 17:59:55 +08:00
|
|
|
|
Children = new Drawable[]
|
2020-08-30 04:14:29 +08:00
|
|
|
|
{
|
2021-07-27 17:59:55 +08:00
|
|
|
|
catcherContainer = new Container<Catcher> { RelativeSizeAxes = Axes.Both },
|
2021-07-28 17:13:43 +08:00
|
|
|
|
catcherTrails = new CatcherTrailDisplay(),
|
2021-07-27 17:59:55 +08:00
|
|
|
|
comboDisplay = new CatchComboDisplay
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Margin = new MarginPadding { Bottom = 350f },
|
|
|
|
|
X = CatchPlayfield.CENTER_X
|
|
|
|
|
}
|
2020-08-30 04:14:29 +08:00
|
|
|
|
};
|
2020-03-13 11:59:30 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
|
public void OnNewResult(DrawableCatchHitObject hitObject, JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.OnNewResult(hitObject, result);
|
2020-12-08 13:28:30 +08:00
|
|
|
|
|
2020-09-29 13:26:36 +08:00
|
|
|
|
if (!result.Type.IsScorable())
|
2020-02-26 18:31:49 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
|
if (hitObject.HitObject.LastInCombo)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-26 06:13:32 +08:00
|
|
|
|
if (result.Judgement is CatchJudgement catchJudgement && catchJudgement.ShouldExplodeFor(result))
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.Explode();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
else
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.Drop();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2020-09-13 04:39:06 +08:00
|
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
|
comboDisplay.OnNewResult(hitObject, result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-08 13:28:30 +08:00
|
|
|
|
public void OnRevertResult(DrawableCatchHitObject hitObject, JudgementResult result)
|
2018-09-13 23:01:33 +08:00
|
|
|
|
{
|
2020-12-08 13:28:30 +08:00
|
|
|
|
comboDisplay.OnRevertResult(hitObject, result);
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.OnRevertResult(hitObject, result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2020-02-21 17:09:50 +08:00
|
|
|
|
|
2021-06-11 14:39:06 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
var replayState = (GetContainingInputManager().CurrentState as RulesetInputManagerInputState<CatchAction>)?.LastReplayState as CatchFramedReplayInputHandler.CatchReplayState;
|
|
|
|
|
|
|
|
|
|
SetCatcherPosition(
|
|
|
|
|
replayState?.CatcherX ??
|
2021-07-21 15:28:31 +08:00
|
|
|
|
(float)(Catcher.X + Catcher.Speed * currentDirection * Clock.ElapsedFrameTime));
|
2021-06-11 14:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 11:59:30 +08:00
|
|
|
|
protected override void UpdateAfterChildren()
|
2020-02-21 17:09:50 +08:00
|
|
|
|
{
|
2020-03-13 11:59:30 +08:00
|
|
|
|
base.UpdateAfterChildren();
|
2020-02-21 17:09:50 +08:00
|
|
|
|
|
2021-07-21 15:28:31 +08:00
|
|
|
|
comboDisplay.X = Catcher.X;
|
2021-07-27 17:59:55 +08:00
|
|
|
|
|
2021-07-29 16:32:20 +08:00
|
|
|
|
if (Time.Elapsed <= 0)
|
|
|
|
|
{
|
|
|
|
|
// This is probably a wrong value, but currently the true value is not recorded.
|
2021-07-30 14:44:09 +08:00
|
|
|
|
// Setting `true` will prevent generation of false-positive after-images (with more false-negatives).
|
2021-07-29 16:32:20 +08:00
|
|
|
|
lastHyperDashState = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!lastHyperDashState && Catcher.HyperDashing)
|
2021-08-02 14:08:42 +08:00
|
|
|
|
displayCatcherTrail(CatcherTrailAnimation.HyperDashAfterImage);
|
2021-07-27 17:59:55 +08:00
|
|
|
|
|
|
|
|
|
if (Catcher.Dashing || Catcher.HyperDashing)
|
|
|
|
|
{
|
|
|
|
|
double generationInterval = Catcher.HyperDashing ? 25 : 50;
|
|
|
|
|
|
2021-07-28 17:13:43 +08:00
|
|
|
|
if (Time.Current - catcherTrails.LastDashTrailTime >= generationInterval)
|
2021-07-29 16:12:01 +08:00
|
|
|
|
displayCatcherTrail(Catcher.HyperDashing ? CatcherTrailAnimation.HyperDashing : CatcherTrailAnimation.Dashing);
|
2021-07-27 17:59:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lastHyperDashState = Catcher.HyperDashing;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
}
|
2020-02-21 17:09:50 +08:00
|
|
|
|
|
2021-06-11 14:39:06 +08:00
|
|
|
|
public void SetCatcherPosition(float X)
|
|
|
|
|
{
|
2021-07-21 15:28:31 +08:00
|
|
|
|
float lastPosition = Catcher.X;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
float newPosition = Math.Clamp(X, 0, CatchPlayfield.WIDTH);
|
2020-08-30 04:14:29 +08:00
|
|
|
|
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.X = newPosition;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
|
|
|
|
|
if (lastPosition < newPosition)
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.VisualDirection = Direction.Right;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
else if (lastPosition > newPosition)
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.VisualDirection = Direction.Left;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<CatchAction> e)
|
2021-06-11 14:39:06 +08:00
|
|
|
|
{
|
2021-09-16 17:26:12 +08:00
|
|
|
|
switch (e.Action)
|
2021-06-11 14:39:06 +08:00
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case CatchAction.Dash:
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.Dashing = true;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<CatchAction> e)
|
2021-06-11 14:39:06 +08:00
|
|
|
|
{
|
2021-09-16 17:26:12 +08:00
|
|
|
|
switch (e.Action)
|
2021-06-11 14:39:06 +08:00
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CatchAction.Dash:
|
2021-07-21 15:28:31 +08:00
|
|
|
|
Catcher.Dashing = false;
|
2021-06-11 14:39:06 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2020-02-21 17:09:50 +08:00
|
|
|
|
}
|
2021-07-29 16:12:01 +08:00
|
|
|
|
|
|
|
|
|
private void displayCatcherTrail(CatcherTrailAnimation animation) => catcherTrails.Add(new CatcherTrailEntry(Time.Current, Catcher.CurrentState, Catcher.X, Catcher.BodyScale, animation));
|
2020-02-21 17:09:50 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|