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

188 lines
7.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.Diagnostics;
2020-07-06 11:54:39 +08:00
using System.Linq;
using osu.Framework.Allocation;
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 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-07-06 11:54:39 +08:00
private readonly IDictionary<HitResult, DrawablePool<DrawableOsuJudgement>> poolDictionary = new Dictionary<HitResult, DrawablePool<DrawableOsuJudgement>>();
private readonly Container judgementAboveHitObjectLayer;
2018-04-13 17:19:50 +08:00
public OsuPlayfield()
{
InternalChildren = new Drawable[]
2018-04-13 17:19:50 +08:00
{
2020-11-20 14:11:24 +08:00
playfieldBorder = new PlayfieldBorder { RelativeSizeAxes = Axes.Both },
spinnerProxies = new ProxyContainer { RelativeSizeAxes = Axes.Both },
followPoints = new FollowPointRenderer { RelativeSizeAxes = Axes.Both },
judgementLayer = new JudgementContainer<DrawableOsuJudgement> { RelativeSizeAxes = Axes.Both },
HitObjectContainer,
judgementAboveHitObjectLayer = new Container { RelativeSizeAxes = Axes.Both },
2020-11-20 14:11:24 +08:00
approachCircles = new ProxyContainer { RelativeSizeAxes = Axes.Both },
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, onJudgmentLoaded));
2020-07-06 11:54:39 +08:00
AddRangeInternal(poolDictionary.Values);
2020-11-10 23:22:06 +08:00
NewResult += onNewResult;
}
2020-11-21 14:20:33 +08:00
protected override void OnNewDrawableHitObject(DrawableHitObject drawable)
{
((DrawableOsuHitObject)drawable).CheckHittable = CheckHittable;
2020-11-20 17:42:48 +08:00
Debug.Assert(!drawable.IsLoaded, $"Already loaded {nameof(DrawableHitObject)} is added to {nameof(OsuPlayfield)}");
drawable.OnLoadComplete += onDrawableHitObjectLoaded;
}
private void onDrawableHitObjectLoaded(Drawable drawable)
{
// note: `Slider`'s `ProxiedLayer` is added when its nested `DrawableHitCircle` is loaded.
2020-11-20 17:42:48 +08:00
switch (drawable)
{
case DrawableSpinner _:
spinnerProxies.Add(drawable.CreateProxy());
2020-11-20 17:42:48 +08:00
break;
case DrawableHitCircle hitCircle:
approachCircles.Add(hitCircle.ProxiedLayer.CreateProxy());
2020-11-20 17:42:48 +08:00
break;
}
2018-04-13 17:19:50 +08:00
}
private void onJudgmentLoaded(DrawableOsuJudgement judgement)
{
judgementAboveHitObjectLayer.Add(judgement.GetProxyAboveHitObjectsContent());
}
[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);
2020-11-14 00:03:23 +08:00
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);
2020-11-14 00:03:23 +08:00
RegisterPool<Spinner, DrawableSpinner>(2, 20);
RegisterPool<SpinnerTick, DrawableSpinnerTick>(10, 100);
RegisterPool<SpinnerBonusTick, DrawableSpinnerBonusTick>(10, 100);
}
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);
}
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;
private readonly Action<DrawableOsuJudgement> onLoaded;
2020-07-06 11:54:39 +08:00
public DrawableJudgementPool(HitResult result, Action<DrawableOsuJudgement> onLoaded)
2020-07-06 11:54:39 +08:00
: base(10)
{
this.result = result;
this.onLoaded = onLoaded;
2020-07-06 11:54:39 +08:00
}
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
onLoaded?.Invoke(judgement);
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
}
}