2020-11-05 18:47:23 +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.
2020-11-10 19:16:52 +08:00
using osu.Framework.Bindables ;
2020-11-05 18:47:23 +08:00
using osu.Framework.Graphics.Performance ;
2020-11-10 19:16:52 +08:00
using osu.Game.Rulesets.Judgements ;
2020-11-05 18:47:23 +08:00
using osu.Game.Rulesets.Objects.Drawables ;
namespace osu.Game.Rulesets.Objects
{
/// <summary>
/// A <see cref="LifetimeEntry"/> that stores the lifetime for a <see cref="HitObject"/>.
/// </summary>
public class HitObjectLifetimeEntry : LifetimeEntry
{
/// <summary>
/// The <see cref="HitObject"/>.
/// </summary>
public readonly HitObject HitObject ;
2020-11-10 19:16:52 +08:00
/// <summary>
/// The result that <see cref="HitObject"/> was judged with.
/// This is set by the accompanying <see cref="DrawableHitObject"/>, and reused when required for rewinding.
/// </summary>
internal JudgementResult Result ;
private readonly IBindable < double > startTimeBindable = new BindableDouble ( ) ;
2020-11-05 18:47:23 +08:00
/// <summary>
/// Creates a new <see cref="HitObjectLifetimeEntry"/>.
/// </summary>
/// <param name="hitObject">The <see cref="HitObject"/> to store the lifetime of.</param>
public HitObjectLifetimeEntry ( HitObject hitObject )
{
HitObject = hitObject ;
2020-11-10 19:16:52 +08:00
startTimeBindable . BindTo ( HitObject . StartTimeBindable ) ;
startTimeBindable . BindValueChanged ( onStartTimeChanged , true ) ;
2020-11-05 18:47:23 +08:00
}
2021-04-27 14:23:33 +08:00
// The lifetime, as set by the hitobject.
2020-11-05 18:47:23 +08:00
private double realLifetimeStart = double . MinValue ;
private double realLifetimeEnd = double . MaxValue ;
2021-04-27 16:54:18 +08:00
// This method is called even if `start == LifetimeStart` when `KeepAlive` is true (necessary to update `realLifetimeStart`).
protected override void SetLifetimeStart ( double start )
2020-11-05 18:47:23 +08:00
{
2021-04-27 14:23:33 +08:00
realLifetimeStart = start ;
2021-04-27 18:37:01 +08:00
if ( ! keepAlive )
base . SetLifetimeStart ( start ) ;
2021-04-27 16:54:18 +08:00
}
protected override void SetLifetimeEnd ( double end )
{
2021-04-27 14:23:33 +08:00
realLifetimeEnd = end ;
2021-04-27 18:37:01 +08:00
if ( ! keepAlive )
base . SetLifetimeEnd ( end ) ;
2020-11-05 18:47:23 +08:00
}
private bool keepAlive ;
/// <summary>
/// Whether the <see cref="HitObject"/> should be kept always alive.
/// </summary>
internal bool KeepAlive
{
set
{
if ( keepAlive = = value )
return ;
keepAlive = value ;
2021-04-27 18:37:01 +08:00
if ( keepAlive )
SetLifetime ( double . MinValue , double . MaxValue ) ;
else
SetLifetime ( realLifetimeStart , realLifetimeEnd ) ;
2020-11-05 18:47:23 +08:00
}
}
/// <summary>
/// A safe offset prior to the start time of <see cref="HitObject"/> at which it may begin displaying contents.
/// By default, <see cref="HitObject"/>s are assumed to display their contents within 10 seconds prior to their start time.
/// </summary>
/// <remarks>
/// This is only used as an optimisation to delay the initial update of the <see cref="HitObject"/> and may be tuned more aggressively if required.
/// It is indirectly used to decide the automatic transform offset provided to <see cref="DrawableHitObject.UpdateInitialTransforms"/>.
2021-04-27 14:23:33 +08:00
/// A more accurate <see cref="LifetimeEntry.LifetimeStart"/> should be set for further optimisation (in <see cref="DrawableHitObject.LoadComplete"/>, for example).
2020-11-05 18:47:23 +08:00
/// </remarks>
protected virtual double InitialLifetimeOffset = > 10000 ;
/// <summary>
2021-04-27 14:23:33 +08:00
/// Resets <see cref="LifetimeEntry.LifetimeStart"/> according to the change in start time of the <see cref="HitObject"/>.
2020-11-05 18:47:23 +08:00
/// </summary>
2020-11-10 19:16:52 +08:00
private void onStartTimeChanged ( ValueChangedEvent < double > startTime ) = > LifetimeStart = HitObject . StartTime - InitialLifetimeOffset ;
2020-11-05 18:47:23 +08:00
}
}