2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
2018-08-02 19:36:08 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-08-02 15:09:04 +08:00
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
|
{
|
|
|
|
|
public class DrawableSwell : DrawableTaikoHitObject<Swell>
|
|
|
|
|
{
|
|
|
|
|
private const float target_ring_thick_border = 1.4f;
|
|
|
|
|
private const float target_ring_thin_border = 1f;
|
|
|
|
|
private const float target_ring_scale = 5f;
|
|
|
|
|
private const float inner_ring_alpha = 0.65f;
|
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
private readonly List<DrawableSwellTick> ticks = new List<DrawableSwellTick>();
|
2018-08-02 19:36:08 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly Container bodyContainer;
|
|
|
|
|
private readonly CircularContainer targetRing;
|
|
|
|
|
private readonly CircularContainer expandingRing;
|
|
|
|
|
|
|
|
|
|
private readonly SwellSymbolPiece symbol;
|
|
|
|
|
|
|
|
|
|
public DrawableSwell(Swell swell)
|
|
|
|
|
: base(swell)
|
|
|
|
|
{
|
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
|
|
2018-06-11 20:45:19 +08:00
|
|
|
|
Content.Add(bodyContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = 1,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
expandingRing = new CircularContainer
|
|
|
|
|
{
|
|
|
|
|
Name = "Expanding ring",
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Blending = BlendingMode.Additive,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = inner_ring_alpha,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
targetRing = new CircularContainer
|
|
|
|
|
{
|
|
|
|
|
Name = "Target ring (thick border)",
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
BorderThickness = target_ring_thick_border,
|
|
|
|
|
Blending = BlendingMode.Additive,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
AlwaysPresent = true
|
|
|
|
|
},
|
|
|
|
|
new CircularContainer
|
|
|
|
|
{
|
|
|
|
|
Name = "Target ring (thin border)",
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true,
|
|
|
|
|
BorderThickness = target_ring_thin_border,
|
|
|
|
|
BorderColour = Color4.White,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
AlwaysPresent = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
MainPiece.Add(symbol = new SwellSymbolPiece());
|
2018-08-02 19:36:08 +08:00
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
foreach (var tick in HitObject.NestedHitObjects.OfType<SwellTick>())
|
|
|
|
|
{
|
|
|
|
|
var vis = new DrawableSwellTick(tick);
|
|
|
|
|
|
|
|
|
|
ticks.Add(vis);
|
|
|
|
|
AddInternal(vis);
|
|
|
|
|
AddNested(vis);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
MainPiece.AccentColour = colours.YellowDark;
|
|
|
|
|
expandingRing.Colour = colours.YellowLight;
|
|
|
|
|
targetRing.BorderColour = colours.YellowDark.Opacity(0.25f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
// We need to set this here because RelativeSizeAxes won't/can't set our size by default with a different RelativeChildSize
|
|
|
|
|
Width *= Parent.RelativeChildSize.X;
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2018-08-03 15:35:29 +08:00
|
|
|
|
var nextTick = ticks.FirstOrDefault(j => !j.IsHit);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
nextTick?.TriggerResult(HitResult.Great);
|
2018-08-02 15:09:04 +08:00
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
var numHits = ticks.Count(r => r.IsHit);
|
2018-08-02 15:09:04 +08:00
|
|
|
|
|
|
|
|
|
var completion = (float)numHits / HitObject.RequiredHits;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
expandingRing
|
|
|
|
|
.FadeTo(expandingRing.Alpha + MathHelper.Clamp(completion / 16, 0.1f, 0.6f), 50)
|
|
|
|
|
.Then()
|
|
|
|
|
.FadeTo(completion / 8, 2000, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
symbol.RotateTo((float)(completion * HitObject.Duration / 8), 4000, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
expandingRing.ScaleTo(1f + Math.Min(target_ring_scale - 1f, (target_ring_scale - 1f) * completion * 1.3f), 260, Easing.OutQuint);
|
|
|
|
|
|
2018-08-02 15:09:04 +08:00
|
|
|
|
if (numHits == HitObject.RequiredHits)
|
2018-08-03 15:35:29 +08:00
|
|
|
|
ApplyResult(r => r.Type = HitResult.Great);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (timeOffset < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-08-02 15:09:04 +08:00
|
|
|
|
int numHits = 0;
|
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
foreach (var tick in ticks)
|
2018-08-02 15:09:04 +08:00
|
|
|
|
{
|
2018-08-03 15:35:29 +08:00
|
|
|
|
if (tick.IsHit)
|
2018-08-02 15:09:04 +08:00
|
|
|
|
{
|
|
|
|
|
numHits++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
tick.TriggerResult(HitResult.Miss);
|
2018-08-02 15:09:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 19:36:08 +08:00
|
|
|
|
var hitResult = numHits > HitObject.RequiredHits / 2 ? HitResult.Good : HitResult.Miss;
|
|
|
|
|
|
2018-08-03 15:35:29 +08:00
|
|
|
|
ApplyResult(r => r.Type = hitResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
|
|
|
{
|
|
|
|
|
const float preempt = 100;
|
|
|
|
|
const float out_transition_time = 300;
|
|
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
2018-06-11 21:32:08 +08:00
|
|
|
|
case ArmedState.Idle:
|
2018-06-11 20:45:19 +08:00
|
|
|
|
UnproxyContent();
|
2018-06-11 21:32:08 +08:00
|
|
|
|
expandingRing.FadeTo(0);
|
|
|
|
|
using (BeginAbsoluteSequence(HitObject.StartTime - preempt, true))
|
|
|
|
|
targetRing.ScaleTo(target_ring_scale, preempt * 4, Easing.OutQuint);
|
|
|
|
|
break;
|
|
|
|
|
case ArmedState.Miss:
|
2018-04-13 17:19:50 +08:00
|
|
|
|
case ArmedState.Hit:
|
2018-06-11 21:32:08 +08:00
|
|
|
|
this.FadeOut(out_transition_time, Easing.Out);
|
|
|
|
|
bodyContainer.ScaleTo(1.4f, out_transition_time);
|
|
|
|
|
|
|
|
|
|
Expire();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
Size = BaseSize * Parent.RelativeChildSize;
|
|
|
|
|
|
|
|
|
|
// Make the swell stop at the hit target
|
|
|
|
|
X = Math.Max(0, X);
|
|
|
|
|
|
|
|
|
|
double t = Math.Min(HitObject.StartTime, Time.Current);
|
2018-06-17 23:27:18 +08:00
|
|
|
|
if (t == HitObject.StartTime)
|
2018-06-11 20:45:19 +08:00
|
|
|
|
ProxyContent();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool? lastWasCentre;
|
|
|
|
|
|
|
|
|
|
public override bool OnPressed(TaikoAction action)
|
|
|
|
|
{
|
|
|
|
|
// Don't handle keys before the swell starts
|
|
|
|
|
if (Time.Current < HitObject.StartTime)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
var isCentre = action == TaikoAction.LeftCentre || action == TaikoAction.RightCentre;
|
|
|
|
|
|
|
|
|
|
// Ensure alternating centre and rim hits
|
|
|
|
|
if (lastWasCentre == isCentre)
|
|
|
|
|
return false;
|
|
|
|
|
lastWasCentre = isCentre;
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
UpdateResult(true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|