1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 20:17:34 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/Drawables/DrawableSwell.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

293 lines
9.5 KiB
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-04-04 11:38:55 +08:00
using System;
using System.Linq;
using JetBrains.Annotations;
2017-03-28 14:05:45 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2018-11-20 15:51:59 +08:00
using osuTK.Graphics;
using osu.Framework.Graphics.Shapes;
2021-09-16 17:26:12 +08:00
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Objects;
2020-12-07 11:30:25 +08:00
using osu.Game.Rulesets.Taiko.Skinning.Default;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
public class DrawableSwell : DrawableTaikoHitObject<Swell>
{
2017-03-31 10:20:04 +08:00
private const float target_ring_thick_border = 1.4f;
2017-03-28 14:05:45 +08:00
private const float target_ring_thin_border = 1f;
private const float target_ring_scale = 5f;
2017-03-31 10:20:04 +08:00
private const float inner_ring_alpha = 0.65f;
2018-04-13 17:19:50 +08:00
2019-08-27 14:21:54 +08:00
/// <summary>
/// Offset away from the start time of the swell at which the ring starts appearing.
/// </summary>
private const double ring_appear_offset = 100;
2022-06-20 23:22:41 +08:00
private readonly Container<DrawableSwellTick> ticks;
2017-03-28 14:05:45 +08:00
private readonly Container bodyContainer;
private readonly CircularContainer targetRing;
2017-03-31 10:20:04 +08:00
private readonly CircularContainer expandingRing;
2018-04-13 17:19:50 +08:00
public override bool DisplayResult => false;
public DrawableSwell()
: this(null)
{
}
public DrawableSwell([CanBeNull] Swell swell)
2017-03-25 19:57:49 +08:00
: base(swell)
{
FillMode = FillMode.Fit;
2018-04-13 17:19:50 +08:00
Content.Add(bodyContainer = new Container
2017-03-28 14:05:45 +08:00
{
RelativeSizeAxes = Axes.Both,
Depth = 1,
Children = new Drawable[]
2017-03-28 14:05:45 +08:00
{
expandingRing = new CircularContainer
2017-03-28 14:05:45 +08:00
{
Name = "Expanding ring",
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Alpha = 0,
RelativeSizeAxes = Axes.Both,
2019-08-21 12:29:50 +08:00
Blending = BlendingParameters.Additive,
Masking = true,
Children = new[]
2017-03-28 14:05:45 +08:00
{
new Box
2017-03-28 14:05:45 +08:00
{
RelativeSizeAxes = Axes.Both,
Alpha = inner_ring_alpha,
2017-03-28 14:05:45 +08:00
}
}
},
targetRing = new CircularContainer
{
Name = "Target ring (thick border)",
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Masking = true,
BorderThickness = target_ring_thick_border,
2019-08-21 12:29:50 +08:00
Blending = BlendingParameters.Additive,
Children = new Drawable[]
2017-03-28 14:05:45 +08:00
{
new Box
2017-03-28 14:05:45 +08:00
{
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[]
2017-03-28 14:05:45 +08:00
{
new Box
2017-03-28 14:05:45 +08:00
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true
2017-03-28 14:05:45 +08:00
}
}
}
}
2017-03-28 14:05:45 +08:00
}
}
2018-03-16 15:09:51 +08:00
});
2018-04-13 17:19:50 +08:00
2022-06-20 23:22:41 +08:00
AddInternal(ticks = new Container<DrawableSwellTick> { RelativeSizeAxes = Axes.Both });
2017-03-28 14:05:45 +08:00
}
2018-04-13 17:19:50 +08:00
2017-03-28 14:05:45 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
2017-03-28 14:05:45 +08:00
{
2017-03-31 10:20:04 +08:00
expandingRing.Colour = colours.YellowLight;
2017-03-28 14:05:45 +08:00
targetRing.BorderColour = colours.YellowDark.Opacity(0.25f);
}
2018-04-13 17:19:50 +08:00
protected override SkinnableDrawable CreateMainPiece() => new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.Swell),
_ => new SwellCirclePiece
{
// to allow for rotation transform
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
});
protected override void OnFree()
2017-08-09 09:54:00 +08:00
{
base.OnFree();
UnproxyContent();
2018-04-13 17:19:50 +08:00
lastWasCentre = null;
2017-08-09 09:54:00 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void AddNestedHitObject(DrawableHitObject hitObject)
{
base.AddNestedHitObject(hitObject);
2019-10-17 11:53:54 +08:00
switch (hitObject)
{
case DrawableSwellTick tick:
2022-06-20 23:22:41 +08:00
ticks.Add(tick);
break;
}
}
protected override void ClearNestedHitObjects()
{
base.ClearNestedHitObjects();
2022-06-20 23:22:41 +08:00
ticks.Clear(false);
}
protected override DrawableHitObject CreateNestedHitObject(HitObject hitObject)
{
switch (hitObject)
{
case SwellTick tick:
return new DrawableSwellTick(tick);
}
return base.CreateNestedHitObject(hitObject);
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
{
if (userTriggered)
{
DrawableSwellTick nextTick = null;
2022-06-20 23:22:41 +08:00
foreach (var t in ticks)
{
if (!t.Result.HasResult)
{
nextTick = t;
break;
}
}
2018-04-13 17:19:50 +08:00
2020-09-29 14:13:11 +08:00
nextTick?.TriggerResult(true);
2022-06-20 23:22:41 +08:00
int numHits = ticks.Count(r => r.IsHit);
float completion = (float)numHits / HitObject.RequiredHits;
expandingRing
.FadeTo(expandingRing.Alpha + Math.Clamp(completion / 16, 0.1f, 0.6f), 50)
.Then()
.FadeTo(completion / 8, 2000, Easing.OutQuint);
MainPiece.Drawable.RotateTo((float)(completion * HitObject.Duration / 8), 4000, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
2022-06-20 23:22:41 +08:00
expandingRing.ScaleTo(1f + Math.Min(target_ring_scale - 1f, (target_ring_scale - 1f) * completion * 1.3f), 260, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
if (numHits == HitObject.RequiredHits)
2022-06-20 23:22:41 +08:00
ApplyResult(r => r.Type = r.Judgement.MaxResult);
}
else
{
if (timeOffset < 0)
return;
2018-04-13 17:19:50 +08:00
int numHits = 0;
2022-06-20 23:22:41 +08:00
foreach (var tick in ticks)
{
if (tick.IsHit)
{
numHits++;
continue;
}
if (!tick.Result.HasResult)
tick.TriggerResult(false);
}
2022-08-30 20:44:44 +08:00
ApplyResult(r => r.Type = numHits == HitObject.RequiredHits ? r.Judgement.MaxResult : r.Judgement.MinResult);
}
}
2018-04-13 17:19:50 +08:00
2020-11-04 15:19:07 +08:00
protected override void UpdateStartTimeStateTransforms()
{
2020-11-04 15:19:07 +08:00
base.UpdateStartTimeStateTransforms();
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(-ring_appear_offset))
targetRing.ScaleTo(target_ring_scale, 400, Easing.OutQuint);
}
2020-11-04 15:19:07 +08:00
protected override void UpdateHitStateTransforms(ArmedState state)
2017-03-24 14:05:54 +08:00
{
const double transition_duration = 300;
2018-04-13 17:19:50 +08:00
2017-03-28 14:05:45 +08:00
switch (state)
{
case ArmedState.Idle:
expandingRing.FadeTo(0);
break;
2019-04-01 11:44:46 +08:00
case ArmedState.Miss:
2017-03-28 14:05:45 +08:00
case ArmedState.Hit:
2020-11-04 15:19:07 +08:00
this.FadeOut(transition_duration, Easing.Out);
bodyContainer.ScaleTo(1.4f, transition_duration);
2017-03-28 14:05:45 +08:00
break;
}
2017-03-24 14:05:54 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void Update()
{
base.Update();
2018-04-13 17:19:50 +08:00
Size = BaseSize * Parent.RelativeChildSize;
2018-04-13 17:19:50 +08:00
// Make the swell stop at the hit target
X = Math.Max(0, X);
2018-04-13 17:19:50 +08:00
2019-08-27 14:21:54 +08:00
if (Time.Current >= HitObject.StartTime - ring_appear_offset)
ProxyContent();
else
UnproxyContent();
}
2018-04-13 17:19:50 +08:00
private bool? lastWasCentre;
2018-04-13 17:19:50 +08:00
2021-09-16 17:26:12 +08:00
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
{
// Don't handle keys before the swell starts
if (Time.Current < HitObject.StartTime)
return false;
2018-04-13 17:19:50 +08:00
bool isCentre = e.Action == TaikoAction.LeftCentre || e.Action == TaikoAction.RightCentre;
2018-04-13 17:19:50 +08:00
// Ensure alternating centre and rim hits
if (lastWasCentre == isCentre)
return false;
2019-02-28 12:31:40 +08:00
lastWasCentre = isCentre;
2018-04-13 17:19:50 +08:00
UpdateResult(true);
2018-04-13 17:19:50 +08:00
return true;
}
}
}