mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
62 lines
1.8 KiB
C#
62 lines
1.8 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.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps.Timing;
|
|
using osu.Game.Rulesets.Scoring;
|
|
using osu.Game.Utils;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class BreakTracker : Component
|
|
{
|
|
private readonly ScoreProcessor scoreProcessor;
|
|
private readonly double gameplayStartTime;
|
|
|
|
private PeriodTracker breaks;
|
|
|
|
/// <summary>
|
|
/// Whether the gameplay is currently in a break.
|
|
/// </summary>
|
|
public IBindable<bool> IsBreakTime => isBreakTime;
|
|
|
|
private readonly BindableBool isBreakTime = new BindableBool(true);
|
|
|
|
public IReadOnlyList<BreakPeriod> Breaks
|
|
{
|
|
set
|
|
{
|
|
breaks = new PeriodTracker(value.Where(b => b.HasEffect)
|
|
.Select(b => new Period(b.StartTime, b.EndTime - BreakOverlay.BREAK_FADE_DURATION)));
|
|
|
|
if (IsLoaded)
|
|
updateBreakTime();
|
|
}
|
|
}
|
|
|
|
public BreakTracker(double gameplayStartTime = 0, ScoreProcessor scoreProcessor = null)
|
|
{
|
|
this.gameplayStartTime = gameplayStartTime;
|
|
this.scoreProcessor = scoreProcessor;
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
updateBreakTime();
|
|
}
|
|
|
|
private void updateBreakTime()
|
|
{
|
|
double time = Clock.CurrentTime;
|
|
|
|
isBreakTime.Value = breaks?.IsInAny(time) == true
|
|
|| time < gameplayStartTime
|
|
|| scoreProcessor?.HasCompleted.Value == true;
|
|
}
|
|
}
|
|
}
|