mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:27:51 +08:00
107 lines
4.4 KiB
C#
107 lines
4.4 KiB
C#
//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;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Database;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace osu.Game.Beatmaps.Drawable
|
|
{
|
|
class BeatmapPanel : Panel
|
|
{
|
|
public BeatmapInfo Beatmap;
|
|
|
|
public Action<BeatmapPanel> GainedSelection;
|
|
|
|
protected override void Selected()
|
|
{
|
|
base.Selected();
|
|
GainedSelection?.Invoke(this);
|
|
}
|
|
|
|
public BeatmapPanel(BeatmapInfo beatmap)
|
|
{
|
|
Beatmap = beatmap;
|
|
Height *= 0.60f;
|
|
|
|
Children = new Framework.Graphics.Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
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,
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Children = new Framework.Graphics.Drawable[]
|
|
{
|
|
new DifficultyIcon(FontAwesome.fa_dot_circle_o, new Color4(159, 198, 0, 255))
|
|
{
|
|
Scale = new Vector2(1.8f),
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
},
|
|
new FlowContainer
|
|
{
|
|
Padding = new MarginPadding { Left = 5 },
|
|
Spacing = new Vector2(0, 5),
|
|
Direction = FlowDirection.VerticalOnly,
|
|
AutoSizeAxes = Axes.Both,
|
|
Children = new Framework.Graphics.Drawable[]
|
|
{
|
|
new FlowContainer
|
|
{
|
|
Direction = FlowDirection.HorizontalOnly,
|
|
AutoSizeAxes = Axes.Both,
|
|
Spacing = new Vector2(4, 0),
|
|
Children = new[]
|
|
{
|
|
new SpriteText
|
|
{
|
|
Font = @"Exo2.0-Medium",
|
|
Text = beatmap.Version,
|
|
TextSize = 20,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft
|
|
},
|
|
new SpriteText
|
|
{
|
|
Font = @"Exo2.0-Medium",
|
|
Text = "mapped by",
|
|
TextSize = 16,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft
|
|
},
|
|
new SpriteText
|
|
{
|
|
Font = @"Exo2.0-MediumItalic",
|
|
Text = $"{(beatmap.Metadata ?? beatmap.BeatmapSet.Metadata).Author}",
|
|
TextSize = 16,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft
|
|
},
|
|
}
|
|
},
|
|
new StarCounter { Count = beatmap.BaseDifficulty?.OverallDifficulty ?? 5, StarSize = 8 }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|