mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 07:27:33 +08:00
170 lines
7.3 KiB
C#
170 lines
7.3 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Beatmaps.Drawables.Cards
|
|
{
|
|
public partial class BeatmapCardNano : BeatmapCard
|
|
{
|
|
protected override Drawable IdleContent => idleBottomContent;
|
|
protected override Drawable DownloadInProgressContent => downloadProgressBar;
|
|
|
|
public override float Width
|
|
{
|
|
get => base.Width;
|
|
set
|
|
{
|
|
base.Width = value;
|
|
|
|
if (LoadState >= LoadState.Ready)
|
|
buttonContainer.Width = value;
|
|
}
|
|
}
|
|
|
|
private const float height = 60;
|
|
private const float width = 300;
|
|
|
|
[Cached]
|
|
private readonly BeatmapCardContent content;
|
|
|
|
private CollapsibleButtonContainer buttonContainer = null!;
|
|
|
|
private FillFlowContainer idleBottomContent = null!;
|
|
private BeatmapCardDownloadProgressBar downloadProgressBar = null!;
|
|
|
|
[Resolved]
|
|
private OverlayColourProvider colourProvider { get; set; } = null!;
|
|
|
|
public BeatmapCardNano(APIBeatmapSet beatmapSet)
|
|
: base(beatmapSet, false)
|
|
{
|
|
content = new BeatmapCardContent(height);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
|
|
Child = content.With(c =>
|
|
{
|
|
c.MainContent = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = height,
|
|
Children = new Drawable[]
|
|
{
|
|
buttonContainer = new CollapsibleButtonContainer(BeatmapSet)
|
|
{
|
|
Width = Width,
|
|
FavouriteState = { BindTarget = FavouriteState },
|
|
ButtonsCollapsedWidth = 5,
|
|
ButtonsExpandedWidth = 30,
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Vertical,
|
|
Children = new Drawable[]
|
|
{
|
|
new TruncatingSpriteText
|
|
{
|
|
Text = new RomanisableString(BeatmapSet.TitleUnicode, BeatmapSet.Title),
|
|
Font = OsuFont.Default.With(size: 19, weight: FontWeight.SemiBold),
|
|
RelativeSizeAxes = Axes.X,
|
|
},
|
|
new TruncatingSpriteText
|
|
{
|
|
Text = createArtistText(),
|
|
Font = OsuFont.Default.With(size: 16, weight: FontWeight.SemiBold),
|
|
RelativeSizeAxes = Axes.X,
|
|
},
|
|
}
|
|
},
|
|
new Container
|
|
{
|
|
Name = @"Bottom content",
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
Children = new Drawable[]
|
|
{
|
|
idleBottomContent = new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Spacing = new Vector2(0, 3),
|
|
AlwaysPresent = true,
|
|
Children = new Drawable[]
|
|
{
|
|
new LinkFlowContainer(s =>
|
|
{
|
|
s.Shadow = false;
|
|
s.Font = OsuFont.GetFont(size: 16, weight: FontWeight.SemiBold);
|
|
}).With(d =>
|
|
{
|
|
d.AutoSizeAxes = Axes.Both;
|
|
d.Margin = new MarginPadding { Top = 2 };
|
|
d.AddText("mapped by ", t => t.Colour = colourProvider.Content2);
|
|
d.AddUserLink(BeatmapSet.Author);
|
|
}),
|
|
}
|
|
},
|
|
downloadProgressBar = new BeatmapCardDownloadProgressBar
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 6,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
State = { BindTarget = DownloadTracker.State },
|
|
Progress = { BindTarget = DownloadTracker.Progress }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
c.ExpandedContent = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding { Horizontal = 10, Vertical = 13 },
|
|
Child = new BeatmapCardDifficultyList(BeatmapSet)
|
|
};
|
|
c.Expanded.BindTarget = Expanded;
|
|
});
|
|
}
|
|
|
|
private LocalisableString createArtistText()
|
|
{
|
|
var romanisableArtist = new RomanisableString(BeatmapSet.ArtistUnicode, BeatmapSet.Artist);
|
|
return BeatmapsetsStrings.ShowDetailsByArtist(romanisableArtist);
|
|
}
|
|
|
|
protected override void UpdateState()
|
|
{
|
|
base.UpdateState();
|
|
|
|
bool showDetails = IsHovered;
|
|
|
|
buttonContainer.ShowDetails.Value = showDetails;
|
|
}
|
|
}
|
|
}
|