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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-03-07 18:14:42 +08:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-03-07 18:14:42 +08:00
|
|
|
|
namespace osu.Game.Rulesets.UI
|
|
|
|
|
{
|
|
|
|
|
public partial class JudgementContainer<T> : Container<T>
|
|
|
|
|
where T : DrawableJudgement
|
|
|
|
|
{
|
|
|
|
|
public override void Add(T judgement)
|
|
|
|
|
{
|
2022-12-23 04:27:59 +08:00
|
|
|
|
ArgumentNullException.ThrowIfNull(judgement);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-03-07 18:14:42 +08:00
|
|
|
|
// remove any existing judgements for the judged object.
|
|
|
|
|
// this can be the case when rewinding.
|
2022-08-26 14:19:05 +08:00
|
|
|
|
RemoveAll(c => c.JudgedObject == judgement.JudgedObject, false);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-03-07 18:14:42 +08:00
|
|
|
|
base.Add(judgement);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|