mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:17:29 +08:00
110 lines
3.9 KiB
C#
110 lines
3.9 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.MathUtils;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Game.Rulesets.Taiko.Judgements;
|
|
using OpenTK;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
{
|
|
public class DrawableDrumRoll : DrawableTaikoHitObject<DrumRoll>
|
|
{
|
|
/// <summary>
|
|
/// Number of rolling hits required to reach the dark/final accent colour.
|
|
/// </summary>
|
|
private const int rolling_hits_for_dark_accent = 5;
|
|
|
|
private Color4 accentDarkColour;
|
|
|
|
/// <summary>
|
|
/// Rolling number of tick hits. This increases for hits and decreases for misses.
|
|
/// </summary>
|
|
private int rollingHits;
|
|
|
|
public DrawableDrumRoll(DrumRoll drumRoll)
|
|
: base(drumRoll)
|
|
{
|
|
foreach (var tick in drumRoll.Ticks)
|
|
{
|
|
var newTick = new DrawableDrumRollTick(tick)
|
|
{
|
|
X = (float)((tick.StartTime - HitObject.StartTime) / HitObject.Duration)
|
|
};
|
|
|
|
newTick.OnJudgement += onTickJudgement;
|
|
|
|
AddNested(newTick);
|
|
MainPiece.Add(newTick);
|
|
}
|
|
}
|
|
|
|
protected override TaikoJudgement CreateJudgement() => new TaikoJudgement { SecondHit = HitObject.IsStrong };
|
|
|
|
protected override TaikoPiece CreateMainPiece() => new ElongatedCirclePiece(HitObject.IsStrong)
|
|
{
|
|
Length = (float)(HitObject.Duration / HitObject.ScrollTime),
|
|
PlayfieldLengthReference = () => Parent.DrawSize.X
|
|
};
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
MainPiece.AccentColour = AccentColour = colours.YellowDark;
|
|
accentDarkColour = colours.YellowDarker;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
// This is naive, however it's based on the reasoning that the hit target
|
|
// is further than mid point of the play field, so the time taken to scroll in should always
|
|
// be greater than the time taken to scroll out to the left of the screen.
|
|
// Thus, using PreEmpt here is enough for the drum roll to completely scroll out.
|
|
LifetimeEnd = HitObject.EndTime + HitObject.ScrollTime;
|
|
}
|
|
|
|
private void onTickJudgement(DrawableHitObject<TaikoHitObject, TaikoJudgement> obj)
|
|
{
|
|
if (obj.Judgement.Result == HitResult.Hit)
|
|
rollingHits++;
|
|
else
|
|
rollingHits--;
|
|
|
|
rollingHits = MathHelper.Clamp(rollingHits, 0, rolling_hits_for_dark_accent);
|
|
|
|
Color4 newAccent = Interpolation.ValueAt((float)rollingHits / rolling_hits_for_dark_accent, AccentColour, accentDarkColour, 0, 1);
|
|
MainPiece.FadeAccent(newAccent, 100);
|
|
}
|
|
|
|
protected override void CheckJudgement(bool userTriggered)
|
|
{
|
|
if (userTriggered)
|
|
return;
|
|
|
|
if (Judgement.TimeOffset < 0)
|
|
return;
|
|
|
|
int countHit = NestedHitObjects.Count(o => o.Judgement.Result == HitResult.Hit);
|
|
|
|
if (countHit > HitObject.RequiredGoodHits)
|
|
{
|
|
Judgement.Result = HitResult.Hit;
|
|
Judgement.TaikoResult = countHit >= HitObject.RequiredGreatHits ? TaikoHitResult.Great : TaikoHitResult.Good;
|
|
}
|
|
else
|
|
Judgement.Result = HitResult.Miss;
|
|
}
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
{
|
|
}
|
|
}
|
|
}
|