osu/osu.Game/Beatmaps/Drawable/BeatmapPanel.cs

84 lines
3.1 KiB
C#
Raw Normal View History

2016-10-13 19:10:00 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2016-10-27 02:55:55 +00:00
using osu.Framework.Graphics.Primitives;
2016-10-13 19:10:00 +00:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Database;
using osu.Game.Graphics;
2016-10-20 19:33:46 +00:00
using osu.Game.Graphics.UserInterface;
2016-10-27 02:55:55 +00:00
using OpenTK;
using OpenTK.Graphics;
2016-10-13 19:10:00 +00:00
2016-10-27 02:55:55 +00:00
namespace osu.Game.Beatmaps.Drawable
2016-10-13 19:10:00 +00:00
{
class BeatmapPanel : Panel
2016-10-13 19:10:00 +00:00
{
2016-10-26 14:52:04 +00:00
public BeatmapInfo Beatmap;
2016-10-13 19:10:00 +00:00
public Action<BeatmapPanel> GainedSelection;
protected override void Selected()
{
base.Selected();
GainedSelection?.Invoke(this);
}
2016-10-19 20:37:42 +00:00
2016-10-26 14:52:04 +00:00
public BeatmapPanel(BeatmapSetInfo set, BeatmapInfo beatmap)
{
Beatmap = beatmap;
Height *= 0.75f;
2016-10-27 02:55:55 +00:00
Children = new Framework.Graphics.Drawable[]
2016-10-13 19:10:00 +00:00
{
new Box
{
2016-10-19 20:37:42 +00:00
Colour = new Color4(40, 86, 102, 255), // TODO: gradient
RelativeSizeAxes = Axes.Both,
Size = Vector2.One,
},
new FlowContainer
{
Padding = new MarginPadding(5),
Direction = FlowDirection.HorizontalOnly,
AutoSizeAxes = Axes.Both,
2016-10-27 02:55:55 +00:00
Children = new Framework.Graphics.Drawable[]
{
new DifficultyIcon(FontAwesome.dot_circle_o, new Color4(159, 198, 0, 255)),
new FlowContainer
{
Padding = new MarginPadding { Left = 10 },
2016-10-20 19:33:46 +00:00
Direction = FlowDirection.VerticalOnly,
AutoSizeAxes = Axes.Both,
2016-10-27 02:55:55 +00:00
Children = new Framework.Graphics.Drawable[]
{
2016-10-20 19:33:46 +00:00
new FlowContainer
{
2016-10-20 19:33:46 +00:00
Direction = FlowDirection.HorizontalOnly,
AutoSizeAxes = Axes.Both,
2016-10-20 19:33:46 +00:00
Children = new[]
{
new SpriteText
{
Text = beatmap.Version,
TextSize = 20,
},
new SpriteText
{
Text = $" mapped by {(beatmap.Metadata ?? set.Metadata).Author}",
2016-10-20 19:33:46 +00:00
TextSize = 16,
},
}
},
2016-10-20 19:33:46 +00:00
new StarCounter { Count = beatmap.BaseDifficulty?.OverallDifficulty ?? 5, StarSize = 8 }
}
}
}
}
2016-10-13 19:10:00 +00:00
};
}
2016-10-13 19:10:00 +00:00
}
}