1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 17:07:38 +08:00
osu-lazer/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs

210 lines
8.0 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;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
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.Configuration;
2020-11-10 23:22:06 +08:00
using osu.Game.Rulesets.Osu.Objects;
2018-04-13 17:19:50 +08:00
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;
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
{
2020-11-10 23:22:06 +08:00
public readonly Func<DrawableHitObject, double, bool> CheckHittable;
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();
2020-10-20 12:59:03 +08:00
private readonly Bindable<bool> playfieldBorderStyle = new BindableBool();
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-11-10 23:22:06 +08:00
CheckHittable = hitPolicy.IsHittable;
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);
2020-11-10 23:22:06 +08:00
NewResult += onNewResult;
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader(true)]
private void load(OsuRulesetConfigManager config)
{
2020-10-20 12:59:03 +08:00
config?.BindWith(OsuRulesetSetting.PlayfieldBorderStyle, playfieldBorder.PlayfieldBorderStyle);
2020-11-14 00:03:23 +08:00
registerPool<HitCircle, DrawableHitCircle>(10, 100);
registerPool<Slider, DrawableSlider>(10, 100);
registerPool<SliderHeadCircle, DrawableSliderHead>(10, 100);
registerPool<SliderTailCircle, DrawableSliderTail>(10, 100);
registerPool<SliderTick, DrawableSliderTick>(10, 100);
registerPool<SliderRepeat, DrawableSliderRepeat>(5, 50);
registerPool<Spinner, DrawableSpinner>(2, 20);
registerPool<SpinnerTick, DrawableSpinnerTick>(10, 100);
registerPool<SpinnerBonusTick, DrawableSpinnerBonusTick>(10, 100);
}
2020-11-14 00:03:23 +08:00
private void registerPool<TObject, TDrawable>(int initialSize, int? maximumSize = null)
where TObject : HitObject
where TDrawable : DrawableHitObject, new()
=> RegisterPool<TObject, TDrawable>(CreatePool<TDrawable>(initialSize, maximumSize));
protected virtual DrawablePool<TDrawable> CreatePool<TDrawable>(int initialSize, int? maximumSize = null)
where TDrawable : DrawableHitObject, new()
2020-11-14 17:05:30 +08:00
=> new DrawableOsuPool<TDrawable>(CheckHittable, OnHitObjectLoaded, initialSize, maximumSize);
2020-11-14 00:03:23 +08:00
protected override HitObjectLifetimeEntry CreateLifetimeEntry(HitObject hitObject) => new OsuHitObjectLifetimeEntry(hitObject);
2020-11-10 23:22:06 +08:00
protected override void OnHitObjectAdded(HitObject hitObject)
2018-04-13 17:19:50 +08:00
{
2020-11-10 23:22:06 +08:00
base.OnHitObjectAdded(hitObject);
followPoints.AddFollowPoints((OsuHitObject)hitObject);
2018-04-13 17:19:50 +08:00
}
2020-11-10 23:22:06 +08:00
protected override void OnHitObjectRemoved(HitObject hitObject)
2018-04-13 17:19:50 +08:00
{
2020-11-10 23:22:06 +08:00
base.OnHitObjectRemoved(hitObject);
followPoints.RemoveFollowPoints((OsuHitObject)hitObject);
}
2020-11-10 23:22:06 +08:00
public void OnHitObjectLoaded(Drawable drawable)
{
switch (drawable)
{
case DrawableSliderHead _:
case DrawableSliderTail _:
case DrawableSliderTick _:
case DrawableSliderRepeat _:
case DrawableSpinnerTick _:
break;
case DrawableSpinner _:
spinnerProxies.Add(drawable.CreateProxy());
break;
case IDrawableHitObjectWithProxiedApproach approach:
approachCircles.Add(approach.ProxiedLayer.CreateProxy());
break;
}
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;
}
}
2020-11-14 00:03:23 +08:00
private class OsuHitObjectLifetimeEntry : HitObjectLifetimeEntry
{
public OsuHitObjectLifetimeEntry(HitObject hitObject)
: base(hitObject)
{
}
protected override double InitialLifetimeOffset => ((OsuHitObject)HitObject).TimePreempt;
}
2018-04-13 17:19:50 +08:00
}
}