1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Screens/Play/BreakOverlay.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

158 lines
5.3 KiB
C#
Raw Normal View History

// 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
using System.Collections.Generic;
2017-09-21 03:33:07 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
2017-09-21 03:33:07 +08:00
using osu.Game.Beatmaps.Timing;
2017-09-23 21:42:18 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Screens.Play.Break;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play
2017-09-21 03:33:07 +08:00
{
public class BreakOverlay : Container
{
/// <summary>
/// The duration of the break overlay fading.
/// </summary>
public const double BREAK_FADE_DURATION = BreakPeriod.MIN_BREAK_DURATION / 2;
2017-09-23 01:43:51 +08:00
private const float remaining_time_container_max_size = 0.3f;
2017-09-21 06:44:30 +08:00
private const int vertical_margin = 25;
2018-04-13 17:19:50 +08:00
private readonly Container fadeContainer;
2018-04-13 17:19:50 +08:00
private IReadOnlyList<BreakPeriod> breaks;
public IReadOnlyList<BreakPeriod> Breaks
{
get => breaks;
set
{
breaks = value;
if (IsLoaded)
initializeBreaks();
}
}
2018-04-13 17:19:50 +08:00
public override bool RemoveCompletedTransforms => false;
2018-04-13 17:19:50 +08:00
2017-10-06 09:49:16 +08:00
private readonly Container remainingTimeAdjustmentBox;
2017-09-21 03:33:07 +08:00
private readonly Container remainingTimeBox;
private readonly RemainingTimeCounter remainingTimeCounter;
private readonly BreakArrows breakArrows;
2018-04-13 17:19:50 +08:00
2020-03-28 11:18:28 +08:00
public BreakOverlay(bool letterboxing, ScoreProcessor scoreProcessor)
2017-09-21 03:33:07 +08:00
{
RelativeSizeAxes = Axes.Both;
BreakInfo info;
Child = fadeContainer = new Container
2017-09-21 03:33:07 +08:00
{
Alpha = 0,
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
2017-09-21 03:33:07 +08:00
{
new LetterboxOverlay
2017-10-06 09:49:16 +08:00
{
Alpha = letterboxing ? 1 : 0,
2017-10-06 09:49:16 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
remainingTimeAdjustmentBox = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AutoSizeAxes = Axes.Y,
2017-10-06 09:49:16 +08:00
RelativeSizeAxes = Axes.X,
Width = 0,
Child = remainingTimeBox = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.X,
Height = 8,
CornerRadius = 4,
Masking = true,
Child = new Box { RelativeSizeAxes = Axes.Both }
}
},
remainingTimeCounter = new RemainingTimeCounter
{
Anchor = Anchor.Centre,
Origin = Anchor.BottomCentre,
Margin = new MarginPadding { Bottom = vertical_margin },
},
info = new BreakInfo
{
Anchor = Anchor.Centre,
Origin = Anchor.TopCentre,
Margin = new MarginPadding { Top = vertical_margin },
},
breakArrows = new BreakArrows
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-10-06 09:49:16 +08:00
}
2017-09-21 03:33:07 +08:00
}
};
if (scoreProcessor != null)
{
info.AccuracyDisplay.Current.BindTo(scoreProcessor.Accuracy);
info.GradeDisplay.Current.BindTo(scoreProcessor.Rank);
}
2017-09-21 03:33:07 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
initializeBreaks();
}
2018-04-13 17:19:50 +08:00
private void initializeBreaks()
2017-09-21 03:33:07 +08:00
{
FinishTransforms(true);
2017-10-02 13:51:00 +08:00
Scheduler.CancelDelayedTasks();
2018-04-13 17:19:50 +08:00
2020-05-05 09:31:11 +08:00
if (breaks == null) return; // we need breaks.
2018-04-13 17:19:50 +08:00
foreach (var b in breaks)
2017-09-21 03:33:07 +08:00
{
2017-09-22 03:54:46 +08:00
if (!b.HasEffect)
continue;
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginAbsoluteSequence(b.StartTime))
{
fadeContainer.FadeIn(BREAK_FADE_DURATION);
breakArrows.Show(BREAK_FADE_DURATION);
2018-04-13 17:19:50 +08:00
remainingTimeAdjustmentBox
.ResizeWidthTo(remaining_time_container_max_size, BREAK_FADE_DURATION, Easing.OutQuint)
.Delay(b.Duration - BREAK_FADE_DURATION)
.ResizeWidthTo(0);
2018-04-13 17:19:50 +08:00
remainingTimeBox
.ResizeWidthTo(0, b.Duration - BREAK_FADE_DURATION)
.Then()
.ResizeWidthTo(1);
2018-04-13 17:19:50 +08:00
remainingTimeCounter.CountTo(b.Duration).CountTo(0, b.Duration);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(b.Duration - BREAK_FADE_DURATION))
{
fadeContainer.FadeOut(BREAK_FADE_DURATION);
breakArrows.Hide(BREAK_FADE_DURATION);
}
2017-09-21 03:33:07 +08:00
}
}
}
}
}