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

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