osu/osu.Game/Screens/Select/BeatmapDetailArea.cs

91 lines
2.8 KiB
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-03-23 03:22:31 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2017-03-23 03:22:31 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2017-03-23 04:19:29 +00:00
using osu.Game.Beatmaps;
using osu.Game.Screens.Select.Leaderboards;
2017-03-23 03:22:31 +00:00
namespace osu.Game.Screens.Select
{
public class BeatmapDetailArea : Container
{
private const float details_padding = 10;
2017-03-23 05:47:27 +00:00
private readonly Container content;
2017-03-23 03:29:28 +00:00
protected override Container<Drawable> Content => content;
public readonly BeatmapDetails Details;
2017-03-23 04:19:29 +00:00
public readonly Leaderboard Leaderboard;
private WorkingBeatmap beatmap;
public WorkingBeatmap Beatmap
2017-03-23 04:19:29 +00:00
{
get
{
return beatmap;
}
set
{
beatmap = value;
Leaderboard.Beatmap = beatmap?.BeatmapInfo;
2017-04-24 10:17:11 +00:00
Details.Beatmap = beatmap?.BeatmapInfo;
}
2017-03-23 04:19:29 +00:00
}
2017-03-23 03:22:31 +00:00
public BeatmapDetailArea()
{
2017-07-11 13:58:06 +00:00
AddRangeInternal(new Drawable[]
2017-03-23 03:22:31 +00:00
{
new BeatmapDetailAreaTabControl
{
RelativeSizeAxes = Axes.X,
2017-04-04 15:27:08 +00:00
OnFilter = (tab, mods) =>
2017-03-23 04:19:29 +00:00
{
switch (tab)
{
case BeatmapDetailTab.Details:
Details.Show();
Leaderboard.Hide();
2017-03-23 04:19:29 +00:00
break;
2017-04-04 15:27:08 +00:00
2017-03-23 04:19:29 +00:00
default:
Details.Hide();
2017-12-21 12:54:46 +00:00
Leaderboard.Scope = (LeaderboardScope)tab - 1;
Leaderboard.Show();
2017-03-23 04:19:29 +00:00
break;
}
},
2017-03-23 03:22:31 +00:00
},
2017-03-23 03:29:28 +00:00
content = new Container
2017-03-23 03:22:31 +00:00
{
2017-03-23 03:29:28 +00:00
RelativeSizeAxes = Axes.Both,
2017-03-23 03:22:31 +00:00
Padding = new MarginPadding { Top = BeatmapDetailAreaTabControl.HEIGHT },
},
2017-03-23 03:29:28 +00:00
});
2017-03-23 04:19:29 +00:00
2017-07-11 13:58:06 +00:00
AddRange(new Drawable[]
2017-03-23 04:19:29 +00:00
{
Details = new BeatmapDetails
2017-03-23 04:19:29 +00:00
{
RelativeSizeAxes = Axes.X,
Alpha = 0,
Margin = new MarginPadding { Top = details_padding },
2017-03-23 04:19:29 +00:00
},
Leaderboard = new Leaderboard
{
RelativeSizeAxes = Axes.Both,
}
});
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
2017-09-07 18:38:23 +00:00
Details.Height = Math.Min(DrawHeight - details_padding * 3 - BeatmapDetailAreaTabControl.HEIGHT, 450);
}
2017-03-23 03:22:31 +00:00
}
}