1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Objects/Drawables/DrawableDrumRollTick.cs

85 lines
2.8 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
using System;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
public class DrawableDrumRollTick : DrawableTaikoHitObject<DrumRollTick>
{
/// <summary>
2020-04-27 11:23:53 +08:00
/// The hit type corresponding to the <see cref="TaikoAction"/> that the user pressed to hit this <see cref="DrawableDrumRollTick"/>.
/// </summary>
2020-04-27 11:23:53 +08:00
public HitType JudgementType;
2018-04-13 17:19:50 +08:00
public DrawableDrumRollTick(DrumRollTick tick)
: base(tick)
{
FillMode = FillMode.Fit;
}
protected override SkinnableDrawable CreateMainPiece() => new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.DrumRollTick),
2020-04-16 09:04:09 +08:00
_ => new TickPiece
{
Filled = HitObject.FirstTick
});
2018-04-13 17:19:50 +08:00
protected override double MaximumJudgementOffset => HitObject.HitWindow;
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-04-13 17:19:50 +08:00
{
if (!userTriggered)
{
if (timeOffset > HitObject.HitWindow)
2020-09-29 14:13:11 +08:00
ApplyResult(r => r.Type = r.Judgement.MinResult);
2018-04-13 17:19:50 +08:00
return;
}
2018-04-13 17:19:50 +08:00
if (Math.Abs(timeOffset) > HitObject.HitWindow)
2018-04-13 17:19:50 +08:00
return;
2020-09-29 14:13:11 +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:
2019-09-12 18:29:08 +08:00
this.ScaleTo(0, 100, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
break;
}
}
public override bool OnPressed(TaikoAction action)
{
2020-04-27 11:23:53 +08:00
JudgementType = action == TaikoAction.LeftRim || action == TaikoAction.RightRim ? HitType.Rim : HitType.Centre;
return UpdateResult(true);
}
protected override DrawableStrongNestedHit CreateStrongHit(StrongHitObject hitObject) => new StrongNestedHit(hitObject, this);
2018-08-03 15:56:46 +08:00
private class StrongNestedHit : DrawableStrongNestedHit
2018-08-03 15:56:46 +08:00
{
public StrongNestedHit(StrongHitObject strong, DrawableDrumRollTick tick)
2018-08-03 15:56:46 +08:00
: base(strong, tick)
{
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-08-03 15:56:46 +08:00
{
if (!MainObject.Judged)
return;
2020-09-29 14:13:11 +08:00
ApplyResult(r => r.Type = MainObject.IsHit ? r.Judgement.MaxResult : r.Judgement.MinResult);
2018-08-03 15:56:46 +08:00
}
public override bool OnPressed(TaikoAction action) => false;
}
2018-04-13 17:19:50 +08:00
}
}