2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
using System;
|
2018-11-09 12:58:46 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-02-14 17:47:05 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
public class DrawableHitCircle : DrawableOsuHitObject, IDrawableHitObjectWithProxiedApproach
|
|
|
|
|
{
|
|
|
|
|
public ApproachCircle ApproachCircle;
|
|
|
|
|
private readonly CirclePiece circle;
|
|
|
|
|
private readonly RingPiece ring;
|
|
|
|
|
private readonly FlashPiece flash;
|
|
|
|
|
private readonly ExplodePiece explode;
|
|
|
|
|
private readonly NumberPiece number;
|
|
|
|
|
private readonly GlowPiece glow;
|
|
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
|
private readonly IBindable<Vector2> positionBindable = new Bindable<Vector2>();
|
|
|
|
|
private readonly IBindable<int> stackHeightBindable = new Bindable<int>();
|
|
|
|
|
private readonly IBindable<float> scaleBindable = new Bindable<float>();
|
|
|
|
|
|
2019-01-21 09:57:14 +08:00
|
|
|
|
public OsuAction? HitAction => circle.HitAction;
|
|
|
|
|
|
2019-02-14 17:47:05 +08:00
|
|
|
|
private readonly Container explodeContainer;
|
|
|
|
|
|
|
|
|
|
private readonly Container scaleContainer;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public DrawableHitCircle(HitCircle h)
|
|
|
|
|
: base(h)
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
|
|
|
|
Position = HitObject.StackedPosition;
|
|
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
|
{
|
2019-02-14 17:47:05 +08:00
|
|
|
|
scaleContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-14 17:47:05 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Child = explodeContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-14 17:47:05 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
glow = new GlowPiece(),
|
|
|
|
|
circle = new CirclePiece
|
|
|
|
|
{
|
|
|
|
|
Hit = () =>
|
|
|
|
|
{
|
|
|
|
|
if (AllJudged)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
UpdateResult(true);
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
number = new NumberPiece
|
|
|
|
|
{
|
|
|
|
|
Text = (HitObject.IndexInCurrentCombo + 1).ToString(),
|
|
|
|
|
},
|
|
|
|
|
ring = new RingPiece(),
|
|
|
|
|
flash = new FlashPiece(),
|
|
|
|
|
explode = new ExplodePiece(),
|
|
|
|
|
ApproachCircle = new ApproachCircle
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Scale = new Vector2(4),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//may not be so correct
|
|
|
|
|
Size = circle.DrawSize;
|
2018-11-09 12:58:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
positionBindable.BindValueChanged(_ => Position = HitObject.StackedPosition);
|
|
|
|
|
stackHeightBindable.BindValueChanged(_ => Position = HitObject.StackedPosition);
|
2019-02-22 19:13:38 +08:00
|
|
|
|
scaleBindable.BindValueChanged(scale => scaleContainer.Scale = new Vector2(scale.NewValue), true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
|
positionBindable.BindTo(HitObject.PositionBindable);
|
|
|
|
|
stackHeightBindable.BindTo(HitObject.StackHeightBindable);
|
|
|
|
|
scaleBindable.BindTo(HitObject.ScaleBindable);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-22 13:45:25 +08:00
|
|
|
|
AccentColour.BindValueChanged(colour =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-07-22 13:45:25 +08:00
|
|
|
|
explode.Colour = colour.NewValue;
|
|
|
|
|
glow.Colour = colour.NewValue;
|
|
|
|
|
circle.Colour = colour.NewValue;
|
|
|
|
|
ApproachCircle.Colour = colour.NewValue;
|
|
|
|
|
}, true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
|
|
|
|
if (!HitObject.HitWindows.CanBeHit(timeOffset))
|
2018-08-03 14:38:48 +08:00
|
|
|
|
ApplyResult(r => r.Type = HitResult.Miss);
|
2018-08-01 20:46:22 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var result = HitObject.HitWindows.ResultFor(timeOffset);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
if (result == HitResult.None)
|
2018-06-28 19:41:23 +08:00
|
|
|
|
{
|
2018-07-06 16:24:30 +08:00
|
|
|
|
Shake(Math.Abs(timeOffset) - HitObject.HitWindows.HalfWindowFor(HitResult.Miss));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return;
|
2018-06-28 19:41:23 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-03 14:38:48 +08:00
|
|
|
|
ApplyResult(r => r.Type = result);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdatePreemptState()
|
|
|
|
|
{
|
|
|
|
|
base.UpdatePreemptState();
|
|
|
|
|
|
2018-07-05 10:32:09 +08:00
|
|
|
|
ApproachCircle.FadeIn(Math.Min(HitObject.TimeFadeIn * 2, HitObject.TimePreempt));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
ApproachCircle.ScaleTo(1.1f, HitObject.TimePreempt);
|
2018-12-13 13:55:28 +08:00
|
|
|
|
ApproachCircle.Expire(true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateCurrentState(ArmedState state)
|
|
|
|
|
{
|
|
|
|
|
glow.FadeOut(400);
|
|
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Idle:
|
|
|
|
|
this.Delay(HitObject.TimePreempt).FadeOut(500);
|
|
|
|
|
|
|
|
|
|
Expire(true);
|
|
|
|
|
|
2019-01-21 09:57:14 +08:00
|
|
|
|
circle.HitAction = null;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
// override lifetime end as FadeIn may have been changed externally, causing out expiration to be too early.
|
|
|
|
|
LifetimeEnd = HitObject.StartTime + HitObject.HitWindows.HalfWindowFor(HitResult.Miss);
|
|
|
|
|
break;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ArmedState.Miss:
|
|
|
|
|
ApproachCircle.FadeOut(50);
|
|
|
|
|
this.FadeOut(100);
|
|
|
|
|
Expire();
|
|
|
|
|
break;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ArmedState.Hit:
|
|
|
|
|
ApproachCircle.FadeOut(50);
|
|
|
|
|
|
|
|
|
|
const double flash_in = 40;
|
|
|
|
|
flash.FadeTo(0.8f, flash_in)
|
|
|
|
|
.Then()
|
|
|
|
|
.FadeOut(100);
|
|
|
|
|
|
|
|
|
|
explode.FadeIn(flash_in);
|
|
|
|
|
|
|
|
|
|
using (BeginDelayedSequence(flash_in, true))
|
|
|
|
|
{
|
|
|
|
|
//after the flash, we can hide some elements that were behind it
|
|
|
|
|
ring.FadeOut();
|
|
|
|
|
circle.FadeOut();
|
|
|
|
|
number.FadeOut();
|
|
|
|
|
|
2019-02-14 17:47:05 +08:00
|
|
|
|
this.FadeOut(800);
|
|
|
|
|
explodeContainer.ScaleTo(1.5f, 400, Easing.OutQuad);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Expire();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Drawable ProxiedLayer => ApproachCircle;
|
|
|
|
|
}
|
|
|
|
|
}
|