2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables.Connections;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-03-06 12:34:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI.Cursor;
|
2019-07-17 19:25:41 +09:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
|
{
|
|
|
|
|
public class OsuPlayfield : Playfield
|
|
|
|
|
{
|
2018-12-13 14:55:28 +09:00
|
|
|
|
private readonly ApproachCircleProxyContainer approachCircles;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
|
2019-11-01 15:39:23 +09:00
|
|
|
|
private readonly FollowPointRenderer followPoints;
|
2020-04-10 02:02:09 +09:00
|
|
|
|
private readonly OrderedHitPolicy hitPolicy;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
|
|
|
|
|
|
2019-03-29 11:38:45 +09:00
|
|
|
|
protected override GameplayCursorContainer CreateCursor() => new OsuCursorContainer();
|
2019-03-08 14:59:45 +09:00
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
public OsuPlayfield()
|
|
|
|
|
{
|
2019-03-26 13:31:49 +09:00
|
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-11-01 15:39:23 +09:00
|
|
|
|
followPoints = new FollowPointRenderer
|
2019-03-26 13:31:49 +09:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = 2,
|
|
|
|
|
},
|
|
|
|
|
judgementLayer = new JudgementContainer<DrawableOsuJudgement>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = 1,
|
|
|
|
|
},
|
2019-07-17 19:25:41 +09:00
|
|
|
|
// Todo: This should not exist, but currently helps to reduce LOH allocations due to unbinding skin source events on judgement disposal
|
|
|
|
|
// Todo: Remove when hitobjects are properly pooled
|
2019-08-26 12:21:49 +09:00
|
|
|
|
new SkinProvidingContainer(null)
|
2019-07-17 19:25:41 +09:00
|
|
|
|
{
|
|
|
|
|
Child = HitObjectContainer,
|
|
|
|
|
},
|
2019-03-26 13:31:49 +09:00
|
|
|
|
approachCircles = new ApproachCircleProxyContainer
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-03-26 13:31:49 +09:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = -1,
|
|
|
|
|
},
|
2018-09-21 14:02:32 +09:00
|
|
|
|
};
|
2020-04-10 02:02:09 +09:00
|
|
|
|
|
|
|
|
|
hitPolicy = new OrderedHitPolicy(HitObjectContainer);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject h)
|
|
|
|
|
{
|
2018-08-06 10:54:16 +09:00
|
|
|
|
h.OnNewResult += onNewResult;
|
2019-10-17 12:50:22 +09:00
|
|
|
|
h.OnLoadComplete += d =>
|
2018-12-13 14:55:28 +09:00
|
|
|
|
{
|
2019-10-17 12:50:22 +09:00
|
|
|
|
if (d is IDrawableHitObjectWithProxiedApproach c)
|
|
|
|
|
approachCircles.Add(c.ProxiedLayer.CreateProxy());
|
|
|
|
|
};
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
base.Add(h);
|
2019-11-01 15:39:23 +09:00
|
|
|
|
|
2020-03-10 15:30:24 +09:00
|
|
|
|
DrawableOsuHitObject osuHitObject = (DrawableOsuHitObject)h;
|
2020-04-10 02:02:09 +09:00
|
|
|
|
osuHitObject.CheckHittable = hitPolicy.IsHittable;
|
2020-03-10 15:30:24 +09:00
|
|
|
|
|
|
|
|
|
followPoints.AddFollowPoints(osuHitObject);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 15:39:23 +09:00
|
|
|
|
public override bool Remove(DrawableHitObject h)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-11-01 15:39:23 +09:00
|
|
|
|
bool result = base.Remove(h);
|
|
|
|
|
|
|
|
|
|
if (result)
|
2020-04-10 01:21:37 +09:00
|
|
|
|
followPoints.RemoveFollowPoints((DrawableOsuHitObject)h);
|
2019-11-01 15:39:23 +09:00
|
|
|
|
|
|
|
|
|
return result;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 10:54:16 +09:00
|
|
|
|
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2020-04-10 01:40:20 +09:00
|
|
|
|
// Hitobjects that block future hits should miss previous hitobjects if they're hit out-of-order.
|
2020-04-17 13:34:20 +09:00
|
|
|
|
hitPolicy.HandleHit(judgedObject);
|
2020-03-19 19:16:24 +09:00
|
|
|
|
|
2019-02-21 18:56:34 +09:00
|
|
|
|
if (!judgedObject.DisplayResult || !DisplayJudgements.Value)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
return;
|
|
|
|
|
|
2018-08-02 20:36:38 +09:00
|
|
|
|
DrawableOsuJudgement explosion = new DrawableOsuJudgement(result, judgedObject)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
2018-09-22 22:54:38 -04:00
|
|
|
|
Position = ((OsuHitObject)judgedObject.HitObject).StackedEndPosition,
|
2019-09-18 02:56:03 +09:00
|
|
|
|
Scale = new Vector2(((OsuHitObject)judgedObject.HitObject).Scale)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
judgementLayer.Add(explosion);
|
|
|
|
|
}
|
2018-11-13 12:52:04 +09:00
|
|
|
|
|
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => HitObjectContainer.ReceivePositionalInputAt(screenSpacePos);
|
2018-12-13 14:55:28 +09:00
|
|
|
|
|
|
|
|
|
private class ApproachCircleProxyContainer : LifetimeManagementContainer
|
|
|
|
|
{
|
|
|
|
|
public void Add(Drawable approachCircleProxy) => AddInternal(approachCircleProxy);
|
|
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|