2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2016-11-19 18:07:57 +08:00
|
|
|
|
using System;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables.Pieces;
|
2016-11-02 11:22:29 +08:00
|
|
|
|
using OpenTK;
|
2017-09-06 16:02:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
2017-12-31 04:23:18 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
2017-02-14 09:22:28 +08:00
|
|
|
|
public class DrawableHitCircle : DrawableOsuHitObject, IDrawableHitObjectWithProxiedApproach
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2016-11-19 18:07:57 +08:00
|
|
|
|
public ApproachCircle ApproachCircle;
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly CirclePiece circle;
|
|
|
|
|
private readonly RingPiece ring;
|
|
|
|
|
private readonly FlashPiece flash;
|
|
|
|
|
private readonly ExplodePiece explode;
|
|
|
|
|
private readonly NumberPiece number;
|
|
|
|
|
private readonly GlowPiece glow;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
|
2017-12-30 13:15:42 +08:00
|
|
|
|
public DrawableHitCircle(HitCircle h) : base(h)
|
2016-10-13 09:10:15 +08:00
|
|
|
|
{
|
2017-02-14 17:55:54 +08:00
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
|
|
2017-03-23 14:37:16 +08:00
|
|
|
|
Position = HitObject.StackedPosition;
|
2018-01-01 18:55:24 +08:00
|
|
|
|
Scale = new Vector2(h.Scale);
|
2016-10-19 15:13:53 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2016-11-17 16:20:51 +08:00
|
|
|
|
glow = new GlowPiece
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2017-03-23 14:37:16 +08:00
|
|
|
|
Colour = AccentColour
|
2016-10-19 15:13:53 +08:00
|
|
|
|
},
|
2016-11-17 16:20:51 +08:00
|
|
|
|
circle = new CirclePiece
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2017-03-23 14:37:16 +08:00
|
|
|
|
Colour = AccentColour,
|
2016-11-26 15:51:51 +08:00
|
|
|
|
Hit = () =>
|
|
|
|
|
{
|
2017-09-06 16:02:13 +08:00
|
|
|
|
if (AllJudged)
|
|
|
|
|
return false;
|
2017-01-08 20:52:19 +08:00
|
|
|
|
|
2016-11-26 15:51:51 +08:00
|
|
|
|
UpdateJudgement(true);
|
|
|
|
|
return true;
|
|
|
|
|
},
|
2016-10-19 15:13:53 +08:00
|
|
|
|
},
|
2017-03-07 09:59:19 +08:00
|
|
|
|
number = new NumberPiece
|
2017-02-15 22:23:55 +08:00
|
|
|
|
{
|
2018-01-03 14:12:27 +08:00
|
|
|
|
Text = (HitObject.IndexInCurrentCombo + 1).ToString(),
|
2017-02-15 22:23:55 +08:00
|
|
|
|
},
|
2016-11-17 16:20:51 +08:00
|
|
|
|
ring = new RingPiece(),
|
|
|
|
|
flash = new FlashPiece(),
|
|
|
|
|
explode = new ExplodePiece
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2017-03-23 14:37:16 +08:00
|
|
|
|
Colour = AccentColour,
|
2016-10-19 15:13:53 +08:00
|
|
|
|
},
|
2017-03-07 09:59:19 +08:00
|
|
|
|
ApproachCircle = new ApproachCircle
|
2016-10-19 15:13:53 +08:00
|
|
|
|
{
|
2017-11-09 13:04:59 +08:00
|
|
|
|
Alpha = 0,
|
|
|
|
|
Scale = new Vector2(4),
|
2017-03-23 14:37:16 +08:00
|
|
|
|
Colour = AccentColour,
|
2016-10-19 15:13:53 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2016-11-28 11:40:24 +08:00
|
|
|
|
|
|
|
|
|
//may not be so correct
|
|
|
|
|
Size = circle.DrawSize;
|
2016-11-19 18:07:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
|
2016-11-26 15:51:51 +08:00
|
|
|
|
{
|
|
|
|
|
if (!userTriggered)
|
|
|
|
|
{
|
2017-09-06 16:02:13 +08:00
|
|
|
|
if (timeOffset > HitObject.HitWindowFor(HitResult.Meh))
|
|
|
|
|
AddJudgement(new OsuJudgement { Result = HitResult.Miss });
|
2016-11-26 15:51:51 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 16:02:13 +08:00
|
|
|
|
AddJudgement(new OsuJudgement
|
|
|
|
|
{
|
|
|
|
|
Result = HitObject.ScoreResultForOffset(Math.Abs(timeOffset)),
|
|
|
|
|
PositionOffset = Vector2.Zero //todo: set to correct value
|
|
|
|
|
});
|
2016-11-26 15:51:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 17:40:54 +08:00
|
|
|
|
protected override void UpdatePreemptState()
|
|
|
|
|
{
|
|
|
|
|
base.UpdatePreemptState();
|
2016-11-19 18:07:57 +08:00
|
|
|
|
|
2017-12-30 00:52:28 +08:00
|
|
|
|
ApproachCircle.FadeIn(Math.Min(FadeInDuration * 2, TIME_PREEMPT));
|
2017-02-06 21:17:29 +08:00
|
|
|
|
ApproachCircle.ScaleTo(1.1f, TIME_PREEMPT);
|
2016-11-28 17:40:54 +08:00
|
|
|
|
}
|
2016-11-18 16:36:53 +08:00
|
|
|
|
|
2017-04-27 16:37:38 +08:00
|
|
|
|
protected override void UpdateCurrentState(ArmedState state)
|
2016-11-28 17:40:54 +08:00
|
|
|
|
{
|
2017-12-27 00:25:18 +08:00
|
|
|
|
glow.FadeOut(400);
|
2016-10-19 15:13:53 +08:00
|
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2016-11-25 15:26:50 +08:00
|
|
|
|
case ArmedState.Idle:
|
2017-12-27 00:25:18 +08:00
|
|
|
|
this.Delay(TIME_PREEMPT).FadeOut(500);
|
2017-12-29 17:51:14 +08:00
|
|
|
|
|
2017-03-17 14:30:19 +08:00
|
|
|
|
Expire(true);
|
2017-12-29 17:51:14 +08:00
|
|
|
|
|
|
|
|
|
// override lifetime end as FadeIn may have been changed externally, causing out expiration to be too early.
|
|
|
|
|
LifetimeEnd = HitObject.StartTime + HitObject.HitWindowFor(HitResult.Miss);
|
2016-10-19 15:13:53 +08:00
|
|
|
|
break;
|
2016-11-25 15:26:50 +08:00
|
|
|
|
case ArmedState.Miss:
|
2017-07-10 06:01:25 +08:00
|
|
|
|
ApproachCircle.FadeOut(50);
|
2017-12-27 00:25:18 +08:00
|
|
|
|
this.FadeOut(100);
|
2017-03-17 14:30:19 +08:00
|
|
|
|
Expire();
|
2016-11-25 15:26:50 +08:00
|
|
|
|
break;
|
|
|
|
|
case ArmedState.Hit:
|
2017-07-10 06:01:25 +08:00
|
|
|
|
ApproachCircle.FadeOut(50);
|
|
|
|
|
|
2016-12-15 21:35:12 +08:00
|
|
|
|
const double flash_in = 40;
|
2017-07-16 23:28:20 +08:00
|
|
|
|
flash.FadeTo(0.8f, flash_in)
|
|
|
|
|
.Then()
|
|
|
|
|
.FadeOut(100);
|
|
|
|
|
|
2016-11-02 12:22:23 +08:00
|
|
|
|
explode.FadeIn(flash_in);
|
2016-10-19 15:13:53 +08:00
|
|
|
|
|
2017-07-16 23:28:20 +08:00
|
|
|
|
using (BeginDelayedSequence(flash_in, true))
|
|
|
|
|
{
|
|
|
|
|
//after the flash, we can hide some elements that were behind it
|
|
|
|
|
ring.FadeOut();
|
|
|
|
|
circle.FadeOut();
|
|
|
|
|
number.FadeOut();
|
|
|
|
|
|
|
|
|
|
this.FadeOut(800)
|
2017-07-23 02:50:25 +08:00
|
|
|
|
.ScaleTo(Scale * 1.5f, 400, Easing.OutQuad);
|
2017-07-16 23:28:20 +08:00
|
|
|
|
}
|
2016-10-19 15:13:53 +08:00
|
|
|
|
|
2017-03-17 14:30:19 +08:00
|
|
|
|
Expire();
|
2016-10-19 15:13:53 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-14 09:22:28 +08:00
|
|
|
|
|
|
|
|
|
public Drawable ProxiedLayer => ApproachCircle;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|