// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using OpenTK; using OpenTK.Graphics; using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; using osu.Game.Rulesets.Taiko.Judgements; using osu.Game.Rulesets.Taiko.Objects; namespace osu.Game.Rulesets.Taiko.UI { /// /// A circle explodes from the hit target to indicate a hitobject has been hit. /// internal class HitExplosion : CircularContainer { public readonly TaikoJudgement Judgement; private readonly Box innerFill; private readonly bool isRim; public HitExplosion(TaikoJudgement judgement, bool isRim) { this.isRim = isRim; Judgement = judgement; Anchor = Anchor.Centre; Origin = Anchor.Centre; Size = new Vector2(TaikoPlayfield.HIT_TARGET_OFFSET + TaikoHitObject.DEFAULT_CIRCLE_DIAMETER); RelativePositionAxes = Axes.Both; BorderColour = Color4.White; BorderThickness = 1; Alpha = 0.15f; Masking = true; Children = new[] { innerFill = new Box { RelativeSizeAxes = Axes.Both, } }; } [BackgroundDependencyLoader] private void load(OsuColour colours) { innerFill.Colour = isRim ? colours.BlueDarker : colours.PinkDarker; } protected override void LoadComplete() { base.LoadComplete(); this.ScaleTo(3f, 1000, Easing.OutQuint); this.FadeOut(500); Expire(); } /// /// Transforms this hit explosion to visualise a secondary hit. /// public void VisualiseSecondHit() { this.ResizeTo(new Vector2(TaikoPlayfield.HIT_TARGET_OFFSET + TaikoHitObject.DEFAULT_STRONG_CIRCLE_DIAMETER), 50); } } }