2019-01-24 16:43:03 +08:00
|
|
|
|
// 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;
|
2020-11-20 23:27:19 +08:00
|
|
|
|
using System.Diagnostics;
|
2020-07-06 11:54:39 +08:00
|
|
|
|
using System.Linq;
|
2020-11-05 14:41:37 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-07-04 15:45:46 +08:00
|
|
|
|
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;
|
2020-11-05 14:41:37 +08:00
|
|
|
|
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-10-20 02:41:45 +08:00
|
|
|
|
private readonly PlayfieldBorder playfieldBorder;
|
2020-08-05 14:40:45 +08:00
|
|
|
|
private readonly ProxyContainer approachCircles;
|
|
|
|
|
private readonly ProxyContainer spinnerProxies;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly JudgementContainer<DrawableOsuJudgement> judgementLayer;
|
2019-11-01 14:39:23 +08:00
|
|
|
|
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();
|
2019-03-08 13:59:45 +08:00
|
|
|
|
|
2020-07-06 11:54:39 +08:00
|
|
|
|
private readonly IDictionary<HitResult, DrawablePool<DrawableOsuJudgement>> poolDictionary = new Dictionary<HitResult, DrawablePool<DrawableOsuJudgement>>();
|
2020-07-04 15:45:46 +08:00
|
|
|
|
|
2020-11-20 15:14:38 +08:00
|
|
|
|
private readonly Container judgementAboveHitObjectLayer;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public OsuPlayfield()
|
|
|
|
|
{
|
2019-03-26 12:31:49 +08:00
|
|
|
|
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 },
|
2020-11-20 13:57:08 +08:00
|
|
|
|
HitObjectContainer,
|
2020-11-20 15:14:38 +08:00
|
|
|
|
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-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)))
|
2020-11-20 15:14:38 +08:00
|
|
|
|
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-20 16:28:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-21 14:20:33 +08:00
|
|
|
|
protected override void OnNewDrawableHitObject(DrawableHitObject drawable)
|
2020-11-20 16:28:06 +08:00
|
|
|
|
{
|
2020-11-22 17:36:10 +08:00
|
|
|
|
((DrawableOsuHitObject)drawable).CheckHittable = hitPolicy.IsHittable;
|
2020-11-20 17:42:48 +08:00
|
|
|
|
|
2020-11-20 23:27:19 +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 _:
|
2020-11-20 23:27:19 +08:00
|
|
|
|
spinnerProxies.Add(drawable.CreateProxy());
|
2020-11-20 17:42:48 +08:00
|
|
|
|
break;
|
|
|
|
|
|
2020-11-20 23:27:19 +08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2020-11-20 15:14:38 +08:00
|
|
|
|
private void onJudgmentLoaded(DrawableOsuJudgement judgement)
|
|
|
|
|
{
|
|
|
|
|
judgementAboveHitObjectLayer.Add(judgement.GetProxyAboveHitObjectsContent());
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-20 03:00:49 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
|
private void load(OsuRulesetConfigManager config)
|
2020-07-10 20:36:21 +08:00
|
|
|
|
{
|
2020-10-20 12:59:03 +08:00
|
|
|
|
config?.BindWith(OsuRulesetSetting.PlayfieldBorderStyle, playfieldBorder.PlayfieldBorderStyle);
|
2020-11-14 00:03:23 +08:00
|
|
|
|
|
2020-11-20 16:28:06 +08:00
|
|
|
|
RegisterPool<HitCircle, DrawableHitCircle>(10, 100);
|
2020-11-14 00:03:23 +08:00
|
|
|
|
|
2020-11-20 16:28:06 +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
|
|
|
|
|
2020-11-20 16:28:06 +08:00
|
|
|
|
RegisterPool<Spinner, DrawableSpinner>(2, 20);
|
|
|
|
|
RegisterPool<SpinnerTick, DrawableSpinnerTick>(10, 100);
|
|
|
|
|
RegisterPool<SpinnerBonusTick, DrawableSpinnerBonusTick>(10, 100);
|
2020-07-10 20:36:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
2019-11-01 14:39:23 +08:00
|
|
|
|
|
2018-08-06 09:54:16 +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.
|
2020-04-17 12:34:20 +08:00
|
|
|
|
hitPolicy.HandleHit(judgedObject);
|
2020-03-19 18:16:24 +08:00
|
|
|
|
|
2019-02-21 17:56:34 +08:00
|
|
|
|
if (!judgedObject.DisplayResult || !DisplayJudgements.Value)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-07-10 17:35:20 +08:00
|
|
|
|
DrawableOsuJudgement explosion = poolDictionary[result.Type].Get(doj => doj.Apply(result, judgedObject));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
judgementLayer.Add(explosion);
|
|
|
|
|
}
|
2018-11-13 11:52:04 +08:00
|
|
|
|
|
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => HitObjectContainer.ReceivePositionalInputAt(screenSpacePos);
|
2018-12-13 13:55:28 +08:00
|
|
|
|
|
2020-08-05 14:40:45 +08:00
|
|
|
|
private class ProxyContainer : LifetimeManagementContainer
|
2018-12-13 13:55:28 +08:00
|
|
|
|
{
|
2020-08-05 14:40:45 +08:00
|
|
|
|
public void Add(Drawable proxy) => AddInternal(proxy);
|
2018-12-13 13:55:28 +08:00
|
|
|
|
}
|
2020-07-06 11:54:39 +08:00
|
|
|
|
|
|
|
|
|
private class DrawableJudgementPool : DrawablePool<DrawableOsuJudgement>
|
|
|
|
|
{
|
|
|
|
|
private readonly HitResult result;
|
2020-11-20 15:14:38 +08:00
|
|
|
|
private readonly Action<DrawableOsuJudgement> onLoaded;
|
2020-07-06 11:54:39 +08:00
|
|
|
|
|
2020-11-20 15:14:38 +08:00
|
|
|
|
public DrawableJudgementPool(HitResult result, Action<DrawableOsuJudgement> onLoaded)
|
2020-07-06 11:54:39 +08:00
|
|
|
|
: base(10)
|
|
|
|
|
{
|
|
|
|
|
this.result = result;
|
2020-11-20 15:14:38 +08:00
|
|
|
|
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.
|
2020-07-10 17:34:31 +08:00
|
|
|
|
judgement.Apply(new JudgementResult(new HitObject(), new Judgement()) { Type = result }, null);
|
2020-07-06 11:54:39 +08:00
|
|
|
|
|
2020-11-20 15:14:38 +08:00
|
|
|
|
onLoaded?.Invoke(judgement);
|
|
|
|
|
|
2020-07-06 11:54:39 +08:00
|
|
|
|
return judgement;
|
|
|
|
|
}
|
2018-12-13 13:55:28 +08:00
|
|
|
|
}
|
2020-11-14 00:03:23 +08:00
|
|
|
|
|
|
|
|
|
private class OsuHitObjectLifetimeEntry : HitObjectLifetimeEntry
|
|
|
|
|
{
|
|
|
|
|
public OsuHitObjectLifetimeEntry(HitObject hitObject)
|
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
2020-11-30 17:28:04 +08:00
|
|
|
|
// Prevent past objects in idles states from remaining alive as their end times are skipped in non-frame-stable contexts.
|
|
|
|
|
LifetimeEnd = HitObject.GetEndTime() + HitObject.HitWindows.WindowFor(HitResult.Miss);
|
2020-11-14 00:03:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override double InitialLifetimeOffset => ((OsuHitObject)HitObject).TimePreempt;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|