1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Overlays/MedalAnimation.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

313 lines
11 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
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2017-06-01 15:45:46 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Sprites;
using osu.Game.Users;
using osu.Game.Graphics;
using osu.Game.Graphics.Backgrounds;
using osu.Game.Overlays.MedalSplash;
using osu.Framework.Allocation;
using osu.Framework.Audio.Sample;
using osu.Framework.Audio;
using osu.Framework.Graphics.Textures;
using osu.Framework.Graphics.Shapes;
2017-06-24 10:18:44 +08:00
using System;
using System.Diagnostics;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
namespace osu.Game.Overlays
{
public partial class MedalAnimation : VisibilityContainer
2017-06-01 15:45:46 +08:00
{
public const float DISC_SIZE = 400;
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
private const float border_width = 5;
2018-04-13 17:19:50 +08:00
private readonly Medal medal;
2017-06-01 15:45:46 +08:00
private readonly Box background;
2017-06-24 12:48:55 +08:00
private readonly Container backgroundStrip, particleContainer;
2017-06-01 15:45:46 +08:00
private readonly BackgroundStrip leftStrip, rightStrip;
private readonly CircularContainer disc;
2017-07-13 11:13:56 +08:00
private readonly Sprite innerSpin, outerSpin;
2018-04-13 17:19:50 +08:00
private DrawableMedal? drawableMedal;
private Sample? getSample;
2018-04-13 17:19:50 +08:00
2020-01-07 12:39:30 +08:00
private readonly Container content;
public MedalAnimation(Medal medal)
2017-06-01 15:45:46 +08:00
{
this.medal = medal;
2017-06-01 15:45:46 +08:00
RelativeSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
2020-01-07 12:39:30 +08:00
Child = content = new Container
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
Alpha = 0,
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
background = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black.Opacity(60),
},
outerSpin = new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(DISC_SIZE + 500),
Alpha = 0f,
},
backgroundStrip = new Container
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.X,
Height = border_width,
Alpha = 0f,
Children = new[]
{
2020-01-07 12:39:30 +08:00
new Container
{
2020-01-07 12:39:30 +08:00
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.CentreRight,
Width = 0.5f,
Padding = new MarginPadding { Right = DISC_SIZE / 2 },
Children = new[]
{
2020-01-07 12:39:30 +08:00
leftStrip = new BackgroundStrip(0f, 1f)
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
},
},
},
2020-01-07 12:39:30 +08:00
new Container
{
2020-01-07 12:39:30 +08:00
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.CentreLeft,
Width = 0.5f,
Padding = new MarginPadding { Left = DISC_SIZE / 2 },
Children = new[]
{
rightStrip = new BackgroundStrip(1f, 0f),
},
},
},
2017-06-01 15:45:46 +08:00
},
2020-01-07 12:39:30 +08:00
particleContainer = new Container
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
RelativeSizeAxes = Axes.Both,
Alpha = 0f,
},
disc = new CircularContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Alpha = 0f,
Masking = true,
AlwaysPresent = true,
BorderColour = Color4.White,
BorderThickness = border_width,
Size = new Vector2(DISC_SIZE),
Scale = new Vector2(0.8f),
Children = new Drawable[]
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4Extensions.FromHex(@"05262f"),
2020-01-07 12:39:30 +08:00
},
new Triangles
{
RelativeSizeAxes = Axes.Both,
TriangleScale = 2,
ColourDark = Color4Extensions.FromHex(@"04222b"),
ColourLight = Color4Extensions.FromHex(@"052933"),
2020-01-07 12:39:30 +08:00
},
innerSpin = new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Size = new Vector2(1.05f),
Alpha = 0.25f,
},
2017-06-01 15:45:46 +08:00
},
},
2020-01-07 12:39:30 +08:00
}
2017-06-01 15:45:46 +08:00
};
2020-01-07 12:39:30 +08:00
Show();
2017-06-01 15:45:46 +08:00
}
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
[BackgroundDependencyLoader]
2018-08-31 06:04:40 +08:00
private void load(OsuColour colours, TextureStore textures, AudioManager audio)
2017-06-01 15:45:46 +08:00
{
getSample = audio.Samples.Get(@"MedalSplash/medal-get");
2018-08-31 06:04:40 +08:00
innerSpin.Texture = outerSpin.Texture = textures.Get(@"MedalSplash/disc-spin");
2018-04-13 17:19:50 +08:00
disc.EdgeEffect = leftStrip.EdgeEffect = rightStrip.EdgeEffect = new EdgeEffectParameters
2017-06-01 15:45:46 +08:00
{
Type = EdgeEffectType.Glow,
Colour = colours.Blue.Opacity(0.5f),
Radius = 50,
};
2020-01-04 23:45:34 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2018-04-13 17:19:50 +08:00
2019-12-29 08:01:14 +08:00
LoadComponentAsync(drawableMedal = new DrawableMedal(medal)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2017-10-09 16:52:48 +08:00
RelativeSizeAxes = Axes.Both,
2020-01-04 23:45:34 +08:00
}, loaded =>
{
disc.Add(loaded);
2020-01-07 12:39:30 +08:00
startAnimation();
2020-01-04 23:45:34 +08:00
});
}
2018-04-13 17:19:50 +08:00
2017-06-24 10:18:44 +08:00
protected override void Update()
{
base.Update();
2018-04-13 17:19:50 +08:00
2017-06-24 12:48:55 +08:00
particleContainer.Add(new MedalParticle(RNG.Next(0, 359)));
2017-06-24 10:18:44 +08:00
}
2018-04-13 17:19:50 +08:00
private const double initial_duration = 400;
private const double step_duration = 900;
2018-04-13 17:19:50 +08:00
2020-01-07 12:39:30 +08:00
private void startAnimation()
2017-06-01 15:45:46 +08:00
{
2020-01-07 12:39:30 +08:00
content.Show();
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
background.FlashColour(Color4.White.Opacity(0.25f), 400);
2018-04-13 17:19:50 +08:00
getSample?.Play();
2018-04-13 17:19:50 +08:00
2017-07-22 00:23:01 +08:00
innerSpin.Spin(20000, RotationDirection.Clockwise);
outerSpin.Spin(40000, RotationDirection.Clockwise);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(200))
2017-06-01 15:45:46 +08:00
{
2017-07-16 23:28:20 +08:00
disc.FadeIn(initial_duration)
2017-07-23 02:50:25 +08:00
.ScaleTo(1f, initial_duration * 2, Easing.OutElastic);
2018-04-13 17:19:50 +08:00
particleContainer.FadeIn(initial_duration);
outerSpin.FadeTo(0.1f, initial_duration * 2);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(initial_duration + 200))
{
backgroundStrip.FadeIn(step_duration);
2017-07-23 02:50:25 +08:00
leftStrip.ResizeWidthTo(1f, step_duration, Easing.OutQuint);
rightStrip.ResizeWidthTo(1f, step_duration, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
Debug.Assert(drawableMedal != null);
this.Animate().Schedule(() =>
2019-02-28 13:45:59 +08:00
{
if (drawableMedal.State != DisplayState.Full)
drawableMedal.State = DisplayState.Icon;
}).Delay(step_duration).Schedule(() =>
{
if (drawableMedal.State != DisplayState.Full)
drawableMedal.State = DisplayState.MedalUnlocked;
}).Delay(step_duration).Schedule(() =>
{
if (drawableMedal.State != DisplayState.Full)
drawableMedal.State = DisplayState.Full;
});
}
}
2017-06-01 15:45:46 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void PopIn()
{
this.FadeIn(200);
}
2017-06-01 15:45:46 +08:00
protected override void PopOut()
{
this.FadeOut(200);
2017-06-01 15:45:46 +08:00
}
2018-04-13 17:19:50 +08:00
2024-02-20 19:53:46 +08:00
public void Dismiss()
2017-06-24 09:35:06 +08:00
{
if (drawableMedal != null && drawableMedal.State != DisplayState.Full)
{
// if we haven't yet, play out the animation fully
drawableMedal.State = DisplayState.Full;
2017-07-21 23:24:09 +08:00
FinishTransforms(true);
return;
}
2018-04-13 17:19:50 +08:00
2017-06-24 09:35:06 +08:00
Hide();
2017-07-12 09:12:49 +08:00
Expire();
2017-06-24 09:35:06 +08:00
}
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
private partial class BackgroundStrip : Container
{
public BackgroundStrip(float start, float end)
{
RelativeSizeAxes = Axes.Both;
Width = 0f;
2017-07-23 13:30:50 +08:00
Colour = ColourInfo.GradientHorizontal(Color4.White.Opacity(start), Color4.White.Opacity(end));
2017-06-01 15:45:46 +08:00
Masking = true;
2018-04-13 17:19:50 +08:00
2017-06-01 15:45:46 +08:00
Children = new[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.White,
}
};
}
}
2018-04-13 17:19:50 +08:00
2017-06-24 10:18:44 +08:00
private partial class MedalParticle : CircularContainer
{
private readonly float direction;
2018-04-13 17:19:50 +08:00
2017-06-24 10:18:44 +08:00
private Vector2 positionForOffset(float offset) => new Vector2((float)(offset * Math.Sin(direction)), (float)(offset * Math.Cos(direction)));
2018-04-13 17:19:50 +08:00
2017-06-24 10:18:44 +08:00
public MedalParticle(float direction)
{
this.direction = direction;
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
Position = positionForOffset(DISC_SIZE / 2);
Masking = true;
}
2018-04-13 17:19:50 +08:00
2017-06-24 10:18:44 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Colour = colours.Blue.Opacity(0.5f),
Radius = 5,
};
2018-04-13 17:19:50 +08:00
this.MoveTo(positionForOffset(DISC_SIZE / 2 + 200), 500);
this.FadeOut(500);
2017-06-24 10:18:44 +08:00
Expire();
}
}
2017-06-01 15:45:46 +08:00
}
}