mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
63 lines
1.8 KiB
C#
63 lines
1.8 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Beatmaps.Drawables
|
|
{
|
|
public class UpdateableOnlineBeatmapSetCover : ModelBackedDrawable<IBeatmapSetOnlineInfo>
|
|
{
|
|
private readonly BeatmapSetCoverType coverType;
|
|
|
|
public IBeatmapSetOnlineInfo OnlineInfo
|
|
{
|
|
get => Model;
|
|
set => Model = value;
|
|
}
|
|
|
|
public new bool Masking
|
|
{
|
|
get => base.Masking;
|
|
set => base.Masking = value;
|
|
}
|
|
|
|
public UpdateableOnlineBeatmapSetCover(BeatmapSetCoverType coverType = BeatmapSetCoverType.Cover)
|
|
{
|
|
this.coverType = coverType;
|
|
|
|
InternalChild = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = OsuColour.Gray(0.2f),
|
|
};
|
|
}
|
|
|
|
protected override double LoadDelay => 500;
|
|
|
|
protected override double TransformDuration => 400;
|
|
|
|
protected override DelayedLoadWrapper CreateDelayedLoadWrapper(Func<Drawable> createContentFunc, double timeBeforeLoad)
|
|
=> new DelayedLoadUnloadWrapper(createContentFunc, timeBeforeLoad);
|
|
|
|
protected override Drawable CreateDrawable(IBeatmapSetOnlineInfo model)
|
|
{
|
|
if (model == null)
|
|
return null;
|
|
|
|
return new OnlineBeatmapSetCover(model, coverType)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
FillMode = FillMode.Fill,
|
|
};
|
|
}
|
|
}
|
|
}
|