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;
|
|
|
|
|
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;
|
|
|
|
|
|
2018-11-11 17:38:12 +00:00
|
|
|
|
internal readonly CatcherArea CatcherArea;
|
2018-04-13 09:19:50 +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
|
|
|
|
{
|
|
|
|
|
Container explodingFruitContainer;
|
|
|
|
|
|
2019-03-26 04:31:49 +00:00
|
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-03-26 04:31:49 +00:00
|
|
|
|
explodingFruitContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
CatcherArea = new CatcherArea(difficulty)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-03-29 03:59:26 +00:00
|
|
|
|
CreateDrawableRepresentation = createDrawableRepresentation,
|
2019-03-26 04:31:49 +00:00
|
|
|
|
ExplodingFruitTarget = explodingFruitContainer,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
},
|
|
|
|
|
HitObjectContainer
|
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;
|
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)
|
2018-11-11 17:38:12 +00:00
|
|
|
|
=> CatcherArea.OnResult((DrawableCatchHitObject)judgedObject, result);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|