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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
3.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;
2020-12-15 06:10:19 +08:00
using JetBrains.Annotations;
2017-03-28 15:49:39 +08:00
using osu.Framework.Graphics;
2021-09-16 17:26:12 +08:00
using osu.Framework.Input.Events;
using osu.Game.Rulesets.Objects;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2020-12-07 11:30:25 +08:00
using osu.Game.Rulesets.Taiko.Skinning.Default;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
public class DrawableDrumRollTick : DrawableTaikoStrongableHitObject<DrumRollTick, DrumRollTick.StrongNestedHit>
{
/// <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;
2020-12-15 06:10:19 +08:00
public DrawableDrumRollTick()
: this(null)
{
}
public DrawableDrumRollTick([CanBeNull] DrumRollTick tick)
: base(tick)
{
FillMode = FillMode.Fit;
}
2018-04-13 17:19:50 +08:00
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)
{
if (!userTriggered)
{
if (timeOffset > HitObject.HitWindow)
2020-09-29 14:13:11 +08:00
ApplyResult(r => r.Type = r.Judgement.MinResult);
return;
}
2018-04-13 17:19:50 +08:00
if (Math.Abs(timeOffset) > HitObject.HitWindow)
return;
2018-04-13 17:19:50 +08:00
2020-09-29 14:13:11 +08:00
ApplyResult(r => r.Type = r.Judgement.MaxResult);
}
2018-04-13 17:19:50 +08:00
public override void OnKilled()
{
base.OnKilled();
if (Time.Current > HitObject.GetEndTime() && !Judged)
ApplyResult(r => r.Type = r.Judgement.MinResult);
}
2020-11-04 15:19:07 +08:00
protected override void UpdateHitStateTransforms(ArmedState state)
2017-03-23 18:43:00 +08:00
{
2017-03-28 15:49:39 +08:00
switch (state)
{
case ArmedState.Hit:
2019-09-12 18:29:08 +08:00
this.ScaleTo(0, 100, Easing.OutQuint);
2017-03-28 15:49:39 +08:00
break;
}
2017-03-23 18:43:00 +08:00
}
2018-04-13 17:19:50 +08:00
2021-09-16 17:26:12 +08:00
public override bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
{
2021-09-16 17:26:12 +08:00
JudgementType = e.Action == TaikoAction.LeftRim || e.Action == TaikoAction.RightRim ? HitType.Rim : HitType.Centre;
return UpdateResult(true);
}
protected override DrawableStrongNestedHit CreateStrongNestedHit(DrumRollTick.StrongNestedHit hitObject) => new StrongNestedHit(hitObject);
2018-08-03 15:56:46 +08:00
public class StrongNestedHit : DrawableStrongNestedHit
2018-08-03 15:56:46 +08:00
{
public new DrawableDrumRollTick ParentHitObject => (DrawableDrumRollTick)base.ParentHitObject;
public StrongNestedHit()
: this(null)
{
}
public StrongNestedHit([CanBeNull] DrumRollTick.StrongNestedHit nestedHit)
: base(nestedHit)
2018-08-03 15:56:46 +08:00
{
}
protected override void CheckForResult(bool userTriggered, double timeOffset)
2018-08-03 15:56:46 +08:00
{
if (!ParentHitObject.Judged)
2018-08-03 15:56:46 +08:00
return;
ApplyResult(r => r.Type = ParentHitObject.IsHit ? r.Judgement.MaxResult : r.Judgement.MinResult);
2018-08-03 15:56:46 +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
}
}
}