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
|
|
|
|
|
|
2019-11-20 20:19:49 +08:00
|
|
|
|
using System;
|
2020-12-15 06:02:33 +08:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-01-09 12:43:44 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-08-18 16:05:09 +08:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2021-09-16 17:26:12 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2019-10-17 10:57:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2020-12-07 11:30:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Default;
|
2020-04-15 15:54:50 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2020-04-17 18:52:58 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
|
{
|
2020-12-15 04:47:31 +08:00
|
|
|
|
public class DrawableDrumRoll : DrawableTaikoStrongableHitObject<DrumRoll, DrumRoll.StrongNestedHit>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of rolling hits required to reach the dark/final colour.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const int rolling_hits_for_engaged_colour = 5;
|
|
|
|
|
|
2022-08-18 16:05:09 +08:00
|
|
|
|
public override Quad ScreenSpaceDrawQuad => MainPiece.Drawable.ScreenSpaceDrawQuad;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Rolling number of tick hits. This increases for hits and decreases for misses.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private int rollingHits;
|
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
private readonly Container tickContainer;
|
2019-10-17 10:57:00 +08:00
|
|
|
|
|
|
|
|
|
private Color4 colourIdle;
|
|
|
|
|
private Color4 colourEngaged;
|
|
|
|
|
|
2022-08-05 22:30:07 +08:00
|
|
|
|
public override bool DisplayResult => false;
|
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
public DrawableDrumRoll()
|
|
|
|
|
: this(null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-10-17 10:57:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
public DrawableDrumRoll([CanBeNull] DrumRoll drumRoll)
|
|
|
|
|
: base(drumRoll)
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
2020-12-15 06:02:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y;
|
2020-04-15 15:54:50 +08:00
|
|
|
|
|
2020-05-26 15:58:28 +08:00
|
|
|
|
Content.Add(tickContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Depth = float.MinValue
|
|
|
|
|
});
|
2019-10-17 10:57:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
colourIdle = colours.YellowDark;
|
|
|
|
|
colourEngaged = colours.YellowDarker;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 10:57:00 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
|
|
OnNewResult += onNewResult;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-26 15:58:28 +08:00
|
|
|
|
protected override void RecreatePieces()
|
|
|
|
|
{
|
|
|
|
|
base.RecreatePieces();
|
|
|
|
|
updateColour();
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
protected override void OnFree()
|
|
|
|
|
{
|
|
|
|
|
base.OnFree();
|
|
|
|
|
rollingHits = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override void AddNestedHitObject(DrawableHitObject hitObject)
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
2019-10-17 12:52:21 +08:00
|
|
|
|
base.AddNestedHitObject(hitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 11:53:54 +08:00
|
|
|
|
switch (hitObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-10-17 10:57:00 +08:00
|
|
|
|
case DrawableDrumRollTick tick:
|
|
|
|
|
tickContainer.Add(tick);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override void ClearNestedHitObjects()
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
2019-10-17 12:52:21 +08:00
|
|
|
|
base.ClearNestedHitObjects();
|
2020-12-21 00:57:19 +08:00
|
|
|
|
tickContainer.Clear(false);
|
2019-10-17 10:57:00 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override DrawableHitObject CreateNestedHitObject(HitObject hitObject)
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
|
|
|
|
switch (hitObject)
|
|
|
|
|
{
|
|
|
|
|
case DrumRollTick tick:
|
|
|
|
|
return new DrawableDrumRollTick(tick);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-10-17 10:57:00 +08:00
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
return base.CreateNestedHitObject(hitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 15:54:50 +08:00
|
|
|
|
protected override SkinnableDrawable CreateMainPiece() => new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.DrumRollBody),
|
|
|
|
|
_ => new ElongatedCirclePiece());
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e) => false;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 10:57:00 +08:00
|
|
|
|
private void onNewResult(DrawableHitObject obj, JudgementResult result)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-10-17 10:57:00 +08:00
|
|
|
|
if (!(obj is DrawableDrumRollTick))
|
|
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-10-03 04:57:49 +08:00
|
|
|
|
if (result.IsHit)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
rollingHits++;
|
|
|
|
|
else
|
|
|
|
|
rollingHits--;
|
|
|
|
|
|
2019-11-20 20:19:49 +08:00
|
|
|
|
rollingHits = Math.Clamp(rollingHits, 0, rolling_hits_for_engaged_colour);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
updateColour(100);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
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)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (timeOffset < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2022-08-30 20:44:44 +08:00
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MaxResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-04 15:19:07 +08:00
|
|
|
|
protected override void UpdateHitStateTransforms(ArmedState state)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Hit:
|
|
|
|
|
case ArmedState.Miss:
|
2020-11-04 15:19:07 +08:00
|
|
|
|
this.FadeOut(100);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-03 15:20:08 +08:00
|
|
|
|
|
2020-04-17 18:52:58 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
|
|
OriginPosition = new Vector2(DrawHeight);
|
|
|
|
|
Content.X = DrawHeight / 2;
|
|
|
|
|
}
|
2018-08-03 15:20:08 +08:00
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
protected override DrawableStrongNestedHit CreateStrongNestedHit(DrumRoll.StrongNestedHit hitObject) => new StrongNestedHit(hitObject);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
|
2020-12-15 06:02:33 +08:00
|
|
|
|
private void updateColour(double fadeDuration = 0)
|
2020-04-15 17:44:12 +08:00
|
|
|
|
{
|
|
|
|
|
Color4 newColour = Interpolation.ValueAt((float)rollingHits / rolling_hits_for_engaged_colour, colourIdle, colourEngaged, 0, 1);
|
2020-12-15 06:02:33 +08:00
|
|
|
|
(MainPiece.Drawable as IHasAccentColour)?.FadeAccent(newColour, fadeDuration);
|
2020-04-15 17:44:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 01:02:31 +08:00
|
|
|
|
public class StrongNestedHit : DrawableStrongNestedHit
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2020-12-15 06:21:19 +08:00
|
|
|
|
public new DrawableDrumRoll ParentHitObject => (DrawableDrumRoll)base.ParentHitObject;
|
|
|
|
|
|
|
|
|
|
public StrongNestedHit()
|
|
|
|
|
: this(null)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StrongNestedHit([CanBeNull] DrumRoll.StrongNestedHit nestedHit)
|
|
|
|
|
: base(nestedHit)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 10:31:46 +08:00
|
|
|
|
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
{
|
2020-12-15 06:21:19 +08:00
|
|
|
|
if (!ParentHitObject.Judged)
|
2018-08-03 15:56:46 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2020-12-15 06:21:19 +08:00
|
|
|
|
ApplyResult(r => r.Type = ParentHitObject.IsHit ? r.Judgement.MaxResult : r.Judgement.MinResult);
|
2018-08-03 15:56:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-17 00:15:01 +08:00
|
|
|
|
public override void OnKilled()
|
|
|
|
|
{
|
|
|
|
|
base.OnKilled();
|
|
|
|
|
|
|
|
|
|
if (Time.Current > ParentHitObject.HitObject.GetEndTime() && !Judged)
|
|
|
|
|
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
|
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e) => false;
|
2018-08-03 15:56:46 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|