1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 23:27:28 +08:00
osu-lazer/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs

96 lines
3.1 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 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;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.UI;
using OpenTK;
2017-08-08 09:35:56 +08:00
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Catch.Objects;
2017-08-08 11:46:37 +08:00
using osu.Game.Rulesets.Catch.Objects.Drawable;
using osu.Game.Rulesets.Judgements;
2017-08-08 11:46:37 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Catch.UI
{
public class CatchPlayfield : ScrollingPlayfield
{
2017-10-10 15:34:01 +08:00
public static readonly float BASE_WIDTH = 512;
2017-08-08 09:35:56 +08:00
protected override Container<Drawable> Content => content;
private readonly Container<Drawable> content;
private readonly Container catcherContainer;
private readonly Catcher catcher;
2017-08-08 09:35:56 +08:00
public CatchPlayfield()
2017-08-08 09:35:56 +08:00
: base(Axes.Y)
{
Container explodingFruitContainer;
2017-08-08 12:31:55 +08:00
Reversed.Value = true;
2017-08-02 19:41:38 +08:00
Anchor = Anchor.TopCentre;
Origin = Anchor.TopCentre;
2017-08-08 09:35:56 +08:00
InternalChildren = new Drawable[]
2017-08-02 19:28:24 +08:00
{
2017-08-08 09:35:56 +08:00
content = new Container<Drawable>
{
RelativeSizeAxes = Axes.Both,
},
explodingFruitContainer = new Container
2017-08-02 19:28:24 +08:00
{
RelativeSizeAxes = Axes.Both,
},
2017-10-02 22:24:22 +08:00
catcherContainer = new Container
{
RelativeSizeAxes = Axes.X,
2017-08-07 14:09:31 +08:00
Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft,
Height = 180,
Child = catcher = new Catcher
{
ExplodingFruitTarget = explodingFruitContainer,
RelativePositionAxes = Axes.Both,
Origin = Anchor.TopCentre,
X = 0.5f,
}
2017-08-02 19:28:24 +08:00
}
};
}
2017-08-08 11:46:37 +08:00
protected override void Update()
{
base.Update();
catcher.Size = new Vector2(catcherContainer.DrawSize.Y);
}
public bool CheckIfWeCanCatch(CatchBaseHit obj) => Math.Abs(catcher.Position.X - obj.X) < catcher.DrawSize.X / DrawSize.X / 2;
public override void Add(DrawableHitObject h)
2017-08-08 11:46:37 +08:00
{
h.Depth = (float)h.HitObject.StartTime;
2017-08-08 11:46:37 +08:00
base.Add(h);
2017-10-10 15:34:01 +08:00
var fruit = (DrawableCatchHitObject)h;
fruit.CheckPosition = CheckIfWeCanCatch;
2017-08-08 11:46:37 +08:00
}
2017-09-13 15:15:11 +08:00
public override void OnJudgement(DrawableHitObject judgedObject, Judgement judgement)
2017-08-08 11:46:37 +08:00
{
2017-09-12 16:36:46 +08:00
if (judgement.IsHit)
2017-08-08 11:46:37 +08:00
{
Vector2 screenPosition = judgedObject.ScreenSpaceDrawQuad.Centre;
// todo: don't do this
(judgedObject.Parent as Container<DrawableHitObject>)?.Remove(judgedObject);
(judgedObject.Parent as Container)?.Remove(judgedObject);
catcher.Add(judgedObject, screenPosition);
2017-08-08 11:46:37 +08:00
}
}
}
2017-08-08 09:35:56 +08:00
}