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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
|
|
|
{
|
|
|
|
|
public class CatchPlayfield : ScrollingPlayfield
|
|
|
|
|
{
|
|
|
|
|
public const float BASE_WIDTH = 512;
|
|
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
private readonly Container<Drawable> content;
|
|
|
|
|
|
|
|
|
|
private readonly CatcherArea catcherArea;
|
|
|
|
|
|
|
|
|
|
public CatchPlayfield(BeatmapDifficulty difficulty, Func<CatchHitObject, DrawableHitObject<CatchHitObject>> getVisualRepresentation)
|
2018-07-17 14:14:03 +08:00
|
|
|
|
: base(BASE_WIDTH)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-07-17 14:14:03 +08:00
|
|
|
|
Direction.Value = ScrollingDirection.Down;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Container explodingFruitContainer;
|
|
|
|
|
|
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
|
|
|
Origin = Anchor.TopCentre;
|
|
|
|
|
|
|
|
|
|
base.Content.Anchor = Anchor.BottomLeft;
|
|
|
|
|
base.Content.Origin = Anchor.BottomLeft;
|
|
|
|
|
|
|
|
|
|
base.Content.AddRange(new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
explodingFruitContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
catcherArea = new CatcherArea(difficulty)
|
|
|
|
|
{
|
|
|
|
|
GetVisualRepresentation = getVisualRepresentation,
|
|
|
|
|
ExplodingFruitTarget = explodingFruitContainer,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
},
|
|
|
|
|
content = new Container<Drawable>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CheckIfWeCanCatch(CatchHitObject obj) => catcherArea.AttemptCatch(obj);
|
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
|
|
|
{
|
|
|
|
|
h.OnJudgement += onJudgement;
|
|
|
|
|
|
|
|
|
|
base.Add(h);
|
|
|
|
|
|
|
|
|
|
var fruit = (DrawableCatchHitObject)h;
|
|
|
|
|
fruit.CheckPosition = CheckIfWeCanCatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onJudgement(DrawableHitObject judgedObject, Judgement judgement) => catcherArea.OnJudgement((DrawableCatchHitObject)judgedObject, judgement);
|
|
|
|
|
}
|
|
|
|
|
}
|