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

88 lines
2.8 KiB
C#
Raw Normal View History

2017-04-28 10:02:25 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
2017-04-28 09:56:34 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using System;
2017-04-28 09:56:34 +08:00
namespace osu.Game.Screens.Play
{
public class SongProgressInfo : Container
{
2017-05-08 05:16:58 +08:00
private OsuSpriteText timeCurrentText;
2017-04-28 21:02:00 +08:00
private OsuSpriteText timeLeft;
2017-05-08 05:16:58 +08:00
private OsuSpriteText progressText;
private int progress;
private double timeCurrent;
2017-04-28 09:56:34 +08:00
private const int margin = 10;
2017-05-08 05:16:58 +08:00
public double TimeCurrent
{
set
{
timeCurrent = value;
if (value > 0)
timeCurrentText.Text = TimeSpan.FromMilliseconds(value).ToString(@"m\:ss");
}
}
2017-05-08 07:00:21 +08:00
public double TimeLeft { set { timeLeft.Text = @"-" + TimeSpan.FromMilliseconds(timeCurrent < 0 ? value + timeCurrent : value).ToString(@"m\:ss"); } }
2017-05-08 05:16:58 +08:00
public int Progress
{
set
{
if (progress == value)
return;
progress = value;
if (value > 0)
progressText.Text = value.ToString() + @"%";
}
}
2017-04-28 09:56:34 +08:00
2017-04-28 21:02:00 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
2017-04-28 09:56:34 +08:00
{
Children = new Drawable[]
{
2017-05-08 05:16:58 +08:00
timeCurrentText = new OsuSpriteText
2017-04-28 09:56:34 +08:00
{
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
2017-04-28 21:02:00 +08:00
Colour = colours.BlueLighter,
Font = @"Venera",
2017-04-28 09:56:34 +08:00
Margin = new MarginPadding
{
Left = margin,
},
2017-05-08 05:16:58 +08:00
Text = @"0:00",
2017-04-28 09:56:34 +08:00
},
2017-05-08 05:16:58 +08:00
progressText = new OsuSpriteText
2017-04-28 09:56:34 +08:00
{
Origin = Anchor.BottomCentre,
Anchor = Anchor.BottomCentre,
2017-04-28 21:02:00 +08:00
Colour = colours.BlueLighter,
Font = @"Venera",
2017-05-08 05:16:58 +08:00
Text = @"0%",
2017-04-28 09:56:34 +08:00
},
2017-04-28 21:02:00 +08:00
timeLeft = new OsuSpriteText
2017-04-28 09:56:34 +08:00
{
Origin = Anchor.BottomRight,
Anchor = Anchor.BottomRight,
2017-04-28 21:02:00 +08:00
Colour = colours.BlueLighter,
Font = @"Venera",
2017-04-28 09:56:34 +08:00
Margin = new MarginPadding
{
Right = margin,
}
}
};
}
}
}