1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 05:17:24 +08:00
osu-lazer/osu.Game/Overlays/OnlineBeatmapSet/Header.cs

205 lines
9.2 KiB
C#
Raw Normal View History

2017-09-09 05:32:07 +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;
using osu.Framework.Allocation;
2017-09-09 05:32:07 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.Drawables;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2017-09-09 05:32:07 +08:00
namespace osu.Game.Overlays.OnlineBeatmapSet
{
public class Header : Container
{
private const float transition_duration = 250;
private const float tabs_height = 50;
2017-09-13 23:07:31 +08:00
private const float buttons_height = 45;
private const float buttons_spacing = 5;
private readonly Box tabsBg;
2017-09-11 13:48:48 +08:00
public readonly BeatmapPicker Picker;
2017-09-09 05:32:07 +08:00
public Header(BeatmapSetInfo set)
{
RelativeSizeAxes = Axes.X;
Height = 400;
Masking = true;
EdgeEffect = new EdgeEffectParameters
{
Colour = Color4.Black.Opacity(0.25f),
Type = EdgeEffectType.Shadow,
Radius = 3,
Offset = new Vector2(0f, 1f),
};
2017-09-13 23:07:31 +08:00
Container noVideoButtons;
FillFlowContainer videoButtons;
2017-09-11 13:48:48 +08:00
Details details;
2017-09-09 05:32:07 +08:00
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.X,
Height = tabs_height,
Children = new[]
2017-09-09 05:32:07 +08:00
{
tabsBg = new Box
2017-09-09 05:32:07 +08:00
{
RelativeSizeAxes = Axes.Both,
},
},
},
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = tabs_height },
Children = new Drawable[]
{
new Container
2017-09-09 05:32:07 +08:00
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
2017-09-09 05:32:07 +08:00
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
new DelayedLoadWrapper(new BeatmapSetCover(set)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fill,
OnLoadComplete = d =>
{
d.FadeInFromZero(400, Easing.Out);
},
})
{
RelativeSizeAxes = Axes.Both,
TimeBeforeLoad = 300
},
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = ColourInfo.GradientVertical(Color4.Black.Opacity(0.3f), Color4.Black.Opacity(0.8f)),
},
2017-09-09 05:32:07 +08:00
},
},
new Container
2017-09-09 05:32:07 +08:00
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 20, Bottom = 30, Horizontal = OnlineBeatmapSetOverlay.X_PADDING },
Child = new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.X,
Height = 113,
2017-09-11 13:48:48 +08:00
Child = Picker = new BeatmapPicker(set),
},
new OsuSpriteText
{
Text = set.Metadata.Title,
Font = @"Exo2.0-BoldItalic",
TextSize = 37,
},
new OsuSpriteText
{
Text = set.Metadata.Artist,
Font = @"Exo2.0-SemiBoldItalic",
TextSize = 25,
},
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Margin = new MarginPadding { Top = 20 },
Child = new AuthorInfo(set.OnlineInfo),
},
2017-09-13 23:07:31 +08:00
new Container
{
RelativeSizeAxes = Axes.X,
2017-09-13 23:07:31 +08:00
Height = buttons_height,
Margin = new MarginPadding { Top = 10 },
2017-09-13 23:07:31 +08:00
Children = new Drawable[]
{
new FavouriteButton(),
2017-09-13 23:07:31 +08:00
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Left = buttons_height + buttons_spacing },
Children = new Drawable[]
{
noVideoButtons = new Container
{
RelativeSizeAxes = Axes.Both,
Alpha = 0f,
Child = new DownloadButton("Download", @""),
},
videoButtons = new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
Spacing = new Vector2(buttons_spacing),
Alpha = 0f,
Children = new[]
{
new DownloadButton("Download", "with Video"),
new DownloadButton("Download", "without Video"),
},
},
},
},
},
},
},
},
2017-09-09 05:32:07 +08:00
},
2017-09-11 13:48:48 +08:00
details = new Details(set)
2017-09-09 05:32:07 +08:00
{
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Margin = new MarginPadding { Right = OnlineBeatmapSetOverlay.X_PADDING },
2017-09-09 05:32:07 +08:00
},
},
},
};
2017-09-11 13:48:48 +08:00
Picker.Beatmap.ValueChanged += b =>
{
details.Beatmap = b;
if (b.OnlineInfo.HasVideo)
{
2017-09-13 23:07:31 +08:00
noVideoButtons.FadeOut(transition_duration);
videoButtons.FadeIn(transition_duration);
2017-09-11 13:48:48 +08:00
}
else
{
2017-09-13 23:07:31 +08:00
noVideoButtons.FadeIn(transition_duration);
videoButtons.FadeOut(transition_duration);
2017-09-11 13:48:48 +08:00
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
tabsBg.Colour = colours.Gray3;
}
2017-09-09 05:32:07 +08:00
}
}