2019-09-13 13:44:40 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-06-11 06:39:06 +00:00
|
|
|
|
using System;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2018-06-29 07:49:01 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Judgements;
|
2020-02-19 09:01:59 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawables;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2020-09-29 05:26:36 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-06-11 14:00:26 +00:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
2021-07-21 07:40:35 +00: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 06:39:06 +00:00
|
|
|
|
public class CatcherArea : Container, IKeyBindingHandler<CatchAction>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-01-31 16:57:59 +00:00
|
|
|
|
public const float CATCHER_SIZE = 106.75f;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-07-21 07:28:31 +00:00
|
|
|
|
public Catcher Catcher
|
2021-07-19 10:44:40 +00:00
|
|
|
|
{
|
|
|
|
|
get => catcher;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (catcher != null)
|
|
|
|
|
Remove(catcher);
|
|
|
|
|
|
|
|
|
|
Add(catcher = value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 20:39:06 +00:00
|
|
|
|
private readonly CatchComboDisplay comboDisplay;
|
2020-07-15 11:58:09 +00:00
|
|
|
|
|
2021-07-19 10:44:40 +00:00
|
|
|
|
private Catcher catcher;
|
|
|
|
|
|
2021-06-11 06:39:06 +00: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-21 07:40:35 +00:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// <see cref="Catcher"/> must be set before loading.
|
|
|
|
|
/// </remarks>
|
2021-07-19 10:44:40 +00:00
|
|
|
|
public CatcherArea()
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-01 15:21:45 +00:00
|
|
|
|
Size = new Vector2(CatchPlayfield.WIDTH, CATCHER_SIZE);
|
2021-07-19 10:44:40 +00:00
|
|
|
|
Child = comboDisplay = new CatchComboDisplay
|
2020-08-29 20:14:29 +00:00
|
|
|
|
{
|
2021-07-19 10:44:40 +00:00
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Margin = new MarginPadding { Bottom = 350f },
|
|
|
|
|
X = CatchPlayfield.CENTER_X
|
2020-08-29 20:14:29 +00:00
|
|
|
|
};
|
2020-03-13 03:59:30 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-11-24 10:57:37 +00:00
|
|
|
|
public void OnNewResult(DrawableCatchHitObject hitObject, JudgementResult result)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.OnNewResult(hitObject, result);
|
2020-12-08 05:28:30 +00:00
|
|
|
|
|
2020-09-29 05:26:36 +00:00
|
|
|
|
if (!result.Type.IsScorable())
|
2020-02-26 10:31:49 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2020-11-24 10:57:37 +00:00
|
|
|
|
if (hitObject.HitObject.LastInCombo)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-02-25 22:13:32 +00:00
|
|
|
|
if (result.Judgement is CatchJudgement catchJudgement && catchJudgement.ShouldExplodeFor(result))
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.Explode();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
else
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.Drop();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2020-09-12 20:39:06 +00:00
|
|
|
|
|
2020-11-24 10:57:37 +00:00
|
|
|
|
comboDisplay.OnNewResult(hitObject, result);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-08 05:28:30 +00:00
|
|
|
|
public void OnRevertResult(DrawableCatchHitObject hitObject, JudgementResult result)
|
2018-09-13 15:01:33 +00:00
|
|
|
|
{
|
2020-12-08 05:28:30 +00:00
|
|
|
|
comboDisplay.OnRevertResult(hitObject, result);
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.OnRevertResult(hitObject, result);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
2020-02-21 09:09:50 +00:00
|
|
|
|
|
2021-06-11 06:39:06 +00:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
var replayState = (GetContainingInputManager().CurrentState as RulesetInputManagerInputState<CatchAction>)?.LastReplayState as CatchFramedReplayInputHandler.CatchReplayState;
|
|
|
|
|
|
|
|
|
|
SetCatcherPosition(
|
|
|
|
|
replayState?.CatcherX ??
|
2021-07-21 07:28:31 +00:00
|
|
|
|
(float)(Catcher.X + Catcher.Speed * currentDirection * Clock.ElapsedFrameTime));
|
2021-06-11 06:39:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 03:59:30 +00:00
|
|
|
|
protected override void UpdateAfterChildren()
|
2020-02-21 09:09:50 +00:00
|
|
|
|
{
|
2020-03-13 03:59:30 +00:00
|
|
|
|
base.UpdateAfterChildren();
|
2020-02-21 09:09:50 +00:00
|
|
|
|
|
2021-07-21 07:28:31 +00:00
|
|
|
|
comboDisplay.X = Catcher.X;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
}
|
2020-02-21 09:09:50 +00:00
|
|
|
|
|
2021-06-11 06:39:06 +00:00
|
|
|
|
public void SetCatcherPosition(float X)
|
|
|
|
|
{
|
2021-07-21 07:28:31 +00:00
|
|
|
|
float lastPosition = Catcher.X;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
float newPosition = Math.Clamp(X, 0, CatchPlayfield.WIDTH);
|
2020-08-29 20:14:29 +00:00
|
|
|
|
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.X = newPosition;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
|
|
|
|
|
if (lastPosition < newPosition)
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.VisualDirection = Direction.Right;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
else if (lastPosition > newPosition)
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.VisualDirection = Direction.Left;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnPressed(CatchAction action)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case CatchAction.Dash:
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.Dashing = true;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnReleased(CatchAction action)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CatchAction.Dash:
|
2021-07-21 07:28:31 +00:00
|
|
|
|
Catcher.Dashing = false;
|
2021-06-11 06:39:06 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2020-02-21 09:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|