1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game/Storyboards/Drawables/DrawableStoryboard.cs

82 lines
2.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.Threading;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Textures;
using osu.Game.IO;
2019-03-18 14:25:54 +08:00
using osu.Game.Screens.Play;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Storyboards.Drawables
{
public class DrawableStoryboard : Container<DrawableStoryboardLayer>
{
public Storyboard Storyboard { get; private set; }
2019-11-12 17:45:42 +08:00
protected override Container<DrawableStoryboardLayer> Content { get; }
2018-04-13 17:19:50 +08:00
protected override Vector2 DrawScale => new Vector2(Parent.DrawHeight / 480);
private bool passing = true;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public bool Passing
{
get => passing;
2018-04-13 17:19:50 +08:00
set
{
if (passing == value) return;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
passing = value;
updateLayerVisibility();
}
}
public override bool RemoveCompletedTransforms => false;
private DependencyContainer dependencies;
2019-02-28 12:31:40 +08:00
2018-07-11 16:07:14 +08:00
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) =>
dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
2018-04-13 17:19:50 +08:00
public DrawableStoryboard(Storyboard storyboard)
{
Storyboard = storyboard;
Size = new Vector2(640, 480);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2019-11-12 17:45:42 +08:00
AddInternal(Content = new Container<DrawableStoryboardLayer>
2018-04-13 17:19:50 +08:00
{
Size = new Vector2(640, 480),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
});
}
2019-03-18 14:50:34 +08:00
[BackgroundDependencyLoader(true)]
2019-05-10 16:42:45 +08:00
private void load(FileStore fileStore, GameplayClock clock, CancellationToken? cancellationToken)
2018-04-13 17:19:50 +08:00
{
2019-03-18 17:19:59 +08:00
if (clock != null)
2019-03-18 14:25:54 +08:00
Clock = clock;
dependencies.Cache(new TextureStore(new TextureLoaderStore(fileStore.Store), false, scaleAdjust: 1));
2018-04-13 17:19:50 +08:00
foreach (var layer in Storyboard.Layers)
{
2019-05-10 16:42:45 +08:00
cancellationToken?.ThrowIfCancellationRequested();
2018-04-13 17:19:50 +08:00
Add(layer.CreateDrawable());
}
2018-04-13 17:19:50 +08:00
}
private void updateLayerVisibility()
{
foreach (var layer in Children)
layer.Enabled = passing ? layer.Layer.EnabledWhenPassing : layer.Layer.EnabledWhenFailing;
}
}
}