mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
65 lines
1.8 KiB
C#
65 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.
|
|
|
|
using System;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Framework.Graphics.Video;
|
|
using osu.Game.Beatmaps;
|
|
|
|
namespace osu.Game.Storyboards.Drawables
|
|
{
|
|
public class DrawableStoryboardVideo : CompositeDrawable
|
|
{
|
|
public readonly StoryboardVideo Video;
|
|
private Video video;
|
|
|
|
public override bool RemoveWhenNotAlive => false;
|
|
|
|
public DrawableStoryboardVideo(StoryboardVideo video)
|
|
{
|
|
Video = video;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(IBindable<WorkingBeatmap> beatmap, TextureStore textureStore)
|
|
{
|
|
var path = beatmap.Value.BeatmapSetInfo?.Files?.Find(f => f.Filename.Equals(Video.Path, StringComparison.OrdinalIgnoreCase))?.FileInfo.StoragePath;
|
|
|
|
if (path == null)
|
|
return;
|
|
|
|
var stream = textureStore.GetStream(path);
|
|
|
|
if (stream == null)
|
|
return;
|
|
|
|
InternalChild = video = new Video(stream, false)
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
FillMode = FillMode.Fill,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Alpha = 0,
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
if (video == null) return;
|
|
|
|
video.PlaybackPosition = Clock.CurrentTime - Video.StartTime;
|
|
|
|
using (video.BeginAbsoluteSequence(0))
|
|
video.FadeIn(500);
|
|
}
|
|
}
|
|
}
|