1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/AuthorInfo.cs

132 lines
4.0 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Graphics.Sprites;
using osu.Game.Users.Drawables;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.BeatmapSet
{
public class AuthorInfo : Container
{
private const float height = 50;
private readonly UpdateableAvatar avatar;
private readonly FillFlowContainer fields;
private BeatmapSetInfo beatmapSet;
2018-04-13 17:19:50 +08:00
public BeatmapSetInfo BeatmapSet
{
get => beatmapSet;
2018-04-13 17:19:50 +08:00
set
{
if (value == beatmapSet) return;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
beatmapSet = value;
updateDisplay();
}
}
2018-04-13 17:19:50 +08:00
private void updateDisplay()
{
avatar.User = BeatmapSet?.Metadata.Author;
2018-04-13 17:19:50 +08:00
fields.Clear();
if (BeatmapSet == null)
return;
2018-04-13 17:19:50 +08:00
var online = BeatmapSet.OnlineInfo;
fields.Children = new Drawable[]
{
2019-02-20 15:52:36 +08:00
new Field("mapped by", BeatmapSet.Metadata.Author.Username, OsuFont.GetFont(weight: FontWeight.Regular, italics: true)),
new Field("submitted on", online.Submitted.ToString(@"MMMM d, yyyy"), OsuFont.GetFont(weight: FontWeight.Bold))
2018-04-13 17:19:50 +08:00
{
Margin = new MarginPadding { Top = 5 },
},
};
if (online.Ranked.HasValue)
{
fields.Add(new Field("ranked on", online.Ranked.Value.ToString(@"MMMM d, yyyy"), OsuFont.GetFont(weight: FontWeight.Bold)));
}
else if (online.LastUpdated.HasValue)
{
fields.Add(new Field("last updated on", online.LastUpdated.Value.ToString(@"MMMM d, yyyy"), OsuFont.GetFont(weight: FontWeight.Bold)));
2018-04-13 17:19:50 +08:00
}
}
public AuthorInfo()
{
RelativeSizeAxes = Axes.X;
Height = height;
Children = new Drawable[]
{
2018-12-20 19:08:22 +08:00
new Container
2018-04-13 17:19:50 +08:00
{
AutoSizeAxes = Axes.Both,
CornerRadius = 3,
Masking = true,
Child = avatar = new UpdateableAvatar
{
ShowGuestOnNull = false,
2018-04-13 17:19:50 +08:00
Size = new Vector2(height),
},
EdgeEffect = new EdgeEffectParameters
{
Colour = Color4.Black.Opacity(0.25f),
Type = EdgeEffectType.Shadow,
Radius = 3,
Offset = new Vector2(0f, 1f),
},
},
fields = new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Padding = new MarginPadding { Left = height + 5 },
},
};
}
2018-12-20 19:08:22 +08:00
private void load()
2018-04-13 17:19:50 +08:00
{
updateDisplay();
2018-04-13 17:19:50 +08:00
}
private class Field : FillFlowContainer
{
public Field(string first, string second, FontUsage secondFont)
2018-04-13 17:19:50 +08:00
{
AutoSizeAxes = Axes.Both;
Direction = FillDirection.Horizontal;
Children = new[]
{
new OsuSpriteText
{
Text = $"{first} ",
Font = OsuFont.GetFont(size: 13)
2018-04-13 17:19:50 +08:00
},
new OsuSpriteText
{
Text = second,
Font = secondFont.With(size: 13)
2018-04-13 17:19:50 +08:00
},
};
}
}
}
}