1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 13:27:26 +08:00
osu-lazer/osu.Game/Beatmaps/Drawables/OnlineBeatmapSetCover.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.5 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
2022-06-17 15:37:17 +08:00
#nullable disable
using System;
2017-07-13 12:17:47 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Beatmaps.Drawables
2017-07-13 12:17:47 +08:00
{
[LongRunningLoad]
public class OnlineBeatmapSetCover : Sprite
2017-07-13 12:17:47 +08:00
{
private readonly IBeatmapSetOnlineInfo set;
private readonly BeatmapSetCoverType type;
2018-04-13 17:19:50 +08:00
public OnlineBeatmapSetCover(IBeatmapSetOnlineInfo set, BeatmapSetCoverType type = BeatmapSetCoverType.Cover)
2017-07-13 12:17:47 +08:00
{
if (set == null)
throw new ArgumentNullException(nameof(set));
2018-04-13 17:19:50 +08:00
2017-07-13 12:17:47 +08:00
this.set = set;
this.type = type;
2017-07-13 12:17:47 +08:00
}
2018-04-13 17:19:50 +08:00
2017-07-13 12:17:47 +08:00
[BackgroundDependencyLoader]
private void load(LargeTextureStore textures)
2017-07-13 12:17:47 +08:00
{
string resource = null;
2018-04-13 17:19:50 +08:00
switch (type)
{
case BeatmapSetCoverType.Cover:
resource = set.Covers.Cover;
break;
2019-04-01 11:44:46 +08:00
case BeatmapSetCoverType.Card:
resource = set.Covers.Card;
break;
2019-04-01 11:44:46 +08:00
case BeatmapSetCoverType.List:
resource = set.Covers.List;
break;
}
2018-04-13 17:19:50 +08:00
2017-07-13 12:17:47 +08:00
if (resource != null)
2018-08-31 06:04:40 +08:00
Texture = textures.Get(resource);
2017-07-13 12:17:47 +08:00
}
}
2018-04-13 17:19:50 +08:00
public enum BeatmapSetCoverType
{
Cover,
Card,
List,
}
2017-07-13 12:17:47 +08:00
}