2017-05-17 15:36:57 +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 OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2017-05-21 23:22:27 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-05-30 17:23:53 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-05-30 17:23:53 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
namespace osu.Game.Screens.Play.ReplaySettings
|
2017-05-17 15:36:57 +08:00
|
|
|
|
{
|
2017-05-30 17:23:53 +08:00
|
|
|
|
public abstract class ReplaySettingsGroup : Container
|
2017-05-17 15:36:57 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-05-30 17:23:53 +08:00
|
|
|
|
/// The title to be displayed in the header of this group.
|
2017-05-17 15:36:57 +08:00
|
|
|
|
/// </summary>
|
2017-05-28 05:56:11 +08:00
|
|
|
|
protected abstract string Title { get; }
|
2017-05-17 15:36:57 +08:00
|
|
|
|
|
2017-05-19 01:21:58 +08:00
|
|
|
|
private const float transition_duration = 600;
|
2017-05-21 23:22:27 +08:00
|
|
|
|
private const int container_width = 270;
|
2017-05-19 11:39:39 +08:00
|
|
|
|
private const int border_thickness = 2;
|
|
|
|
|
private const int header_height = 30;
|
|
|
|
|
private const int corner_radius = 5;
|
2017-05-19 01:21:58 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
private readonly FillFlowContainer content;
|
|
|
|
|
private readonly IconButton button;
|
|
|
|
|
private bool expanded;
|
2017-05-17 20:39:26 +08:00
|
|
|
|
|
2017-05-23 21:01:00 +08:00
|
|
|
|
private Color4 buttonActiveColour;
|
2017-05-21 23:22:27 +08:00
|
|
|
|
|
2017-05-30 17:31:56 +08:00
|
|
|
|
protected ReplaySettingsGroup()
|
2017-05-17 15:36:57 +08:00
|
|
|
|
{
|
2017-05-17 20:39:26 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2017-05-19 11:39:39 +08:00
|
|
|
|
Width = container_width;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
Masking = true;
|
2017-05-19 11:39:39 +08:00
|
|
|
|
CornerRadius = corner_radius;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
BorderColour = Color4.Black;
|
2017-05-19 11:39:39 +08:00
|
|
|
|
BorderThickness = border_thickness;
|
2017-05-17 15:36:57 +08:00
|
|
|
|
|
2017-05-30 00:00:29 +08:00
|
|
|
|
InternalChildren = new Drawable[]
|
2017-05-17 15:36:57 +08:00
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black,
|
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
},
|
2017-05-17 20:39:26 +08:00
|
|
|
|
new FillFlowContainer
|
2017-05-17 15:36:57 +08:00
|
|
|
|
{
|
2017-05-17 20:39:26 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-17 22:14:09 +08:00
|
|
|
|
new Container
|
2017-05-17 20:39:26 +08:00
|
|
|
|
{
|
2017-05-21 23:22:27 +08:00
|
|
|
|
Name = @"Header",
|
2017-05-17 20:39:26 +08:00
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
2017-05-30 00:00:29 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = header_height,
|
2017-05-17 20:39:26 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
2017-05-28 05:56:11 +08:00
|
|
|
|
Text = Title.ToUpper(),
|
2017-05-17 20:39:26 +08:00
|
|
|
|
TextSize = 17,
|
|
|
|
|
Font = @"Exo2.0-Bold",
|
|
|
|
|
Margin = new MarginPadding { Left = 10 },
|
|
|
|
|
},
|
2017-05-30 17:23:53 +08:00
|
|
|
|
button = new IconButton
|
2017-05-17 20:39:26 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Position = new Vector2(-15,0),
|
|
|
|
|
Icon = FontAwesome.fa_bars,
|
2017-05-21 23:22:27 +08:00
|
|
|
|
Scale = new Vector2(0.75f),
|
|
|
|
|
Action = triggerContentVisibility,
|
2017-05-17 20:39:26 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-05-19 01:21:58 +08:00
|
|
|
|
content = new FillFlowContainer
|
2017-05-17 20:39:26 +08:00
|
|
|
|
{
|
2017-05-21 23:22:27 +08:00
|
|
|
|
Name = @"Content",
|
2017-05-30 00:00:29 +08:00
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
2017-05-19 01:21:58 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2017-05-17 20:39:26 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2017-05-19 11:26:54 +08:00
|
|
|
|
AutoSizeDuration = transition_duration,
|
|
|
|
|
AutoSizeEasing = EasingTypes.OutQuint,
|
2017-05-23 21:01:00 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2017-05-19 01:21:58 +08:00
|
|
|
|
Padding = new MarginPadding(15),
|
2017-05-21 23:22:27 +08:00
|
|
|
|
Spacing = new Vector2(0, 15),
|
2017-05-17 20:39:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-17 15:36:57 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
2017-05-18 12:09:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
button.Colour = buttonActiveColour = colours.Yellow;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 00:00:29 +08:00
|
|
|
|
protected override Container<Drawable> Content => content;
|
2017-05-17 22:24:52 +08:00
|
|
|
|
|
|
|
|
|
private void triggerContentVisibility()
|
|
|
|
|
{
|
2017-05-23 21:01:00 +08:00
|
|
|
|
content.ClearTransforms();
|
2017-05-30 17:23:53 +08:00
|
|
|
|
content.AutoSizeAxes = expanded ? Axes.Y : Axes.None;
|
2017-05-23 21:01:00 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
if (!expanded)
|
2017-05-19 11:26:54 +08:00
|
|
|
|
content.ResizeHeightTo(0, transition_duration, EasingTypes.OutQuint);
|
2017-05-21 23:22:27 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
button.FadeColour(expanded ? buttonActiveColour : Color4.White, 200, EasingTypes.OutQuint);
|
2017-05-21 23:22:27 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
expanded = !expanded;
|
2017-05-17 22:24:52 +08:00
|
|
|
|
}
|
2017-05-17 15:36:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|