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

172 lines
6.2 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-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Pooling;
2020-07-10 18:05:31 +08:00
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Connections;
2020-07-06 11:54:39 +08:00
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;
2020-07-10 18:05:31 +08:00
using osu.Game.Rulesets.UI;
using osu.Game.Skinning;
using osu.Framework.Allocation;
using osu.Game.Configuration;
using osu.Framework.Bindables;
2020-07-10 18:05:31 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu.UI
{
public class OsuPlayfield : Playfield
{
private readonly PlayfieldBorder playfieldBorder;
private readonly ProxyContainer approachCircles;
private readonly ProxyContainer spinnerProxies;
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();
private Bindable<bool> showPlayfieldBorder;
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
{
playfieldBorder = new PlayfieldBorder
{
RelativeSizeAxes = Axes.Both,
Depth = 3
},
spinnerProxies = new ProxyContainer
{
RelativeSizeAxes = Axes.Both
},
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 ProxyContainer
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
}
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
showPlayfieldBorder = config.GetBindable<bool>(OsuSetting.ShowPlayfieldBorder);
showPlayfieldBorder.BindValueChanged(updateBorderVisibility, true);
}
private void updateBorderVisibility(ValueChangedEvent<bool> settingChange)
=> playfieldBorder.State.Value = settingChange.NewValue ? Visibility.Visible : Visibility.Hidden;
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 =>
{
if (d is DrawableSpinner)
spinnerProxies.Add(d.CreateProxy());
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;
DrawableOsuJudgement explosion = poolDictionary[result.Type].Get(doj => doj.Apply(result, judgedObject));
2018-04-13 17:19:50 +08:00
judgementLayer.Add(explosion);
}
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => HitObjectContainer.ReceivePositionalInputAt(screenSpacePos);
private class ProxyContainer : LifetimeManagementContainer
{
public void Add(Drawable proxy) => AddInternal(proxy);
}
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
}
}