2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
|
using JetBrains.Annotations;
|
2018-06-08 19:13:24 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-06-08 14:16:45 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Objects.Drawables
|
|
|
|
|
{
|
2018-07-02 11:31:41 +08:00
|
|
|
|
public abstract class DrawableManiaHitObject : DrawableHitObject<ManiaHitObject>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-26 10:34:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether this <see cref="DrawableManiaHitObject"/> should always remain alive.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal bool AlwaysAlive;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-07-02 11:31:41 +08:00
|
|
|
|
/// The <see cref="ManiaAction"/> which causes this <see cref="DrawableManiaHitObject{TObject}"/> to be hit.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-07-02 11:31:41 +08:00
|
|
|
|
protected readonly IBindable<ManiaAction> Action = new Bindable<ManiaAction>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-08 20:41:20 +08:00
|
|
|
|
protected readonly IBindable<ScrollingDirection> Direction = new Bindable<ScrollingDirection>();
|
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
|
protected DrawableManiaHitObject(ManiaHitObject hitObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-06-07 13:27:59 +08:00
|
|
|
|
|
2018-07-02 11:31:41 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
|
private void load([CanBeNull] IBindable<ManiaAction> action, [NotNull] IScrollingInfo scrollingInfo)
|
2018-06-08 20:41:20 +08:00
|
|
|
|
{
|
2018-07-02 11:31:41 +08:00
|
|
|
|
if (action != null)
|
|
|
|
|
Action.BindTo(action);
|
|
|
|
|
|
2018-06-08 20:41:20 +08:00
|
|
|
|
Direction.BindTo(scrollingInfo.Direction);
|
|
|
|
|
Direction.BindValueChanged(OnDirectionChanged, true);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-26 10:34:25 +08:00
|
|
|
|
protected override bool ShouldBeAlive => AlwaysAlive || base.ShouldBeAlive;
|
|
|
|
|
|
2019-02-21 17:56:34 +08:00
|
|
|
|
protected virtual void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> e)
|
2018-06-08 19:13:24 +08:00
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
Anchor = Origin = e.NewValue == ScrollingDirection.Up ? Anchor.TopCentre : Anchor.BottomCentre;
|
2018-06-08 19:13:24 +08:00
|
|
|
|
}
|
2019-07-22 14:55:38 +08:00
|
|
|
|
|
2019-08-27 03:06:30 +08:00
|
|
|
|
protected override void UpdateStateTransforms(ArmedState state)
|
2018-06-07 13:27:59 +08:00
|
|
|
|
{
|
|
|
|
|
switch (state)
|
|
|
|
|
{
|
|
|
|
|
case ArmedState.Miss:
|
2019-09-12 18:29:08 +08:00
|
|
|
|
this.FadeOut(150, Easing.In);
|
2018-06-07 13:27:59 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-06-07 13:27:59 +08:00
|
|
|
|
case ArmedState.Hit:
|
2019-09-12 18:29:08 +08:00
|
|
|
|
this.FadeOut(150, Easing.OutQuint);
|
2018-06-07 13:27:59 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-08-27 03:06:30 +08:00
|
|
|
|
|
|
|
|
|
public abstract class DrawableManiaHitObject<TObject> : DrawableManiaHitObject
|
|
|
|
|
where TObject : ManiaHitObject
|
|
|
|
|
{
|
|
|
|
|
public new readonly TObject HitObject;
|
|
|
|
|
|
|
|
|
|
protected DrawableManiaHitObject(TObject hitObject)
|
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
|
|
|
|
HitObject = hitObject;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|