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
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Framework.MathUtils;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2018-06-29 15:49:01 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Judgements;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawable;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-06-11 22:00:26 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
|
|
|
|
public class CatcherArea : Container
|
|
|
|
|
{
|
2019-02-01 00:57:59 +08:00
|
|
|
|
public const float CATCHER_SIZE = 106.75f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-12 01:38:12 +08:00
|
|
|
|
protected internal readonly Catcher MovableCatcher;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-24 22:40:43 +08:00
|
|
|
|
public Func<CatchHitObject, DrawableHitObject<CatchHitObject>> CreateDrawableRepresentation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public Container ExplodingFruitTarget
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
set => MovableCatcher.ExplodingFruitTarget = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CatcherArea(BeatmapDifficulty difficulty = null)
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Height = CATCHER_SIZE;
|
|
|
|
|
Child = MovableCatcher = new Catcher(difficulty)
|
|
|
|
|
{
|
|
|
|
|
AdditiveTarget = this,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private DrawableCatchHitObject lastPlateableFruit;
|
|
|
|
|
|
2018-08-06 11:23:08 +08:00
|
|
|
|
public void OnResult(DrawableCatchHitObject fruit, JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-15 14:44:47 +08:00
|
|
|
|
void runAfterLoaded(Action action)
|
|
|
|
|
{
|
2018-07-26 20:00:18 +08:00
|
|
|
|
if (lastPlateableFruit == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-06-15 14:44:47 +08:00
|
|
|
|
// this is required to make this run after the last caught fruit runs UpdateState at least once.
|
|
|
|
|
// TODO: find a better alternative
|
2018-09-06 12:09:57 +08:00
|
|
|
|
if (lastPlateableFruit.IsLoaded)
|
2018-06-15 14:44:47 +08:00
|
|
|
|
action();
|
|
|
|
|
else
|
2019-03-17 12:43:23 +08:00
|
|
|
|
lastPlateableFruit.OnLoadComplete += _ => action();
|
2018-06-15 14:44:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 19:37:07 +08:00
|
|
|
|
if (result.IsHit && fruit.CanBePlated)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-24 22:40:43 +08:00
|
|
|
|
var caughtFruit = (DrawableCatchHitObject)CreateDrawableRepresentation?.Invoke(fruit.HitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (caughtFruit == null) return;
|
|
|
|
|
|
|
|
|
|
caughtFruit.RelativePositionAxes = Axes.None;
|
|
|
|
|
caughtFruit.Position = new Vector2(MovableCatcher.ToLocalSpace(fruit.ScreenSpaceDrawQuad.Centre).X - MovableCatcher.DrawSize.X / 2, 0);
|
|
|
|
|
|
|
|
|
|
caughtFruit.Anchor = Anchor.TopCentre;
|
|
|
|
|
caughtFruit.Origin = Anchor.Centre;
|
|
|
|
|
caughtFruit.Scale *= 0.7f;
|
|
|
|
|
caughtFruit.LifetimeEnd = double.MaxValue;
|
|
|
|
|
|
|
|
|
|
MovableCatcher.Add(caughtFruit);
|
|
|
|
|
lastPlateableFruit = caughtFruit;
|
2018-06-15 14:44:47 +08:00
|
|
|
|
|
|
|
|
|
if (!fruit.StaysOnPlate)
|
|
|
|
|
runAfterLoaded(() => MovableCatcher.Explode(caughtFruit));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fruit.HitObject.LastInCombo)
|
|
|
|
|
{
|
2018-08-02 19:37:07 +08:00
|
|
|
|
if (((CatchJudgement)result.Judgement).ShouldExplodeFor(result))
|
2018-06-15 14:44:47 +08:00
|
|
|
|
runAfterLoaded(() => MovableCatcher.Explode());
|
2018-04-13 17:19:50 +08:00
|
|
|
|
else
|
|
|
|
|
MovableCatcher.Drop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2018-06-11 22:00:26 +08:00
|
|
|
|
var state = (GetContainingInputManager().CurrentState as RulesetInputManagerInputState<CatchAction>)?.LastReplayState as CatchFramedReplayInputHandler.CatchReplayState;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (state?.CatcherX != null)
|
|
|
|
|
MovableCatcher.X = state.CatcherX.Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnReleased(CatchAction action) => false;
|
|
|
|
|
|
|
|
|
|
public bool AttemptCatch(CatchHitObject obj) => MovableCatcher.AttemptCatch(obj);
|
|
|
|
|
|
2018-09-13 23:01:33 +08:00
|
|
|
|
public static float GetCatcherSize(BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
2018-09-13 23:29:10 +08:00
|
|
|
|
return CATCHER_SIZE / CatchPlayfield.BASE_WIDTH * (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5);
|
2018-09-13 23:01:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public class Catcher : Container, IKeyBindingHandler<CatchAction>
|
|
|
|
|
{
|
2018-06-21 11:57:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Width of the area that can be used to attempt catches during gameplay.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal float CatchWidth => CATCHER_SIZE * Math.Abs(Scale.X);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private Container<DrawableHitObject> caughtFruit;
|
|
|
|
|
|
|
|
|
|
public Container ExplodingFruitTarget;
|
|
|
|
|
|
|
|
|
|
public Container AdditiveTarget;
|
|
|
|
|
|
|
|
|
|
public Catcher(BeatmapDifficulty difficulty = null)
|
|
|
|
|
{
|
|
|
|
|
RelativePositionAxes = Axes.X;
|
|
|
|
|
X = 0.5f;
|
|
|
|
|
|
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
Anchor = Anchor.TopLeft;
|
|
|
|
|
|
|
|
|
|
Size = new Vector2(CATCHER_SIZE);
|
|
|
|
|
if (difficulty != null)
|
|
|
|
|
Scale = new Vector2(1.0f - 0.7f * (difficulty.CircleSize - 5) / 5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-05-25 16:32:07 +08:00
|
|
|
|
private void load()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
caughtFruit = new Container<DrawableHitObject>
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
},
|
|
|
|
|
createCatcherSprite(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int currentDirection;
|
|
|
|
|
|
|
|
|
|
private bool dashing;
|
|
|
|
|
|
|
|
|
|
protected bool Dashing
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => dashing;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == dashing) return;
|
|
|
|
|
|
|
|
|
|
dashing = value;
|
|
|
|
|
|
|
|
|
|
Trail |= dashing;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool trail;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Activate or deactive the trail. Will be automatically deactivated when conditions to keep the trail displayed are no longer met.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected bool Trail
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => trail;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == trail) return;
|
|
|
|
|
|
|
|
|
|
trail = value;
|
|
|
|
|
|
|
|
|
|
if (Trail)
|
|
|
|
|
beginTrail();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void beginTrail()
|
|
|
|
|
{
|
|
|
|
|
Trail &= dashing || HyperDashing;
|
|
|
|
|
Trail &= AdditiveTarget != null;
|
|
|
|
|
|
|
|
|
|
if (!Trail) return;
|
|
|
|
|
|
|
|
|
|
var additive = createCatcherSprite();
|
|
|
|
|
|
|
|
|
|
additive.Anchor = Anchor;
|
|
|
|
|
additive.OriginPosition = additive.OriginPosition + new Vector2(DrawWidth / 2, 0); // also temporary to align sprite correctly.
|
|
|
|
|
additive.Position = Position;
|
|
|
|
|
additive.Scale = Scale;
|
|
|
|
|
additive.Colour = HyperDashing ? Color4.Red : Color4.White;
|
|
|
|
|
additive.RelativePositionAxes = RelativePositionAxes;
|
|
|
|
|
additive.Blending = BlendingMode.Additive;
|
|
|
|
|
|
|
|
|
|
AdditiveTarget.Add(additive);
|
|
|
|
|
|
|
|
|
|
additive.FadeTo(0.4f).FadeOut(800, Easing.OutQuint).Expire();
|
|
|
|
|
|
|
|
|
|
Scheduler.AddDelayed(beginTrail, HyperDashing ? 25 : 50);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-25 16:32:07 +08:00
|
|
|
|
private Sprite createCatcherSprite() => new CatcherSprite();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add a caught fruit to the catcher's stack.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="fruit">The fruit that was caught.</param>
|
|
|
|
|
public void Add(DrawableHitObject fruit)
|
|
|
|
|
{
|
|
|
|
|
float ourRadius = fruit.DrawSize.X / 2 * fruit.Scale.X;
|
|
|
|
|
float theirRadius = 0;
|
|
|
|
|
|
|
|
|
|
const float allowance = 6;
|
|
|
|
|
|
|
|
|
|
while (caughtFruit.Any(f =>
|
|
|
|
|
f.LifetimeEnd == double.MaxValue &&
|
|
|
|
|
Vector2Extensions.Distance(f.Position, fruit.Position) < (ourRadius + (theirRadius = f.DrawSize.X / 2 * f.Scale.X)) / (allowance / 2)))
|
|
|
|
|
{
|
|
|
|
|
float diff = (ourRadius + theirRadius) / allowance;
|
|
|
|
|
fruit.X += (RNG.NextSingle() - 0.5f) * 2 * diff;
|
|
|
|
|
fruit.Y -= RNG.NextSingle() * diff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fruit.X = MathHelper.Clamp(fruit.X, -CATCHER_SIZE / 2, CATCHER_SIZE / 2);
|
|
|
|
|
|
|
|
|
|
caughtFruit.Add(fruit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Let the catcher attempt to catch a fruit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="fruit">The fruit to catch.</param>
|
|
|
|
|
/// <returns>Whether the catch is possible.</returns>
|
|
|
|
|
public bool AttemptCatch(CatchHitObject fruit)
|
|
|
|
|
{
|
2018-06-21 11:57:59 +08:00
|
|
|
|
float halfCatchWidth = CatchWidth * 0.5f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
// this stuff wil disappear once we move fruit to non-relative coordinate space in the future.
|
|
|
|
|
var catchObjectPosition = fruit.X * CatchPlayfield.BASE_WIDTH;
|
|
|
|
|
var catcherPosition = Position.X * CatchPlayfield.BASE_WIDTH;
|
|
|
|
|
|
|
|
|
|
var validCatch =
|
2018-06-21 11:57:59 +08:00
|
|
|
|
catchObjectPosition >= catcherPosition - halfCatchWidth &&
|
|
|
|
|
catchObjectPosition <= catcherPosition + halfCatchWidth;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
if (validCatch && fruit.HyperDash)
|
|
|
|
|
{
|
2018-05-25 00:20:05 +08:00
|
|
|
|
var target = fruit.HyperDashTarget;
|
|
|
|
|
double timeDifference = target.StartTime - fruit.StartTime;
|
|
|
|
|
double positionDifference = target.X * CatchPlayfield.BASE_WIDTH - catcherPosition;
|
|
|
|
|
double velocity = positionDifference / Math.Max(1.0, timeDifference - 1000.0 / 60.0);
|
|
|
|
|
|
2018-07-05 10:32:09 +08:00
|
|
|
|
SetHyperDashState(Math.Abs(velocity), target.X);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
2018-05-25 00:20:05 +08:00
|
|
|
|
{
|
2018-07-05 10:32:09 +08:00
|
|
|
|
SetHyperDashState();
|
2018-05-25 00:20:05 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return validCatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private double hyperDashModifier = 1;
|
2018-05-25 01:14:56 +08:00
|
|
|
|
private int hyperDashDirection;
|
2018-05-25 00:20:05 +08:00
|
|
|
|
private float hyperDashTargetPosition;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-07-05 10:32:09 +08:00
|
|
|
|
/// Whether we are hyper-dashing or not.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-06-03 14:29:56 +08:00
|
|
|
|
public bool HyperDashing => hyperDashModifier != 1;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-07-05 10:32:09 +08:00
|
|
|
|
/// Set hyper-dash state.
|
2018-06-03 14:29:56 +08:00
|
|
|
|
/// </summary>
|
2018-07-05 10:32:09 +08:00
|
|
|
|
/// <param name="modifier">The speed multiplier. If this is less or equals to 1, this catcher will be non-hyper-dashing state.</param>
|
|
|
|
|
/// <param name="targetPosition">When this catcher crosses this position, this catcher ends hyper-dashing.</param>
|
|
|
|
|
public void SetHyperDashState(double modifier = 1, float targetPosition = -1)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-07-05 10:32:09 +08:00
|
|
|
|
const float hyper_dash_transition_length = 180;
|
2018-06-26 12:02:29 +08:00
|
|
|
|
|
2018-06-20 19:08:27 +08:00
|
|
|
|
bool previouslyHyperDashing = HyperDashing;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-06-20 19:08:27 +08:00
|
|
|
|
if (modifier <= 1 || X == targetPosition)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-20 19:08:27 +08:00
|
|
|
|
hyperDashModifier = 1;
|
|
|
|
|
hyperDashDirection = 0;
|
2018-05-25 00:20:05 +08:00
|
|
|
|
|
2018-06-20 19:08:27 +08:00
|
|
|
|
if (previouslyHyperDashing)
|
2018-05-25 00:20:05 +08:00
|
|
|
|
{
|
2018-07-05 10:32:09 +08:00
|
|
|
|
this.FadeColour(Color4.White, hyper_dash_transition_length, Easing.OutQuint);
|
|
|
|
|
this.FadeTo(1, hyper_dash_transition_length, Easing.OutQuint);
|
2018-05-25 00:20:05 +08:00
|
|
|
|
}
|
2018-06-20 19:08:27 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
hyperDashModifier = modifier;
|
|
|
|
|
hyperDashDirection = Math.Sign(targetPosition - X);
|
|
|
|
|
hyperDashTargetPosition = targetPosition;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-20 19:08:27 +08:00
|
|
|
|
if (!previouslyHyperDashing)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-07-05 10:32:09 +08:00
|
|
|
|
this.FadeColour(Color4.OrangeRed, hyper_dash_transition_length, Easing.OutQuint);
|
|
|
|
|
this.FadeTo(0.2f, hyper_dash_transition_length, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Trail = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnPressed(CatchAction action)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case CatchAction.Dash:
|
|
|
|
|
Dashing = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool OnReleased(CatchAction action)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case CatchAction.MoveLeft:
|
|
|
|
|
currentDirection++;
|
|
|
|
|
return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case CatchAction.MoveRight:
|
|
|
|
|
currentDirection--;
|
|
|
|
|
return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case CatchAction.Dash:
|
|
|
|
|
Dashing = false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The relative space to cover in 1 millisecond. based on 1 game pixel per millisecond as in osu-stable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const double BASE_SPEED = 1.0 / 512;
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
if (currentDirection == 0) return;
|
|
|
|
|
|
|
|
|
|
var direction = Math.Sign(currentDirection);
|
|
|
|
|
|
|
|
|
|
double dashModifier = Dashing ? 1 : 0.5;
|
2018-05-25 00:20:05 +08:00
|
|
|
|
double speed = BASE_SPEED * dashModifier * hyperDashModifier;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Scale = new Vector2(Math.Abs(Scale.X) * direction, Scale.Y);
|
2018-05-25 00:20:05 +08:00
|
|
|
|
X = (float)MathHelper.Clamp(X + direction * Clock.ElapsedFrameTime * speed, 0, 1);
|
|
|
|
|
|
|
|
|
|
// Correct overshooting.
|
2018-05-25 01:14:56 +08:00
|
|
|
|
if (hyperDashDirection > 0 && hyperDashTargetPosition < X ||
|
|
|
|
|
hyperDashDirection < 0 && hyperDashTargetPosition > X)
|
2018-05-25 00:20:05 +08:00
|
|
|
|
{
|
|
|
|
|
X = hyperDashTargetPosition;
|
2018-07-05 10:32:09 +08:00
|
|
|
|
SetHyperDashState();
|
2018-05-25 00:20:05 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Drop any fruit off the plate.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Drop()
|
|
|
|
|
{
|
|
|
|
|
var fruit = caughtFruit.ToArray();
|
|
|
|
|
|
|
|
|
|
foreach (var f in fruit)
|
|
|
|
|
{
|
|
|
|
|
if (ExplodingFruitTarget != null)
|
|
|
|
|
{
|
|
|
|
|
f.Anchor = Anchor.TopLeft;
|
|
|
|
|
f.Position = caughtFruit.ToSpaceOfOtherDrawable(f.DrawPosition, ExplodingFruitTarget);
|
|
|
|
|
|
|
|
|
|
caughtFruit.Remove(f);
|
|
|
|
|
|
|
|
|
|
ExplodingFruitTarget.Add(f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
f.MoveToY(f.Y + 75, 750, Easing.InSine);
|
|
|
|
|
f.FadeOut(750);
|
|
|
|
|
f.Expire();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Explode any fruit off the plate.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Explode()
|
|
|
|
|
{
|
2018-09-05 15:45:30 +08:00
|
|
|
|
foreach (var f in caughtFruit.ToArray())
|
2018-06-15 14:44:47 +08:00
|
|
|
|
Explode(f);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-15 14:44:47 +08:00
|
|
|
|
public void Explode(DrawableHitObject fruit)
|
|
|
|
|
{
|
|
|
|
|
var originalX = fruit.X * Scale.X;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-15 14:44:47 +08:00
|
|
|
|
if (ExplodingFruitTarget != null)
|
|
|
|
|
{
|
|
|
|
|
fruit.Anchor = Anchor.TopLeft;
|
|
|
|
|
fruit.Position = caughtFruit.ToSpaceOfOtherDrawable(fruit.DrawPosition, ExplodingFruitTarget);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-05 15:45:30 +08:00
|
|
|
|
if (!caughtFruit.Remove(fruit))
|
|
|
|
|
// we may have already been removed by a previous operation (due to the weird OnLoadComplete scheduling).
|
|
|
|
|
// this avoids a crash on potentially attempting to Add a fruit to ExplodingFruitTarget twice.
|
|
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-15 14:44:47 +08:00
|
|
|
|
ExplodingFruitTarget.Add(fruit);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-05 15:45:30 +08:00
|
|
|
|
fruit.MoveToY(fruit.Y - 50, 250, Easing.OutSine).Then().MoveToY(fruit.Y + 50, 500, Easing.InSine);
|
2018-06-15 14:44:47 +08:00
|
|
|
|
fruit.MoveToX(fruit.X + originalX * 6, 1000);
|
|
|
|
|
fruit.FadeOut(750);
|
|
|
|
|
|
|
|
|
|
fruit.Expire();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2018-05-25 16:32:07 +08:00
|
|
|
|
|
|
|
|
|
private class CatcherSprite : Sprite
|
|
|
|
|
{
|
|
|
|
|
public CatcherSprite()
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(CATCHER_SIZE);
|
|
|
|
|
|
|
|
|
|
// Sets the origin roughly to the centre of the catcher's plate to allow for correct scaling.
|
|
|
|
|
OriginPosition = new Vector2(-0.02f, 0.06f) * CATCHER_SIZE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-08-31 06:04:40 +08:00
|
|
|
|
private void load(TextureStore textures)
|
2018-05-25 16:32:07 +08:00
|
|
|
|
{
|
2018-08-31 06:04:40 +08:00
|
|
|
|
Texture = textures.Get(@"Play/Catch/fruit-catcher-idle");
|
2018-05-25 16:32:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|