2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2017-03-23 09:37:12 +00:00
|
|
|
|
using System;
|
2017-04-14 08:58:30 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2022-04-27 09:10:58 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 10:04:31 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-04-27 09:10:58 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-05-09 09:06:11 +00:00
|
|
|
|
using osu.Framework.Timing;
|
2019-07-04 09:59:38 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2022-04-27 09:10:58 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-01-17 08:37:14 +00:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2021-05-17 09:26:15 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2022-04-27 09:10:58 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-02 11:20:27 +00:00
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
2021-05-17 09:26:15 +00:00
|
|
|
|
public class SongProgress : OverlayContainer, ISkinnableDrawable
|
2017-03-02 11:20:27 +00:00
|
|
|
|
{
|
2021-05-18 06:50:40 +00:00
|
|
|
|
public const float MAX_HEIGHT = info_height + bottom_bar_height + graph_height + handle_height;
|
|
|
|
|
|
|
|
|
|
private const float info_height = 20;
|
|
|
|
|
private const float bottom_bar_height = 5;
|
2019-07-04 09:59:38 +00:00
|
|
|
|
private const float graph_height = SquareGraph.Column.WIDTH * 6;
|
2021-05-18 06:50:40 +00:00
|
|
|
|
private const float handle_height = 18;
|
|
|
|
|
|
|
|
|
|
private static readonly Vector2 handle_size = new Vector2(10, handle_height);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-23 10:15:53 +00:00
|
|
|
|
private const float transition_duration = 200;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-24 03:41:56 +00:00
|
|
|
|
private readonly SongProgressBar bar;
|
|
|
|
|
private readonly SongProgressGraph graph;
|
2017-04-28 01:56:34 +00:00
|
|
|
|
private readonly SongProgressInfo info;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-05 04:26:54 +00:00
|
|
|
|
public Action<double> RequestSeek;
|
2019-07-05 06:48:40 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether seeking is allowed and the progress bar should be shown.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public readonly Bindable<bool> AllowSeeking = new Bindable<bool>();
|
|
|
|
|
|
2022-04-29 02:56:46 +00:00
|
|
|
|
[SettingSource("Show difficulty graph", "Whether a graph displaying difficulty throughout the beatmap should be shown")]
|
2022-03-20 20:36:18 +00:00
|
|
|
|
public Bindable<bool> ShowGraph { get; } = new BindableBool(true);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-07-05 06:48:40 +00:00
|
|
|
|
public override bool HandleNonPositionalInput => AllowSeeking.Value;
|
|
|
|
|
public override bool HandlePositionalInput => AllowSeeking.Value;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-04-12 07:41:36 +00:00
|
|
|
|
protected override bool BlockScrollInput => false;
|
|
|
|
|
|
2017-04-26 09:17:17 +00:00
|
|
|
|
private double firstHitTime => objects.First().StartTime;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-05-17 09:26:15 +00:00
|
|
|
|
//TODO: this isn't always correct (consider mania where a non-last object may last for longer than the last in the list).
|
|
|
|
|
private double lastHitTime => objects.Last().GetEndTime() + 1;
|
|
|
|
|
|
2017-04-14 09:23:34 +00:00
|
|
|
|
private IEnumerable<HitObject> objects;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-14 08:58:30 +00:00
|
|
|
|
public IEnumerable<HitObject> Objects
|
2017-03-02 11:20:27 +00:00
|
|
|
|
{
|
2017-04-14 08:58:30 +00:00
|
|
|
|
set
|
|
|
|
|
{
|
2017-04-18 09:40:02 +00:00
|
|
|
|
graph.Objects = objects = value;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-05-09 03:05:37 +00:00
|
|
|
|
info.StartTime = firstHitTime;
|
|
|
|
|
info.EndTime = lastHitTime;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-06-22 16:42:29 +00:00
|
|
|
|
bar.StartTime = firstHitTime;
|
|
|
|
|
bar.EndTime = lastHitTime;
|
2017-04-14 08:58:30 +00:00
|
|
|
|
}
|
2017-03-02 11:20:27 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-05-17 09:41:56 +00:00
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
|
private Player player { get; set; }
|
|
|
|
|
|
2022-03-17 06:05:51 +00:00
|
|
|
|
[Resolved]
|
2021-05-17 09:41:56 +00:00
|
|
|
|
private GameplayClock gameplayClock { get; set; }
|
|
|
|
|
|
2022-03-17 09:45:35 +00:00
|
|
|
|
[Resolved(canBeNull: true)]
|
2022-03-17 06:05:51 +00:00
|
|
|
|
private DrawableRuleset drawableRuleset { get; set; }
|
|
|
|
|
|
2021-05-17 09:41:56 +00:00
|
|
|
|
private IClock referenceClock;
|
2019-05-09 09:06:11 +00:00
|
|
|
|
|
2021-06-08 12:22:35 +00:00
|
|
|
|
public bool UsesFixedAnchor { get; set; }
|
2021-06-07 03:47:47 +00:00
|
|
|
|
|
2017-03-02 11:20:27 +00:00
|
|
|
|
public SongProgress()
|
|
|
|
|
{
|
2021-05-17 09:26:15 +00:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Anchor = Anchor.BottomRight;
|
|
|
|
|
Origin = Anchor.BottomRight;
|
|
|
|
|
|
2017-03-02 11:20:27 +00:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2021-05-17 09:55:18 +00:00
|
|
|
|
info = new SongProgressInfo
|
2017-03-02 11:20:27 +00:00
|
|
|
|
{
|
2021-05-17 09:55:18 +00:00
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = info_height,
|
|
|
|
|
},
|
|
|
|
|
graph = new SongProgressGraph
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Height = graph_height,
|
|
|
|
|
Margin = new MarginPadding { Bottom = bottom_bar_height },
|
|
|
|
|
},
|
|
|
|
|
bar = new SongProgressBar(bottom_bar_height, graph_height, handle_size)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
OnSeek = time => player?.Seek(time),
|
2017-03-23 11:13:03 +00:00
|
|
|
|
},
|
2017-02-09 23:08:23 +00:00
|
|
|
|
};
|
2017-03-02 11:20:27 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-07-04 09:59:38 +00:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2022-03-20 20:36:18 +00:00
|
|
|
|
private void load(OsuColour colours)
|
2017-04-14 05:40:52 +00:00
|
|
|
|
{
|
2019-10-28 09:34:58 +00:00
|
|
|
|
base.LoadComplete();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-05-17 09:26:15 +00:00
|
|
|
|
if (drawableRuleset != null)
|
|
|
|
|
{
|
2021-08-16 07:48:40 +00:00
|
|
|
|
if (player?.Configuration.AllowUserInteraction == true)
|
2021-08-16 07:27:19 +00:00
|
|
|
|
((IBindable<bool>)AllowSeeking).BindTo(drawableRuleset.HasReplayLoaded);
|
2021-05-17 09:41:56 +00:00
|
|
|
|
|
|
|
|
|
referenceClock = drawableRuleset.FrameStableClock;
|
2021-05-17 09:26:15 +00:00
|
|
|
|
Objects = drawableRuleset.Objects;
|
|
|
|
|
}
|
2020-01-24 05:21:22 +00:00
|
|
|
|
|
2019-07-04 09:59:38 +00:00
|
|
|
|
graph.FillColour = bar.FillColour = colours.BlueLighter;
|
2018-01-17 08:37:14 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-07-04 09:59:38 +00:00
|
|
|
|
protected override void LoadComplete()
|
2017-03-23 09:37:12 +00:00
|
|
|
|
{
|
2019-07-04 09:59:38 +00:00
|
|
|
|
Show();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-07-05 06:48:40 +00:00
|
|
|
|
AllowSeeking.BindValueChanged(_ => updateBarVisibility(), true);
|
2019-07-05 07:16:50 +00:00
|
|
|
|
ShowGraph.BindValueChanged(_ => updateGraphVisibility(), true);
|
2022-04-27 09:10:58 +00:00
|
|
|
|
|
|
|
|
|
migrateSettingFromConfig();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuConfigManager config { get; set; }
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private SkinManager skinManager { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This setting has been migrated to a per-component level.
|
|
|
|
|
/// Only take the value from the config if it is in a non-default state (then reset it to default so it only applies once).
|
|
|
|
|
///
|
|
|
|
|
/// Can be removed 20221027.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void migrateSettingFromConfig()
|
|
|
|
|
{
|
|
|
|
|
Bindable<bool> configShowGraph = config.GetBindable<bool>(OsuSetting.ShowProgressGraph);
|
|
|
|
|
|
|
|
|
|
if (!configShowGraph.IsDefault)
|
|
|
|
|
{
|
|
|
|
|
ShowGraph.Value = configShowGraph.Value;
|
|
|
|
|
|
|
|
|
|
// This is pretty ugly, but the only way to make this stick...
|
|
|
|
|
if (skinManager != null)
|
|
|
|
|
{
|
|
|
|
|
var skinnableTarget = this.FindClosestParent<ISkinnableTarget>();
|
|
|
|
|
|
|
|
|
|
if (skinnableTarget != null)
|
|
|
|
|
{
|
2022-04-28 05:09:41 +00:00
|
|
|
|
// If the skin is not mutable, a mutable instance will be created, causing this migration logic to run again on the correct skin.
|
|
|
|
|
// Therefore we want to avoid resetting the config value on this invocation.
|
|
|
|
|
if (skinManager.EnsureMutableSkin())
|
|
|
|
|
return;
|
2022-04-27 09:10:58 +00:00
|
|
|
|
|
2022-04-28 05:29:57 +00:00
|
|
|
|
// If `EnsureMutableSkin` actually changed the skin, default layout may take a frame to apply.
|
|
|
|
|
// See `SkinnableTargetComponentsContainer`'s use of ScheduleAfterChildren.
|
|
|
|
|
ScheduleAfterChildren(() =>
|
|
|
|
|
{
|
|
|
|
|
var skin = skinManager.CurrentSkin.Value;
|
|
|
|
|
skin.UpdateDrawableTarget(skinnableTarget);
|
|
|
|
|
|
|
|
|
|
skinManager.Save(skin);
|
|
|
|
|
});
|
2022-04-28 05:09:41 +00:00
|
|
|
|
|
|
|
|
|
configShowGraph.SetDefault();
|
2022-04-27 09:10:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-14 05:40:52 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-14 05:40:52 +00:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
2017-07-22 18:50:25 +00:00
|
|
|
|
this.FadeIn(500, Easing.OutQuint);
|
2017-03-23 09:37:12 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-23 09:37:12 +00:00
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
2017-07-14 16:18:12 +00:00
|
|
|
|
this.FadeOut(100);
|
2017-03-23 09:37:12 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-07 06:20:39 +00:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 09:09:37 +00:00
|
|
|
|
if (objects == null)
|
|
|
|
|
return;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-05-09 09:06:11 +00:00
|
|
|
|
double gameplayTime = gameplayClock?.CurrentTime ?? Time.Current;
|
2021-05-17 09:41:56 +00:00
|
|
|
|
double frameStableTime = referenceClock?.CurrentTime ?? gameplayTime;
|
2019-05-09 09:06:11 +00:00
|
|
|
|
|
|
|
|
|
double progress = Math.Min(1, (frameStableTime - firstHitTime) / (lastHitTime - firstHitTime));
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-05-09 09:06:11 +00:00
|
|
|
|
bar.CurrentTime = gameplayTime;
|
2019-03-05 04:26:54 +00:00
|
|
|
|
graph.Progress = (int)(graph.ColumnCount * progress);
|
2020-10-14 09:15:58 +00:00
|
|
|
|
|
|
|
|
|
Height = bottom_bar_height + graph_height + handle_size.Y + info_height - graph.Y;
|
2017-04-07 06:20:39 +00:00
|
|
|
|
}
|
2019-07-04 09:59:38 +00:00
|
|
|
|
|
|
|
|
|
private void updateBarVisibility()
|
|
|
|
|
{
|
2020-01-24 05:21:22 +00:00
|
|
|
|
bar.ShowHandle = AllowSeeking.Value;
|
2019-07-04 09:59:38 +00:00
|
|
|
|
|
|
|
|
|
updateInfoMargin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateGraphVisibility()
|
|
|
|
|
{
|
|
|
|
|
float barHeight = bottom_bar_height + handle_size.Y;
|
|
|
|
|
|
2019-07-05 07:16:50 +00:00
|
|
|
|
bar.ResizeHeightTo(ShowGraph.Value ? barHeight + graph_height : barHeight, transition_duration, Easing.In);
|
2021-07-30 06:41:01 +00:00
|
|
|
|
graph.FadeTo(ShowGraph.Value ? 1 : 0, transition_duration, Easing.In);
|
2019-07-04 09:59:38 +00:00
|
|
|
|
|
|
|
|
|
updateInfoMargin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateInfoMargin()
|
|
|
|
|
{
|
2019-07-05 07:16:50 +00:00
|
|
|
|
float finalMargin = bottom_bar_height + (AllowSeeking.Value ? handle_size.Y : 0) + (ShowGraph.Value ? graph_height : 0);
|
2019-07-04 09:59:38 +00:00
|
|
|
|
info.TransformTo(nameof(info.Margin), new MarginPadding { Bottom = finalMargin }, transition_duration, Easing.In);
|
|
|
|
|
}
|
2017-03-02 11:20:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|