1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 15:27:25 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Skinning/LegacyHitExplosion.cs

74 lines
2.7 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.
2020-04-02 13:24:09 +08:00
using System;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2020-04-02 13:24:09 +08:00
using osu.Framework.Graphics.Animations;
using osu.Game.Rulesets.UI.Scrolling;
2020-04-02 13:24:09 +08:00
using osu.Game.Skinning;
2020-04-02 13:29:16 +08:00
using osuTK;
namespace osu.Game.Rulesets.Mania.Skinning
{
2020-04-02 13:29:16 +08:00
public class LegacyHitExplosion : LegacyManiaColumnElement
{
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
private Drawable explosion;
2020-04-02 13:24:09 +08:00
public LegacyHitExplosion()
{
RelativeSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
2020-04-02 13:24:09 +08:00
private void load(ISkinSource skin, IScrollingInfo scrollingInfo)
{
2020-04-02 13:24:09 +08:00
string imageName = GetManiaSkinConfig<string>(skin, LegacyManiaSkinConfigurationLookups.ExplosionImage)?.Value
?? "lightingN";
2020-04-02 13:29:16 +08:00
float explosionScale = GetManiaSkinConfig<float>(skin, LegacyManiaSkinConfigurationLookups.ExplosionScale)?.Value
?? 1;
// Create a temporary animation to retrieve the number of frames, in an effort to calculate the intended frame length.
// This animation is discarded and re-queried with the appropriate frame length afterwards.
var tmp = skin.GetAnimation(imageName, true, false);
double frameLength = 0;
if (tmp is IFramedAnimation tmpAnimation && tmpAnimation.FrameCount > 0)
frameLength = Math.Max(1000 / 60.0, 170.0 / tmpAnimation.FrameCount);
explosion = skin.GetAnimation(imageName, true, false, startAtCurrentTime: true, frameLength: frameLength).With(d =>
{
2020-04-02 13:24:09 +08:00
if (d == null)
return;
d.Origin = Anchor.Centre;
d.Blending = BlendingParameters.Additive;
2020-04-02 13:29:16 +08:00
d.Scale = new Vector2(explosionScale);
2020-04-02 13:24:09 +08:00
});
2020-04-02 14:27:31 +08:00
if (explosion != null)
InternalChild = explosion;
direction.BindTo(scrollingInfo.Direction);
direction.BindValueChanged(onDirectionChanged, true);
}
2020-04-02 13:24:09 +08:00
private void onDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)
{
2020-04-02 13:24:09 +08:00
if (explosion != null)
explosion.Anchor = direction.NewValue == ScrollingDirection.Up ? Anchor.TopCentre : Anchor.BottomCentre;
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-04-02 13:24:09 +08:00
explosion?.FadeInFromZero(80)
.Then().FadeOut(120);
}
}
}