mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
193 lines
6.7 KiB
C#
193 lines
6.7 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Performance;
|
|
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.UI
|
|
{
|
|
public class HitObjectContainer : LifetimeManagementContainer
|
|
{
|
|
/// <summary>
|
|
/// All currently in-use <see cref="DrawableHitObject"/>s.
|
|
/// </summary>
|
|
public IEnumerable<DrawableHitObject> Objects => InternalChildren.Cast<DrawableHitObject>().OrderBy(h => h.HitObject.StartTime);
|
|
|
|
/// <summary>
|
|
/// All currently in-use <see cref="DrawableHitObject"/>s that are alive.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If this <see cref="HitObjectContainer"/> uses pooled objects, this is equivalent to <see cref="Objects"/>.
|
|
/// </remarks>
|
|
public IEnumerable<DrawableHitObject> AliveObjects => AliveInternalChildren.Cast<DrawableHitObject>().OrderBy(h => h.HitObject.StartTime);
|
|
|
|
/// <summary>
|
|
/// Invoked when a <see cref="DrawableHitObject"/> is judged.
|
|
/// </summary>
|
|
public event Action<DrawableHitObject, JudgementResult> NewResult;
|
|
|
|
/// <summary>
|
|
/// Invoked when a <see cref="DrawableHitObject"/> judgement is reverted.
|
|
/// </summary>
|
|
public event Action<DrawableHitObject, JudgementResult> RevertResult;
|
|
|
|
private readonly Dictionary<DrawableHitObject, IBindable> startTimeMap = new Dictionary<DrawableHitObject, IBindable>();
|
|
private readonly Dictionary<HitObjectLifetimeEntry, DrawableHitObject> drawableMap = new Dictionary<HitObjectLifetimeEntry, DrawableHitObject>();
|
|
private readonly LifetimeEntryManager lifetimeManager = new LifetimeEntryManager();
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
private DrawableRuleset drawableRuleset { get; set; }
|
|
|
|
public HitObjectContainer()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
lifetimeManager.EntryBecameAlive += entryBecameAlive;
|
|
lifetimeManager.EntryBecameDead += entryBecameDead;
|
|
}
|
|
|
|
#region Pooling support
|
|
|
|
public void Add(HitObjectLifetimeEntry entry) => lifetimeManager.AddEntry(entry);
|
|
|
|
public bool Remove(HitObjectLifetimeEntry entry) => lifetimeManager.RemoveEntry(entry);
|
|
|
|
private void entryBecameAlive(LifetimeEntry entry) => addDrawable((HitObjectLifetimeEntry)entry);
|
|
|
|
private void entryBecameDead(LifetimeEntry entry) => removeDrawable((HitObjectLifetimeEntry)entry);
|
|
|
|
private void addDrawable(HitObjectLifetimeEntry entry)
|
|
{
|
|
Debug.Assert(!drawableMap.ContainsKey(entry));
|
|
|
|
var drawable = drawableRuleset.GetDrawableRepresentation(entry.HitObject);
|
|
drawable.OnNewResult += onNewResult;
|
|
drawable.OnRevertResult += onRevertResult;
|
|
|
|
bindStartTime(drawable);
|
|
AddInternal(drawableMap[entry] = drawable, false);
|
|
}
|
|
|
|
private void removeDrawable(HitObjectLifetimeEntry entry)
|
|
{
|
|
Debug.Assert(drawableMap.ContainsKey(entry));
|
|
|
|
var drawable = drawableMap[entry];
|
|
drawable.OnNewResult -= onNewResult;
|
|
drawable.OnRevertResult -= onRevertResult;
|
|
drawable.OnKilled();
|
|
|
|
drawableMap.Remove(entry);
|
|
|
|
unbindStartTime(drawable);
|
|
RemoveInternal(drawable);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Non-pooling support
|
|
|
|
public virtual void Add(DrawableHitObject hitObject)
|
|
{
|
|
bindStartTime(hitObject);
|
|
AddInternal(hitObject);
|
|
|
|
hitObject.OnNewResult += onNewResult;
|
|
hitObject.OnRevertResult += onRevertResult;
|
|
}
|
|
|
|
public virtual bool Remove(DrawableHitObject hitObject)
|
|
{
|
|
if (!RemoveInternal(hitObject))
|
|
return false;
|
|
|
|
hitObject.OnNewResult -= onNewResult;
|
|
hitObject.OnRevertResult -= onRevertResult;
|
|
|
|
unbindStartTime(hitObject);
|
|
|
|
return true;
|
|
}
|
|
|
|
public int IndexOf(DrawableHitObject hitObject) => IndexOfInternal(hitObject);
|
|
|
|
protected override void OnChildLifetimeBoundaryCrossed(LifetimeBoundaryCrossedEvent e)
|
|
{
|
|
if (!(e.Child is DrawableHitObject hitObject))
|
|
return;
|
|
|
|
if ((e.Kind == LifetimeBoundaryKind.End && e.Direction == LifetimeBoundaryCrossingDirection.Forward)
|
|
|| (e.Kind == LifetimeBoundaryKind.Start && e.Direction == LifetimeBoundaryCrossingDirection.Backward))
|
|
{
|
|
hitObject.OnKilled();
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
public virtual void Clear(bool disposeChildren = true)
|
|
{
|
|
lifetimeManager.ClearEntries();
|
|
|
|
ClearInternal(disposeChildren);
|
|
unbindAllStartTimes();
|
|
}
|
|
|
|
protected override bool CheckChildrenLife() => base.CheckChildrenLife() | lifetimeManager.Update(Time.Current, Time.Current);
|
|
|
|
private void onNewResult(DrawableHitObject d, JudgementResult r) => NewResult?.Invoke(d, r);
|
|
private void onRevertResult(DrawableHitObject d, JudgementResult r) => RevertResult?.Invoke(d, r);
|
|
|
|
#region Comparator + StartTime tracking
|
|
|
|
private void bindStartTime(DrawableHitObject hitObject)
|
|
{
|
|
var bindable = hitObject.StartTimeBindable.GetBoundCopy();
|
|
bindable.BindValueChanged(_ => SortInternal());
|
|
|
|
startTimeMap[hitObject] = bindable;
|
|
}
|
|
|
|
private void unbindStartTime(DrawableHitObject hitObject)
|
|
{
|
|
startTimeMap[hitObject].UnbindAll();
|
|
startTimeMap.Remove(hitObject);
|
|
}
|
|
|
|
private void unbindAllStartTimes()
|
|
{
|
|
foreach (var kvp in startTimeMap)
|
|
kvp.Value.UnbindAll();
|
|
startTimeMap.Clear();
|
|
}
|
|
|
|
protected override int Compare(Drawable x, Drawable y)
|
|
{
|
|
if (!(x is DrawableHitObject xObj) || !(y is DrawableHitObject yObj))
|
|
return base.Compare(x, y);
|
|
|
|
// Put earlier hitobjects towards the end of the list, so they handle input first
|
|
int i = yObj.HitObject.StartTime.CompareTo(xObj.HitObject.StartTime);
|
|
return i == 0 ? CompareReverseChildID(x, y) : i;
|
|
}
|
|
|
|
#endregion
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
{
|
|
base.Dispose(isDisposing);
|
|
unbindAllStartTimes();
|
|
}
|
|
}
|
|
}
|