1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 00:47:26 +08:00
osu-lazer/osu.Game/Beatmaps/Drawables/UpdateableBeatmapSetCover.cs

61 lines
1.8 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-05-29 06:11:26 +08:00
using System;
2018-05-29 06:11:26 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2018-05-29 06:11:26 +08:00
namespace osu.Game.Beatmaps.Drawables
{
public class UpdateableBeatmapSetCover : ModelBackedDrawable<IBeatmapSetOnlineInfo>
2018-05-29 06:11:26 +08:00
{
private readonly BeatmapSetCoverType coverType;
2019-02-28 12:31:40 +08:00
public IBeatmapSetOnlineInfo BeatmapSet
2018-05-29 06:11:26 +08:00
{
get => Model;
set => Model = value;
2018-05-29 06:11:26 +08:00
}
public new bool Masking
2018-05-29 06:11:26 +08:00
{
get => base.Masking;
set => base.Masking = value;
2018-05-29 06:11:26 +08:00
}
public UpdateableBeatmapSetCover(BeatmapSetCoverType coverType = BeatmapSetCoverType.Cover)
2018-05-29 06:11:26 +08:00
{
this.coverType = coverType;
InternalChild = new Box
2018-05-29 06:11:26 +08:00
{
RelativeSizeAxes = Axes.Both,
2020-02-17 04:42:05 +08:00
Colour = OsuColour.Gray(0.2f),
2018-05-29 06:11:26 +08:00
};
}
protected override double LoadDelay => 500;
protected override double TransformDuration => 400;
2018-05-29 06:11:26 +08:00
protected override DelayedLoadWrapper CreateDelayedLoadWrapper(Func<Drawable> createContentFunc, double timeBeforeLoad)
=> new DelayedLoadUnloadWrapper(createContentFunc, timeBeforeLoad);
2021-01-24 04:29:32 +08:00
protected override Drawable CreateDrawable(IBeatmapSetOnlineInfo model)
2018-05-29 06:11:26 +08:00
{
if (model == null)
return null;
2018-05-29 06:11:26 +08:00
return new BeatmapSetCover(model, coverType)
2018-05-29 06:11:26 +08:00
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
FillMode = FillMode.Fill,
};
2018-05-29 06:11:26 +08:00
}
}
}