1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 20:05:29 +08:00

Use 2x size covers in list view

This commit is contained in:
DrabWeb 2017-06-07 12:15:11 -03:00
parent ddc4d45ae8
commit d541006134
3 changed files with 8 additions and 6 deletions

View File

@ -58,7 +58,7 @@ namespace osu.Game.Overlays.Direct
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
GetBackground(textures),
GetBackground(textures, false),
new Box
{
RelativeSizeAxes = Axes.Both,

View File

@ -56,7 +56,7 @@ namespace osu.Game.Overlays.Direct
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
},
GetBackground(textures),
GetBackground(textures, true),
new Box
{
RelativeSizeAxes = Axes.Both,

View File

@ -34,9 +34,9 @@ namespace osu.Game.Overlays.Direct
return icons;
}
protected Drawable GetBackground(TextureStore textures)
protected Drawable GetBackground(TextureStore textures, bool doubleSize)
{
return new AsyncLoadWrapper(new BeatmapSetBackgroundSprite(SetInfo)
return new AsyncLoadWrapper(new BeatmapSetBackgroundSprite(SetInfo, doubleSize)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
@ -90,17 +90,19 @@ namespace osu.Game.Overlays.Direct
private class BeatmapSetBackgroundSprite : Sprite
{
private readonly BeatmapSetInfo set;
private readonly bool doubleSize;
public BeatmapSetBackgroundSprite(BeatmapSetInfo set)
public BeatmapSetBackgroundSprite(BeatmapSetInfo set, bool doubleSize)
{
this.set = set;
this.doubleSize = doubleSize;
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
if (set.OnlineInfo?.Covers?.Card != null)
Texture = textures.Get(set.OnlineInfo.Covers.Card);
Texture = textures.Get(doubleSize ? set.OnlineInfo.Covers.Card2x : set.OnlineInfo.Covers.Card);
}
}
}