2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
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.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2019-11-29 09:25:11 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
|
|
|
|
public class CatchPlayfield : ScrollingPlayfield
|
|
|
|
|
{
|
2020-07-01 15:21:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The width of the playfield.
|
|
|
|
|
/// The horizontal movement of the catcher is confined in the area of this width.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const float WIDTH = 512;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The center position of the playfield.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const float CENTER_X = WIDTH / 2;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-11-11 17:38:12 +00:00
|
|
|
|
internal readonly CatcherArea CatcherArea;
|
2020-08-29 20:14:29 +00:00
|
|
|
|
|
2020-01-30 04:23:39 +00:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) =>
|
|
|
|
|
// only check the X position; handle all vertical space.
|
|
|
|
|
base.ReceivePositionalInputAt(new Vector2(screenSpacePos.X, ScreenSpaceDrawQuad.Centre.Y));
|
2019-11-29 09:25:11 +00:00
|
|
|
|
|
2019-03-24 14:40:43 +00:00
|
|
|
|
public CatchPlayfield(BeatmapDifficulty difficulty, Func<CatchHitObject, DrawableHitObject<CatchHitObject>> createDrawableRepresentation)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-15 11:58:09 +00:00
|
|
|
|
var explodingFruitContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CatcherArea = new CatcherArea(difficulty)
|
|
|
|
|
{
|
|
|
|
|
CreateDrawableRepresentation = createDrawableRepresentation,
|
|
|
|
|
ExplodingFruitTarget = explodingFruitContainer,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
};
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-07-15 13:00:48 +00:00
|
|
|
|
InternalChildren = new[]
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2020-07-15 11:58:09 +00:00
|
|
|
|
explodingFruitContainer,
|
2020-07-16 06:35:19 +00:00
|
|
|
|
CatcherArea.MovableCatcher.CreateProxiedContent(),
|
2020-07-15 11:58:09 +00:00
|
|
|
|
HitObjectContainer,
|
2020-08-03 19:13:02 +00:00
|
|
|
|
CatcherArea,
|
2018-09-21 05:02:32 +00:00
|
|
|
|
};
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-11 17:38:12 +00:00
|
|
|
|
public bool CheckIfWeCanCatch(CatchHitObject obj) => CatcherArea.AttemptCatch(obj);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
|
|
|
{
|
2018-08-06 01:54:16 +00:00
|
|
|
|
h.OnNewResult += onNewResult;
|
2020-08-03 19:13:02 +00:00
|
|
|
|
h.OnRevertResult += onRevertResult;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
base.Add(h);
|
|
|
|
|
|
|
|
|
|
var fruit = (DrawableCatchHitObject)h;
|
|
|
|
|
fruit.CheckPosition = CheckIfWeCanCatch;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 01:54:16 +00:00
|
|
|
|
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2020-09-12 20:39:06 +00:00
|
|
|
|
=> CatcherArea.OnNewResult((DrawableCatchHitObject)judgedObject, result);
|
2020-08-03 19:13:02 +00:00
|
|
|
|
|
|
|
|
|
private void onRevertResult(DrawableHitObject judgedObject, JudgementResult result)
|
2020-09-12 20:39:06 +00:00
|
|
|
|
=> CatcherArea.OnRevertResult((DrawableCatchHitObject)judgedObject, result);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|