1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 04:47:38 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/Drawable/DrawableFruit.cs

129 lines
4.1 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
2016-11-14 17:03:20 +08:00
using osu.Framework.Allocation;
2017-08-03 07:32:38 +08:00
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
2017-08-03 07:32:38 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.MathUtils;
2017-08-03 07:32:38 +08:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Catch.Judgements;
using osu.Game.Rulesets.Objects.Drawables;
using OpenTK;
2017-08-03 07:32:38 +08:00
using OpenTK.Graphics;
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
2017-08-08 09:35:56 +08:00
internal class DrawableFruit : DrawableScrollingHitObject<CatchBaseHit, CatchJudgement>
{
2017-08-08 09:36:05 +08:00
private Box box;
2017-08-03 07:32:38 +08:00
private class Pulp : Circle, IHasAccentColour
{
public Pulp()
{
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Glow,
Radius = 5,
Colour = AccentColour.Opacity(0.5f),
};
}
public Color4 AccentColour { get; set; } = Color4.White;
}
public DrawableFruit(CatchBaseHit h) : base(h)
{
Origin = Anchor.Centre;
Size = new Vector2(50);
2017-08-08 09:35:56 +08:00
RelativePositionAxes = Axes.Both;
2017-08-08 09:35:56 +08:00
X = h.Position;
2017-08-08 09:35:56 +08:00
Rotation = (float)(RNG.NextDouble() - 0.5f) * 40;
}
[BackgroundDependencyLoader]
private void load()
{
Children = new Framework.Graphics.Drawable[]
{
2017-08-08 09:36:05 +08:00
box = new Box
2017-08-07 15:02:14 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-08-08 09:36:05 +08:00
Colour = Color4.Blue,
2017-08-07 15:02:14 +08:00
},
2017-08-03 07:32:38 +08:00
new Pulp
{
RelativePositionAxes = Axes.Both,
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.Centre,
Scale = new Vector2(0.12f),
Y = 0.08f,
},
2017-08-03 07:32:38 +08:00
new Pulp
{
RelativePositionAxes = Axes.Both,
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.Centre,
Scale = new Vector2(0.32f),
Position = new Vector2(-0.16f, 0.3f),
},
2017-08-03 07:32:38 +08:00
new Pulp
{
RelativePositionAxes = Axes.Both,
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.Centre,
Scale = new Vector2(0.32f),
Position = new Vector2(0.16f, 0.3f),
},
2017-08-03 07:32:38 +08:00
new Pulp
{
RelativePositionAxes = Axes.Both,
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.Centre,
Scale = new Vector2(0.32f),
Position = new Vector2(0, 0.6f),
},
};
}
protected override CatchJudgement CreateJudgement() => new CatchJudgement();
private const float preempt = 1000;
2017-08-08 09:36:05 +08:00
protected override void CheckJudgement(bool userTriggered)
{
if (Judgement.TimeOffset > 0)
Judgement.Result = HitResult.Miss;
}
protected override void UpdateState(ArmedState state)
{
using (BeginAbsoluteSequence(HitObject.StartTime - preempt))
{
// animation
2017-08-08 09:35:56 +08:00
this.FadeIn(200);
}
2017-08-08 09:36:05 +08:00
switch (state)
{
case ArmedState.Miss:
using (BeginAbsoluteSequence(HitObject.StartTime, true))
{
this.FadeOut(250).RotateTo(Rotation * 2, 250, Easing.Out);
box.FadeColour(Color4.OrangeRed);
}
break;
}
}
}
}