mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 10:47:24 +08:00
67 lines
2.0 KiB
C#
67 lines
2.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.UI;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Rulesets.Catch.Objects.Drawable;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Catch.UI
|
|
{
|
|
public class CatchPlayfield : ScrollingPlayfield
|
|
{
|
|
protected override Container<Drawable> Content => content;
|
|
private readonly Container<Drawable> content;
|
|
private readonly CatcherArea catcherArea;
|
|
|
|
public CatchPlayfield()
|
|
: base(Axes.Y)
|
|
{
|
|
Reversed.Value = true;
|
|
|
|
Size = new Vector2(1);
|
|
|
|
Anchor = Anchor.TopCentre;
|
|
Origin = Anchor.TopCentre;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
content = new Container<Drawable>
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
catcherArea = new CatcherArea
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.TopLeft,
|
|
Height = 0.3f
|
|
}
|
|
};
|
|
}
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
{
|
|
h.Depth = (float)h.HitObject.StartTime;
|
|
|
|
base.Add(h);
|
|
|
|
var fruit = (DrawableFruit)h;
|
|
fruit.CheckPosition = catcherArea.CheckIfWeCanCatch;
|
|
}
|
|
|
|
public override void OnJudgement(DrawableHitObject judgedObject, Judgement judgement)
|
|
{
|
|
if (judgement.IsHit)
|
|
{
|
|
Vector2 screenPosition = judgedObject.ScreenSpaceDrawQuad.Centre;
|
|
Remove(judgedObject);
|
|
catcherArea.Add(judgedObject, screenPosition);
|
|
}
|
|
}
|
|
}
|
|
}
|