2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-11-18 13:24:09 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-03-19 15:27:52 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-09-30 11:45:43 +08:00
|
|
|
|
using osu.Game.Extensions;
|
2019-02-12 12:04:46 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2022-05-25 22:17:52 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2022-05-25 22:30:53 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-11-17 17:26:13 +08:00
|
|
|
|
namespace osu.Game.Screens.Edit.Components
|
|
|
|
|
{
|
|
|
|
|
public class TimeInfoContainer : BottomBarContainer
|
|
|
|
|
{
|
2022-05-25 22:17:52 +08:00
|
|
|
|
private OsuSpriteText trackTimer;
|
2022-05-25 22:30:53 +08:00
|
|
|
|
private OsuSpriteText bpm;
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private EditorBeatmap editorBeatmap { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-14 21:14:00 +08:00
|
|
|
|
[Resolved]
|
2020-05-22 15:37:28 +08:00
|
|
|
|
private EditorClock editorClock { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-05-25 22:17:52 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-05-25 22:30:53 +08:00
|
|
|
|
private void load(OsuColour colours, OverlayColourProvider colourProvider)
|
2017-11-18 13:24:09 +08:00
|
|
|
|
{
|
2022-05-25 22:17:52 +08:00
|
|
|
|
Background.Colour = colourProvider.Background5;
|
|
|
|
|
|
2017-11-18 13:24:09 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
trackTimer = new OsuSpriteText
|
|
|
|
|
{
|
2022-05-26 17:12:28 +08:00
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
2022-05-25 22:30:53 +08:00
|
|
|
|
Spacing = new Vector2(-2, 0),
|
|
|
|
|
Font = OsuFont.Torus.With(size: 36, fixedWidth: true, weight: FontWeight.Light),
|
|
|
|
|
Y = -10,
|
|
|
|
|
},
|
|
|
|
|
bpm = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Colour = colours.Orange1,
|
2022-05-26 17:12:28 +08:00
|
|
|
|
Anchor = Anchor.CentreLeft,
|
2022-05-25 22:30:53 +08:00
|
|
|
|
Font = OsuFont.Torus.With(size: 18, weight: FontWeight.SemiBold),
|
2022-05-26 17:12:28 +08:00
|
|
|
|
Position = new Vector2(2, 5),
|
2017-11-18 13:24:09 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-11-18 13:24:09 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2020-09-30 11:45:43 +08:00
|
|
|
|
trackTimer.Text = editorClock.CurrentTime.ToEditorFormattedString();
|
2022-05-25 22:30:53 +08:00
|
|
|
|
bpm.Text = @$"{editorBeatmap.ControlPointInfo.TimingPointAt(editorClock.CurrentTime).BPM:0} BPM";
|
2017-11-18 13:24:09 +08:00
|
|
|
|
}
|
2017-11-17 17:26:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|