1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs

153 lines
5.4 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 17:19:50 +08:00
2020-07-06 11:54:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Pooling;
2018-04-13 17:19:50 +08:00
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;
2020-07-06 11:54:39 +08:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Osu.Scoring;
2019-03-06 11:34:58 +08:00
using osu.Game.Rulesets.Osu.UI.Cursor;
2020-07-06 11:54:39 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.UI
{
public class OsuPlayfield : Playfield
{
private readonly ApproachCircleProxyContainer approachCircles;
2018-04-13 17:19:50 +08:00
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
private readonly FollowPointRenderer followPoints;
2020-04-10 01:02:09 +08:00
private readonly OrderedHitPolicy hitPolicy;
2018-04-13 17:19:50 +08:00
public static readonly Vector2 BASE_SIZE = new Vector2(512, 384);
2019-03-29 10:38:45 +08:00
protected override GameplayCursorContainer CreateCursor() => new OsuCursorContainer();
2020-07-06 11:54:39 +08:00
private readonly IDictionary<HitResult, DrawablePool<DrawableOsuJudgement>> poolDictionary = new Dictionary<HitResult, DrawablePool<DrawableOsuJudgement>>();
2018-04-13 17:19:50 +08:00
public OsuPlayfield()
{
InternalChildren = new Drawable[]
2018-04-13 17:19:50 +08: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 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Depth = -1,
},
2018-09-21 13:02:32 +08:00
};
2020-04-10 01:02:09 +08:00
hitPolicy = new OrderedHitPolicy(HitObjectContainer);
2020-07-06 11:54:39 +08:00
var hitWindows = new OsuHitWindows();
foreach (var result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Where(r => r > HitResult.None && hitWindows.IsHitResultAllowed(r)))
poolDictionary.Add(result, new DrawableJudgementPool(result));
AddRangeInternal(poolDictionary.Values);
2018-04-13 17:19:50 +08:00
}
public override void Add(DrawableHitObject h)
{
h.OnNewResult += onNewResult;
2019-10-17 11:50:22 +08:00
h.OnLoadComplete += d =>
{
2019-10-17 11:50:22 +08:00
if (d is IDrawableHitObjectWithProxiedApproach c)
approachCircles.Add(c.ProxiedLayer.CreateProxy());
};
2018-04-13 17:19:50 +08:00
base.Add(h);
2020-03-10 14:30:24 +08:00
DrawableOsuHitObject osuHitObject = (DrawableOsuHitObject)h;
2020-04-10 01:02:09 +08:00
osuHitObject.CheckHittable = hitPolicy.IsHittable;
2020-03-10 14:30:24 +08:00
followPoints.AddFollowPoints(osuHitObject);
2018-04-13 17:19:50 +08:00
}
public override bool Remove(DrawableHitObject h)
2018-04-13 17:19:50 +08:00
{
bool result = base.Remove(h);
if (result)
2020-04-10 00:21:37 +08:00
followPoints.RemoveFollowPoints((DrawableOsuHitObject)h);
return result;
2018-04-13 17:19:50 +08:00
}
private void onNewResult(DrawableHitObject judgedObject, JudgementResult result)
2018-04-13 17:19:50 +08:00
{
2020-04-10 00:40:20 +08:00
// Hitobjects that block future hits should miss previous hitobjects if they're hit out-of-order.
hitPolicy.HandleHit(judgedObject);
2019-02-21 17:56:34 +08:00
if (!judgedObject.DisplayResult || !DisplayJudgements.Value)
2018-04-13 17:19:50 +08:00
return;
2020-07-06 11:54:39 +08:00
var osuObject = (OsuHitObject)judgedObject.HitObject;
DrawableOsuJudgement explosion = poolDictionary[result.Type].Get(doj =>
2018-04-13 17:19:50 +08:00
{
doj.Apply(result, judgedObject);
2020-07-06 11:54:39 +08:00
// todo: move to JudgedObject property?
doj.Position = osuObject.StackedEndPosition;
doj.Scale = new Vector2(osuObject.Scale);
});
2018-04-13 17:19:50 +08:00
judgementLayer.Add(explosion);
}
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => HitObjectContainer.ReceivePositionalInputAt(screenSpacePos);
private class ApproachCircleProxyContainer : LifetimeManagementContainer
{
public void Add(Drawable approachCircleProxy) => AddInternal(approachCircleProxy);
}
2020-07-06 11:54:39 +08:00
private class DrawableJudgementPool : DrawablePool<DrawableOsuJudgement>
{
private readonly HitResult result;
public DrawableJudgementPool(HitResult result)
: base(10)
{
this.result = result;
}
protected override DrawableOsuJudgement CreateNewDrawable()
{
var judgement = base.CreateNewDrawable();
// just a placeholder to initialise the correct drawable hierarchy for this pool.
judgement.Apply(new JudgementResult(new HitObject(), new Judgement()) { Type = result }, null);
2020-07-06 11:54:39 +08:00
return judgement;
}
}
2018-04-13 17:19:50 +08:00
}
}