1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 20:07:26 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableSpinner.cs

217 lines
7.4 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
2017-02-15 22:24:08 +08:00
using osu.Framework.Graphics.Containers;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
using OpenTK;
using OpenTK.Graphics;
2017-05-18 18:40:20 +08:00
using osu.Game.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Allocation;
using osu.Game.Screens.Ranking;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Osu.Objects.Drawables
{
public class DrawableSpinner : DrawableOsuHitObject
{
private readonly Spinner spinner;
private readonly SpinnerDisc disc;
2017-05-18 18:40:20 +08:00
private readonly SpinnerTicks ticks;
private readonly Container mainContainer;
private readonly SpinnerBackground background;
private readonly Container circleContainer;
2017-05-18 18:40:20 +08:00
private readonly CirclePiece circle;
2017-05-18 20:38:19 +08:00
private readonly GlowPiece glow;
2017-05-18 18:40:20 +08:00
private readonly TextAwesome symbol;
private readonly Color4 baseColour = OsuColour.FromHex(@"002c3c");
private readonly Color4 fillColour = OsuColour.FromHex(@"005b7c");
2017-05-18 18:40:20 +08:00
private Color4 normalColour;
private Color4 completeColour;
public DrawableSpinner(Spinner s) : base(s)
{
Origin = Anchor.Centre;
Position = s.Position;
2017-05-18 18:40:20 +08:00
RelativeSizeAxes = Axes.Both;
2017-05-18 18:51:45 +08:00
2017-05-18 18:40:20 +08:00
// we are slightly bigger than our parent, to clip the top and bottom of the circle
2017-05-18 20:38:19 +08:00
Height = 1.3f;
spinner = s;
Children = new Drawable[]
{
2017-02-15 22:24:08 +08:00
circleContainer = new Container
{
2017-02-15 22:24:08 +08:00
AutoSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
2017-02-15 22:24:08 +08:00
Origin = Anchor.Centre,
2017-05-18 18:40:20 +08:00
Children = new Drawable[]
2017-02-15 22:24:08 +08:00
{
2017-05-18 20:38:19 +08:00
glow = new GlowPiece(),
2017-05-18 18:40:20 +08:00
circle = new CirclePiece
2017-02-15 22:24:08 +08:00
{
Position = Vector2.Zero,
Anchor = Anchor.Centre,
2017-05-18 18:40:20 +08:00
},
new RingPiece(),
symbol = new TextAwesome
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
UseFullGlyphHeight = true,
TextSize = 48,
Icon = FontAwesome.fa_asterisk,
Shadow = false,
2017-05-18 20:38:19 +08:00
},
2017-02-15 22:24:08 +08:00
}
2017-05-18 18:40:20 +08:00
},
mainContainer = new AspectContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Y,
Children = new Drawable[]
{
background = new SpinnerBackground
{
2017-05-18 20:38:19 +08:00
Alpha = 0.6f,
2017-05-18 18:40:20 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
disc = new SpinnerDisc(spinner)
{
Scale = Vector2.Zero,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
circleContainer.CreateProxy(),
ticks = new SpinnerTicks
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
}
},
};
}
2017-05-18 18:40:20 +08:00
public float Progress => MathHelper.Clamp(disc.RotationAbsolute / 360 / spinner.SpinsRequired, 0, 1);
protected override void CheckJudgement(bool userTriggered)
{
if (Time.Current < HitObject.StartTime) return;
2017-05-18 18:40:20 +08:00
if (Progress >= 1 && !disc.Complete)
{
2017-02-15 22:24:08 +08:00
disc.Complete = true;
2017-05-18 20:38:19 +08:00
const float duration = 200;
disc.FadeAccent(completeColour, duration);
background.FadeAccent(completeColour, duration);
background.FadeOut(duration);
circle.FadeColour(completeColour, duration);
glow.FadeColour(completeColour, duration);
2017-05-18 18:40:20 +08:00
}
if (!userTriggered && Time.Current >= spinner.EndTime)
{
if (Progress >= 1)
{
Judgement.Score = OsuScoreResult.Hit300;
Judgement.Result = HitResult.Hit;
}
else if (Progress > .9)
{
Judgement.Score = OsuScoreResult.Hit100;
Judgement.Result = HitResult.Hit;
}
else if (Progress > .75)
{
Judgement.Score = OsuScoreResult.Hit50;
Judgement.Result = HitResult.Hit;
}
else
{
Judgement.Score = OsuScoreResult.Miss;
if (Time.Current >= spinner.EndTime)
Judgement.Result = HitResult.Miss;
}
}
}
2017-05-18 18:40:20 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
normalColour = baseColour;
2017-05-18 20:56:19 +08:00
background.AccentColour = normalColour;
2017-05-18 20:38:19 +08:00
completeColour = colours.YellowLight.Opacity(0.75f);
disc.AccentColour = fillColour;
2017-05-18 21:21:41 +08:00
circle.Colour = colours.BlueDark;
glow.Colour = colours.BlueDark;
2017-05-18 18:40:20 +08:00
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
circle.Rotation = disc.Rotation;
ticks.Rotation = disc.Rotation;
float relativeCircleScale = spinner.Scale * circle.DrawHeight / mainContainer.DrawHeight;
disc.ScaleTo(relativeCircleScale + (1 - relativeCircleScale) * Progress, 200, EasingTypes.OutQuint);
symbol.RotateTo(disc.Rotation / 2, 500, EasingTypes.OutQuint);
}
protected override void UpdatePreemptState()
{
base.UpdatePreemptState();
2017-05-18 18:40:20 +08:00
circleContainer.ScaleTo(spinner.Scale * 0.3f);
circleContainer.ScaleTo(spinner.Scale, TIME_PREEMPT / 1.4f, EasingTypes.OutQuint);
2017-02-22 17:08:31 +08:00
2017-05-18 18:40:20 +08:00
disc.RotateTo(-720);
symbol.RotateTo(-720);
2017-02-22 17:08:31 +08:00
mainContainer
.ScaleTo(0)
.ScaleTo(spinner.Scale * circle.DrawHeight / DrawHeight * 1.4f, TIME_PREEMPT - 150, EasingTypes.OutQuint)
.Then()
.ScaleTo(1, 500, EasingTypes.OutQuint);
}
protected override void UpdateCurrentState(ArmedState state)
{
var sequence = this.Delay(spinner.Duration).FadeOut(160);
2017-02-15 22:24:08 +08:00
switch (state)
{
case ArmedState.Hit:
sequence.ScaleTo(Scale * 1.2f, 320, EasingTypes.Out);
break;
case ArmedState.Miss:
sequence.ScaleTo(Scale * 0.8f, 320, EasingTypes.In);
break;
}
sequence.Expire();
}
}
}