mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
62 lines
2.3 KiB
C#
62 lines
2.3 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.ComponentModel;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osu.Framework.Graphics;
|
|
using System.Linq;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
{
|
|
public class DrawableOsuHitObject : DrawableHitObject<OsuHitObject>
|
|
{
|
|
public override bool IsPresent => base.IsPresent || State.Value == ArmedState.Idle && Time.Current >= HitObject.StartTime - HitObject.TimePreempt;
|
|
|
|
protected DrawableOsuHitObject(OsuHitObject hitObject)
|
|
: base(hitObject)
|
|
{
|
|
Alpha = 0;
|
|
}
|
|
|
|
protected sealed override void UpdateState(ArmedState state)
|
|
{
|
|
double transformTime = HitObject.StartTime - HitObject.TimePreempt;
|
|
|
|
base.ApplyTransformsAt(transformTime, true);
|
|
base.ClearTransformsAfter(transformTime, true);
|
|
|
|
using (BeginAbsoluteSequence(transformTime, true))
|
|
{
|
|
UpdatePreemptState();
|
|
|
|
using (BeginDelayedSequence(HitObject.TimePreempt + (Judgements.FirstOrDefault()?.TimeOffset ?? 0), true))
|
|
UpdateCurrentState(state);
|
|
}
|
|
}
|
|
|
|
protected virtual void UpdatePreemptState() => this.FadeIn(HitObject.TimeFadein);
|
|
|
|
protected virtual void UpdateCurrentState(ArmedState state)
|
|
{
|
|
}
|
|
|
|
// Todo: At some point we need to move these to DrawableHitObject after ensuring that all other Rulesets apply
|
|
// transforms in the same way and don't rely on them not being cleared
|
|
public override void ClearTransformsAfter(double time, bool propagateChildren = false, string targetMember = null) { }
|
|
public override void ApplyTransformsAt(double time, bool propagateChildren = false) { }
|
|
|
|
private OsuInputManager osuActionInputManager;
|
|
internal OsuInputManager OsuActionInputManager => osuActionInputManager ?? (osuActionInputManager = GetContainingInputManager() as OsuInputManager);
|
|
}
|
|
|
|
public enum ComboResult
|
|
{
|
|
[Description(@"")]
|
|
None,
|
|
[Description(@"Good")]
|
|
Good,
|
|
[Description(@"Amazing")]
|
|
Perfect
|
|
}
|
|
}
|