1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:47:28 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/Bar.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
3.0 KiB
C#
Raw Normal View History

// 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
using System;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
2017-04-08 19:53:11 +08:00
public partial class Bar : Container, IHasAccentColour
{
2017-04-10 22:49:48 +08:00
private readonly Box background;
private readonly Box bar;
2018-04-13 17:19:50 +08:00
private const int resize_duration = 250;
2018-04-13 17:19:50 +08:00
2017-07-23 02:50:25 +08:00
private const Easing easing = Easing.InOutCubic;
2018-04-13 17:19:50 +08:00
private float length;
2018-04-13 17:19:50 +08:00
2017-04-10 22:42:23 +08:00
/// <summary>
/// Length of the bar, ranges from 0 to 1
/// </summary>
public float Length
{
get => length;
set
{
length = Math.Clamp(value, 0, 1);
updateBarLength();
}
}
2018-04-13 17:19:50 +08:00
public Color4 BackgroundColour
{
2019-02-28 12:31:40 +08:00
get => background.Colour;
set => background.Colour = value;
}
2018-04-13 17:19:50 +08:00
2017-04-08 19:53:11 +08:00
public Color4 AccentColour
{
2019-02-28 12:31:40 +08:00
get => bar.Colour;
set => bar.Colour = value;
}
2018-04-13 17:19:50 +08:00
private BarDirection direction = BarDirection.LeftToRight;
2019-02-28 12:31:40 +08:00
public BarDirection Direction
{
get => direction;
set
{
direction = value;
updateBarLength();
}
}
2018-04-13 17:19:50 +08:00
public Bar()
{
Children = new[]
{
2017-04-10 22:42:23 +08:00
background = new Box
{
RelativeSizeAxes = Axes.Both,
2017-06-08 14:35:10 +08:00
Colour = new Color4(0, 0, 0, 0)
2017-04-10 22:42:23 +08:00
},
bar = new Box
{
RelativeSizeAxes = Axes.Both,
2017-04-12 16:52:24 +08:00
Width = 0,
2017-04-10 22:42:23 +08:00
},
};
}
2018-04-13 17:19:50 +08:00
private void updateBarLength()
{
switch (direction)
{
case BarDirection.LeftToRight:
case BarDirection.RightToLeft:
bar.ResizeTo(new Vector2(length, 1), resize_duration, easing);
break;
2018-04-13 17:19:50 +08:00
case BarDirection.TopToBottom:
case BarDirection.BottomToTop:
bar.ResizeTo(new Vector2(1, length), resize_duration, easing);
break;
}
2018-04-13 17:19:50 +08:00
switch (direction)
{
case BarDirection.LeftToRight:
case BarDirection.TopToBottom:
bar.Anchor = Anchor.TopLeft;
bar.Origin = Anchor.TopLeft;
break;
2018-04-13 17:19:50 +08:00
case BarDirection.RightToLeft:
case BarDirection.BottomToTop:
bar.Anchor = Anchor.BottomRight;
bar.Origin = Anchor.BottomRight;
break;
}
}
}
2018-04-13 17:19:50 +08:00
public enum BarDirection
{
2022-11-19 05:19:49 +08:00
LeftToRight,
RightToLeft,
TopToBottom,
BottomToTop
}
}