osu/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs

103 lines
3.6 KiB
C#
Raw Normal View History

// 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
2018-11-20 07:51:59 +00:00
using osuTK;
2018-04-13 09:19:50 +00: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 03:34:58 +00:00
using osu.Game.Rulesets.Osu.UI.Cursor;
using osu.Game.Skinning;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Osu.UI
{
public class OsuPlayfield : Playfield
{
private readonly ApproachCircleProxyContainer approachCircles;
2018-04-13 09:19:50 +00:00
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
private readonly FollowPointRenderer followPoints;
2018-04-13 09:19:50 +00:00
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
2019-03-29 02:38:45 +00:00
protected override GameplayCursorContainer CreateCursor() => new OsuCursorContainer();
2018-04-13 09:19:50 +00:00
public OsuPlayfield()
{
InternalChildren = new Drawable[]
2018-04-13 09:19:50 +00:00
{
followPoints = new FollowPointRenderer
{
RelativeSizeAxes = Axes.Both,
Depth = 2,
},
judgementLayer = new JudgementContainer<DrawableOsuJudgement>
{
RelativeSizeAxes = Axes.Both,
Depth = 1,
},
// 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
new SkinProvidingContainer(null)
{
Child = HitObjectContainer,
},
approachCircles = new ApproachCircleProxyContainer
2018-04-13 09:19:50 +00:00
{
RelativeSizeAxes = Axes.Both,
Depth = -1,
},
2018-09-21 05:02:32 +00:00
};
2018-04-13 09:19:50 +00:00
}
public override void Add(DrawableHitObject h)
{
h.OnNewResult += onNewResult;
2019-10-17 03:50:22 +00:00
h.OnLoadComplete += d =>
{
2019-10-17 03:50:22 +00:00
if (d is IDrawableHitObjectWithProxiedApproach c)
approachCircles.Add(c.ProxiedLayer.CreateProxy());
};
2018-04-13 09:19:50 +00:00
base.Add(h);
followPoints.AddFollowPoints((DrawableOsuHitObject)h);
2018-04-13 09:19:50 +00:00
}
public override bool Remove(DrawableHitObject h)
2018-04-13 09:19:50 +00:00
{
bool result = base.Remove(h);
if (result)
followPoints.RemoveFollowPoints((DrawableOsuHitObject)h);
return result;
2018-04-13 09:19:50 +00:00
}
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
2018-04-13 09:19:50 +00:00
{
2019-02-21 09:56:34 +00:00
if (!judgedObject.DisplayResult || !DisplayJudgements.Value)
2018-04-13 09:19:50 +00:00
return;
DrawableOsuJudgement explosion = new DrawableOsuJudgement(result, judgedObject)
2018-04-13 09:19:50 +00:00
{
Origin = Anchor.Centre,
2018-09-23 02:54:38 +00:00
Position = ((OsuHitObject)judgedObject.HitObject).StackedEndPosition,
Scale = new Vector2(((OsuHitObject)judgedObject.HitObject).Scale)
2018-04-13 09:19:50 +00:00
};
judgementLayer.Add(explosion);
}
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => HitObjectContainer.ReceivePositionalInputAt(screenSpacePos);
private class ApproachCircleProxyContainer : LifetimeManagementContainer
{
public void Add(Drawable approachCircleProxy) => AddInternal(approachCircleProxy);
}
2018-04-13 09:19:50 +00:00
}
}