mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 01:07:24 +08:00
206 lines
7.0 KiB
C#
206 lines
7.0 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.UI;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public class DefaultSongProgress : SongProgress
|
|
{
|
|
private const float bottom_bar_height = 5;
|
|
private const float graph_height = SquareGraph.Column.WIDTH * 6;
|
|
private const float handle_height = 18;
|
|
|
|
private static readonly Vector2 handle_size = new Vector2(10, handle_height);
|
|
|
|
private const float transition_duration = 200;
|
|
|
|
private readonly SongProgressBar bar;
|
|
private readonly SongProgressGraph graph;
|
|
private readonly SongProgressInfo info;
|
|
|
|
/// <summary>
|
|
/// Whether seeking is allowed and the progress bar should be shown.
|
|
/// </summary>
|
|
public readonly Bindable<bool> AllowSeeking = new Bindable<bool>();
|
|
|
|
[SettingSource("Show difficulty graph", "Whether a graph displaying difficulty throughout the beatmap should be shown")]
|
|
public Bindable<bool> ShowGraph { get; } = new BindableBool(true);
|
|
|
|
public override bool HandleNonPositionalInput => AllowSeeking.Value;
|
|
public override bool HandlePositionalInput => AllowSeeking.Value;
|
|
|
|
[Resolved]
|
|
private Player? player { get; set; }
|
|
|
|
[Resolved]
|
|
private DrawableRuleset? drawableRuleset { get; set; }
|
|
|
|
[Resolved]
|
|
private OsuConfigManager config { get; set; } = null!;
|
|
|
|
[Resolved]
|
|
private SkinManager skinManager { get; set; } = null!;
|
|
|
|
public DefaultSongProgress()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Anchor = Anchor.BottomRight;
|
|
Origin = Anchor.BottomRight;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
info = new SongProgressInfo
|
|
{
|
|
Origin = Anchor.BottomLeft,
|
|
Anchor = Anchor.BottomLeft,
|
|
RelativeSizeAxes = Axes.X,
|
|
},
|
|
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),
|
|
},
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(OsuColour colours)
|
|
{
|
|
base.LoadComplete();
|
|
|
|
if (drawableRuleset != null)
|
|
{
|
|
if (player?.Configuration.AllowUserInteraction == true)
|
|
((IBindable<bool>)AllowSeeking).BindTo(drawableRuleset.HasReplayLoaded);
|
|
}
|
|
|
|
graph.FillColour = bar.FillColour = colours.BlueLighter;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
AllowSeeking.BindValueChanged(_ => updateBarVisibility(), true);
|
|
ShowGraph.BindValueChanged(_ => updateGraphVisibility(), true);
|
|
|
|
migrateSettingFromConfig();
|
|
}
|
|
|
|
/// <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...
|
|
var skinnableTarget = this.FindClosestParent<ISkinnableTarget>();
|
|
|
|
if (skinnableTarget != null)
|
|
{
|
|
// 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;
|
|
|
|
// 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);
|
|
});
|
|
|
|
configShowGraph.SetDefault();
|
|
}
|
|
}
|
|
}
|
|
|
|
protected override void PopIn()
|
|
{
|
|
this.FadeIn(500, Easing.OutQuint);
|
|
}
|
|
|
|
protected override void PopOut()
|
|
{
|
|
this.FadeOut(100);
|
|
}
|
|
|
|
protected override void UpdateObjects(IEnumerable<HitObject> objects)
|
|
{
|
|
graph.Objects = objects;
|
|
|
|
info.StartTime = FirstHitTime;
|
|
info.EndTime = LastHitTime;
|
|
bar.StartTime = FirstHitTime;
|
|
bar.EndTime = LastHitTime;
|
|
}
|
|
|
|
protected override void UpdateProgress(double progress, bool isIntro)
|
|
{
|
|
bar.CurrentTime = GameplayClock.CurrentTime;
|
|
|
|
if (isIntro)
|
|
graph.Progress = 0;
|
|
else
|
|
graph.Progress = (int)(graph.ColumnCount * progress);
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
Height = bottom_bar_height + graph_height + handle_size.Y + info.Height - graph.Y;
|
|
}
|
|
|
|
private void updateBarVisibility()
|
|
{
|
|
bar.ShowHandle = AllowSeeking.Value;
|
|
|
|
updateInfoMargin();
|
|
}
|
|
|
|
private void updateGraphVisibility()
|
|
{
|
|
float barHeight = bottom_bar_height + handle_size.Y;
|
|
|
|
bar.ResizeHeightTo(ShowGraph.Value ? barHeight + graph_height : barHeight, transition_duration, Easing.In);
|
|
graph.FadeTo(ShowGraph.Value ? 1 : 0, transition_duration, Easing.In);
|
|
|
|
updateInfoMargin();
|
|
}
|
|
|
|
private void updateInfoMargin()
|
|
{
|
|
float finalMargin = bottom_bar_height + (AllowSeeking.Value ? handle_size.Y : 0) + (ShowGraph.Value ? graph_height : 0);
|
|
info.TransformTo(nameof(info.Margin), new MarginPadding { Bottom = finalMargin }, transition_duration, Easing.In);
|
|
}
|
|
}
|
|
}
|