2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-20 09:24:28 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-03-17 10:08:50 +00:00
|
|
|
|
using System;
|
2017-03-28 07:49:39 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2017-12-30 20:23:18 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Judgements;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
2017-03-17 10:08:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
2017-03-17 10:08:50 +00:00
|
|
|
|
{
|
2017-04-05 01:01:40 +00:00
|
|
|
|
public class DrawableDrumRollTick : DrawableTaikoHitObject<DrumRollTick>
|
2017-03-17 10:08:50 +00:00
|
|
|
|
{
|
|
|
|
|
public DrawableDrumRollTick(DrumRollTick tick)
|
|
|
|
|
: base(tick)
|
|
|
|
|
{
|
2017-08-03 04:24:13 +00:00
|
|
|
|
FillMode = FillMode.Fit;
|
2017-03-17 10:08:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-09 11:17:05 +00:00
|
|
|
|
public override bool DisplayJudgement => false;
|
|
|
|
|
|
2017-04-05 01:01:40 +00:00
|
|
|
|
protected override TaikoPiece CreateMainPiece() => new TickPiece
|
|
|
|
|
{
|
|
|
|
|
Filled = HitObject.FirstTick
|
|
|
|
|
};
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
|
2017-03-17 10:08:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (!userTriggered)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
if (!(Math.Abs(timeOffset) < HitObject.HitWindow))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
AddJudgement(new TaikoDrumRollTickJudgement { Result = HitResult.Great });
|
|
|
|
|
if (HitObject.IsStrong)
|
|
|
|
|
AddJudgement(new TaikoStrongHitJudgement());
|
2017-03-17 10:08:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 10:43:00 +00:00
|
|
|
|
protected override void UpdateState(ArmedState state)
|
|
|
|
|
{
|
2017-03-28 07:49:39 +00:00
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Hit:
|
2018-01-10 10:17:43 +00:00
|
|
|
|
Content.ScaleTo(0, 100, Easing.OutQuint).Expire();
|
2017-03-28 07:49:39 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2017-03-23 10:43:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 08:02:13 +00:00
|
|
|
|
public override bool OnPressed(TaikoAction action) => UpdateJudgement(true);
|
2017-03-17 10:08:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|