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

128 lines
3.7 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-03-23 17:37:12 +08:00
using System;
using System.Collections.Generic;
using osu.Game.Graphics;
using osu.Framework.Allocation;
using System.Linq;
using osu.Framework.Timing;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
2017-04-18 17:10:01 +08:00
using osu.Framework.Graphics.Primitives;
namespace osu.Game.Screens.Play
{
public class SongProgress : OverlayContainer
{
2017-04-18 17:29:24 +08:00
private const int bottom_bar_height = 5;
2017-04-07 14:20:39 +08:00
2017-04-14 14:27:24 +08:00
protected override bool HideOnEscape => false;
2017-04-07 14:20:39 +08:00
private static readonly Vector2 handle_size = new Vector2(14, 25);
private const float transition_duration = 200;
2017-03-24 11:41:56 +08:00
private readonly SongProgressBar bar;
private readonly SongProgressGraph graph;
2017-03-23 17:37:12 +08:00
public Action<double> OnSeek;
public IClock AudioClock;
private double lastHitTime => ((objects.Last() as IHasEndTime)?.EndTime ?? objects.Last().StartTime) + 1;
private IEnumerable<HitObject> objects;
public IEnumerable<HitObject> Objects
{
set
{
graph.Objects = objects = value;
}
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
graph.FillColour = bar.FillColour = colours.BlueLighter;
}
public SongProgress()
{
const float graph_height = SquareGraph.Column.WIDTH * 6;
Height = bottom_bar_height + graph_height + handle_size.Y;
2017-04-18 17:29:24 +08:00
Y = bottom_bar_height;
Children = new Drawable[]
{
graph = new SongProgressGraph
{
RelativeSizeAxes = Axes.X,
2017-03-23 19:13:03 +08:00
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
Height = graph_height,
2017-04-18 17:29:24 +08:00
Margin = new MarginPadding { Bottom = bottom_bar_height },
},
bar = new SongProgressBar(bottom_bar_height, graph_height, handle_size)
{
Alpha = 0,
2017-03-23 19:13:03 +08:00
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
SeekRequested = delegate (float position)
{
2017-04-07 14:20:39 +08:00
OnSeek?.Invoke(position);
2017-03-23 19:13:03 +08:00
},
},
};
}
2017-03-23 17:37:12 +08:00
protected override void LoadComplete()
{
State = Visibility.Visible;
}
private bool barVisible;
public void ToggleBar()
2017-03-23 17:37:12 +08:00
{
barVisible = !barVisible;
updateBarVisibility();
}
private void updateBarVisibility()
{
bar.FadeTo(barVisible ? 1 : 0, transition_duration, EasingTypes.In);
2017-04-18 17:29:24 +08:00
MoveTo(new Vector2(0, barVisible ? 0 : bottom_bar_height), transition_duration, EasingTypes.In);
}
protected override void PopIn()
{
updateBarVisibility();
2017-04-14 14:27:24 +08:00
FadeIn(500, EasingTypes.OutQuint);
2017-03-23 17:37:12 +08:00
}
protected override void PopOut()
{
FadeOut(100);
2017-03-23 17:37:12 +08:00
}
2017-04-07 14:20:39 +08:00
protected override void Update()
{
base.Update();
if (objects == null)
return;
double progress = (AudioClock?.CurrentTime ?? Time.Current) / lastHitTime;
bar.UpdatePosition((float)progress);
graph.Progress = (int)(graph.ColumnCount * progress);
2017-04-07 14:20:39 +08:00
}
}
}