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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-06-23 12:49:18 +08:00
|
|
|
using osu.Framework.Audio.Track;
|
2017-03-20 15:50:22 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-12-07 11:30:25 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
2017-06-20 13:54:23 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-05-23 16:36:35 +08:00
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2020-04-15 15:54:50 +08:00
|
|
|
using osu.Game.Graphics;
|
2020-12-07 11:30:25 +08:00
|
|
|
using osu.Game.Graphics.Backgrounds;
|
2020-04-11 12:33:19 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
2022-04-03 05:21:23 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2020-12-07 11:30:25 +08:00
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-12-07 11:30:25 +08:00
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning.Default
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A circle piece which is used uniformly through osu!taiko to visualise hitobjects.
|
|
|
|
/// <para>
|
2017-04-05 09:01:40 +08:00
|
|
|
/// Note that this can actually be non-circle if the width is changed. See <see cref="ElongatedCirclePiece"/>
|
|
|
|
/// for a usage example.
|
2017-03-20 15:50:22 +08:00
|
|
|
/// </para>
|
|
|
|
/// </summary>
|
2020-04-15 15:54:50 +08:00
|
|
|
public abstract class CirclePiece : BeatSyncedContainer, IHasAccentColour
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2022-04-03 05:21:23 +08:00
|
|
|
public const float SYMBOL_SIZE = TaikoHitObject.DEFAULT_SIZE;
|
2017-03-28 09:32:01 +08:00
|
|
|
public const float SYMBOL_BORDER = 8;
|
2022-04-03 05:21:23 +08:00
|
|
|
|
2017-05-24 16:15:51 +08:00
|
|
|
private const double pre_beat_transition_time = 80;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-04-11 12:33:19 +08:00
|
|
|
private Color4 accentColour;
|
|
|
|
|
2017-03-20 15:50:22 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The colour of the inner circle and outer glows.
|
|
|
|
/// </summary>
|
2020-04-11 12:33:19 +08:00
|
|
|
public Color4 AccentColour
|
2017-03-24 17:37:56 +08:00
|
|
|
{
|
2020-04-11 12:33:19 +08:00
|
|
|
get => accentColour;
|
2017-03-24 17:37:56 +08:00
|
|
|
set
|
|
|
|
{
|
2020-04-11 12:33:19 +08:00
|
|
|
accentColour = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-03-30 17:59:00 +08:00
|
|
|
background.Colour = AccentColour;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-03-24 17:37:56 +08:00
|
|
|
resetEdgeEffects();
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-04-11 12:33:19 +08:00
|
|
|
private bool kiaiMode;
|
|
|
|
|
2017-03-20 15:50:22 +08:00
|
|
|
/// <summary>
|
2017-03-24 14:55:25 +08:00
|
|
|
/// Whether Kiai mode effects are enabled for this circle piece.
|
2017-03-20 15:50:22 +08:00
|
|
|
/// </summary>
|
2020-04-11 12:33:19 +08:00
|
|
|
public bool KiaiMode
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2020-04-11 12:33:19 +08:00
|
|
|
get => kiaiMode;
|
2017-03-20 15:50:22 +08:00
|
|
|
set
|
|
|
|
{
|
2020-04-11 12:33:19 +08:00
|
|
|
kiaiMode = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-03-24 17:37:56 +08:00
|
|
|
resetEdgeEffects();
|
2017-03-20 15:50:22 +08:00
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-04-05 09:01:40 +08:00
|
|
|
protected override Container<Drawable> Content => content;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-04-05 09:01:40 +08:00
|
|
|
private readonly Container content;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-03-30 17:59:00 +08:00
|
|
|
private readonly Container background;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-04-07 15:55:51 +08:00
|
|
|
public Box FlashBox;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-04-12 16:40:22 +08:00
|
|
|
protected CirclePiece()
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2020-04-11 12:41:14 +08:00
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2017-05-24 14:40:34 +08:00
|
|
|
EarlyActivationMilliseconds = pre_beat_transition_time;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-07-11 21:58:06 +08:00
|
|
|
AddRangeInternal(new Drawable[]
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
background = new CircularContainer
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
Name = "Background",
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Masking = true,
|
|
|
|
Children = new Drawable[]
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
new Box
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
|
|
|
new Triangles
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
ColourLight = Color4.White,
|
|
|
|
ColourDark = Color4.White.Darken(0.1f)
|
2017-03-24 17:37:56 +08:00
|
|
|
}
|
2017-04-05 09:01:40 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
new CircularContainer
|
|
|
|
{
|
|
|
|
Name = "Ring",
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
BorderThickness = 8,
|
|
|
|
BorderColour = Color4.White,
|
|
|
|
Masking = true,
|
|
|
|
Children = new[]
|
2017-03-24 17:37:56 +08:00
|
|
|
{
|
2017-04-07 15:55:51 +08:00
|
|
|
FlashBox = new Box
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-04-05 09:01:40 +08:00
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-04-07 15:55:51 +08:00
|
|
|
Colour = Color4.White,
|
2019-08-21 12:29:50 +08:00
|
|
|
Blending = BlendingParameters.Additive,
|
2017-04-05 09:01:40 +08:00
|
|
|
Alpha = 0,
|
|
|
|
AlwaysPresent = true
|
2017-03-20 15:50:22 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-05 09:01:40 +08:00
|
|
|
},
|
|
|
|
content = new Container
|
|
|
|
{
|
2017-04-05 12:53:07 +08:00
|
|
|
Name = "Content",
|
2017-04-05 09:01:40 +08:00
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2017-08-03 12:23:12 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-03-24 17:37:56 +08:00
|
|
|
}
|
|
|
|
});
|
2017-03-20 15:50:22 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-24 16:15:51 +08:00
|
|
|
private const float edge_alpha_kiai = 0.5f;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-03-24 17:37:56 +08:00
|
|
|
private void resetEdgeEffects()
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
2017-06-12 11:48:47 +08:00
|
|
|
background.EdgeEffect = new EdgeEffectParameters
|
2017-03-20 15:50:22 +08:00
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Glow,
|
2017-05-24 16:15:51 +08:00
|
|
|
Colour = AccentColour.Opacity(KiaiMode ? edge_alpha_kiai : 1f),
|
|
|
|
Radius = KiaiMode ? 32 : 8
|
2017-03-20 15:50:22 +08:00
|
|
|
};
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-06-23 12:49:18 +08:00
|
|
|
protected override void OnNewBeat(int beatIndex, TimingControlPoint timingPoint, EffectControlPoint effectPoint, ChannelAmplitudes amplitudes)
|
2017-05-23 16:36:35 +08:00
|
|
|
{
|
|
|
|
if (!effectPoint.KiaiMode)
|
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-01-23 00:27:27 +08:00
|
|
|
if (beatIndex % timingPoint.TimeSignature.Numerator != 0)
|
2017-05-23 16:36:35 +08:00
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-05-24 16:15:51 +08:00
|
|
|
double duration = timingPoint.BeatLength * 2;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-07-16 23:28:20 +08:00
|
|
|
background
|
2017-07-23 02:50:25 +08:00
|
|
|
.FadeEdgeEffectTo(1, pre_beat_transition_time, Easing.OutQuint)
|
2017-07-16 23:28:20 +08:00
|
|
|
.Then()
|
2017-07-23 02:50:25 +08:00
|
|
|
.FadeEdgeEffectTo(edge_alpha_kiai, duration, Easing.OutQuint);
|
2017-05-23 16:36:35 +08:00
|
|
|
}
|
2017-03-20 15:50:22 +08:00
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
}
|