2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects.Drawable;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
|
|
|
|
public class CatchPlayfield : ScrollingPlayfield
|
|
|
|
|
{
|
|
|
|
|
public const float BASE_WIDTH = 512;
|
|
|
|
|
|
2018-11-12 01:38:12 +08:00
|
|
|
|
internal readonly CatcherArea CatcherArea;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public CatchPlayfield(BeatmapDifficulty difficulty, Func<CatchHitObject, DrawableHitObject<CatchHitObject>> getVisualRepresentation)
|
|
|
|
|
{
|
|
|
|
|
Container explodingFruitContainer;
|
|
|
|
|
|
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
|
2018-09-21 14:08:43 +08:00
|
|
|
|
Size = new Vector2(0.86f); // matches stable's vertical offset for catcher plate
|
|
|
|
|
|
2018-10-05 09:39:18 +08:00
|
|
|
|
InternalChild = new PlayfieldAdjustmentContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-21 13:02:32 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-09-21 14:53:06 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-21 14:53:06 +08:00
|
|
|
|
explodingFruitContainer = new Container
|
2018-09-21 13:02:32 +08:00
|
|
|
|
{
|
2018-09-21 14:53:06 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2018-11-12 01:38:12 +08:00
|
|
|
|
CatcherArea = new CatcherArea(difficulty)
|
2018-09-21 14:53:06 +08:00
|
|
|
|
{
|
|
|
|
|
GetVisualRepresentation = getVisualRepresentation,
|
|
|
|
|
ExplodingFruitTarget = explodingFruitContainer,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
},
|
|
|
|
|
HitObjectContainer
|
2018-09-21 13:02:32 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-12 01:38:12 +08:00
|
|
|
|
public bool CheckIfWeCanCatch(CatchHitObject obj) => CatcherArea.AttemptCatch(obj);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
|
|
|
{
|
2018-08-06 09:54:16 +08:00
|
|
|
|
h.OnNewResult += onNewResult;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
base.Add(h);
|
|
|
|
|
|
|
|
|
|
var fruit = (DrawableCatchHitObject)h;
|
|
|
|
|
fruit.CheckPosition = CheckIfWeCanCatch;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 09:54:16 +08:00
|
|
|
|
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2018-11-12 01:38:12 +08:00
|
|
|
|
=> CatcherArea.OnResult((DrawableCatchHitObject)judgedObject, result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|