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

60 lines
2.0 KiB
C#
Raw Normal View History

2017-09-08 05:55:05 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Textures;
using osu.Game.IO;
namespace osu.Game.Storyboards.Drawables
{
2017-09-13 17:22:24 +08:00
public class DrawableStoryboard : Container<DrawableStoryboardLayer>
2017-09-08 05:55:05 +08:00
{
2017-09-13 17:22:24 +08:00
public Storyboard Storyboard { get; private set; }
2017-09-08 05:55:05 +08:00
protected override Vector2 DrawScale => new Vector2(Parent.DrawHeight / 480);
public override bool HandleInput => false;
private bool passing = true;
public bool Passing
{
get { return passing; }
set
{
if (passing == value) return;
passing = value;
updateLayerVisibility();
}
}
private DependencyContainer dependencies;
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent) =>
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
2017-09-13 17:22:24 +08:00
public DrawableStoryboard(Storyboard storyboard)
2017-09-08 05:55:05 +08:00
{
2017-09-13 17:22:24 +08:00
Storyboard = storyboard;
2017-09-08 05:55:05 +08:00
Size = new Vector2(640, 480);
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
}
[BackgroundDependencyLoader]
private void load(FileStore fileStore)
{
dependencies.Cache(new TextureStore(new RawTextureLoaderStore(fileStore.Store), false) { ScaleAdjust = 1, });
2017-09-13 17:22:24 +08:00
foreach (var layer in Storyboard.Layers)
Add(layer.CreateDrawable());
2017-09-08 05:55:05 +08:00
}
private void updateLayerVisibility()
{
foreach (var layer in Children)
2017-09-13 17:22:24 +08:00
layer.Enabled = passing ? layer.Layer.EnabledWhenPassing : layer.Layer.EnabledWhenFailing;
2017-09-08 05:55:05 +08:00
}
}
}