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
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Audio;
|
|
|
|
|
using System.Collections.Generic;
|
2018-06-11 20:45:19 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2019-10-17 10:57:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
|
|
|
|
{
|
2018-06-11 20:45:19 +08:00
|
|
|
|
public abstract class DrawableTaikoHitObject : DrawableHitObject<TaikoHitObject>, IKeyBindingHandler<TaikoAction>
|
|
|
|
|
{
|
|
|
|
|
protected readonly Container Content;
|
2018-06-17 16:56:46 +08:00
|
|
|
|
private readonly Container proxiedContent;
|
2018-06-11 20:45:19 +08:00
|
|
|
|
|
|
|
|
|
private readonly Container nonProxiedContent;
|
|
|
|
|
|
|
|
|
|
protected DrawableTaikoHitObject(TaikoHitObject hitObject)
|
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
2019-03-25 12:47:28 +08:00
|
|
|
|
AddRangeInternal(new[]
|
2018-06-11 20:45:19 +08:00
|
|
|
|
{
|
|
|
|
|
nonProxiedContent = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Child = Content = new Container { RelativeSizeAxes = Axes.Both }
|
|
|
|
|
},
|
2018-11-15 19:26:12 +08:00
|
|
|
|
proxiedContent = new ProxiedContentContainer { RelativeSizeAxes = Axes.Both }
|
2019-03-25 12:47:28 +08:00
|
|
|
|
});
|
2018-06-11 20:45:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-06-17 16:56:46 +08:00
|
|
|
|
/// <see cref="proxiedContent"/> is proxied into an upper layer. We don't want to get masked away otherwise <see cref="proxiedContent"/> would too.
|
2018-06-11 20:45:19 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
protected override bool ComputeIsMaskedAway(RectangleF maskingBounds) => false;
|
|
|
|
|
|
2018-06-17 23:27:18 +08:00
|
|
|
|
private bool isProxied;
|
|
|
|
|
|
2018-06-11 20:45:19 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Moves <see cref="Content"/> to a layer proxied above the playfield.
|
2020-04-15 12:00:38 +08:00
|
|
|
|
/// Does nothing if content is already proxied.
|
2018-06-11 20:45:19 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
protected void ProxyContent()
|
|
|
|
|
{
|
2018-06-17 23:27:18 +08:00
|
|
|
|
if (isProxied) return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-06-17 23:27:18 +08:00
|
|
|
|
isProxied = true;
|
|
|
|
|
|
2018-06-11 20:45:19 +08:00
|
|
|
|
nonProxiedContent.Remove(Content);
|
2018-06-17 16:56:46 +08:00
|
|
|
|
proxiedContent.Add(Content);
|
2018-06-11 20:45:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Moves <see cref="Content"/> to the normal hitobject layer.
|
2018-06-17 23:27:18 +08:00
|
|
|
|
/// Does nothing is content is not currently proxied.
|
2018-06-11 20:45:19 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
protected void UnproxyContent()
|
|
|
|
|
{
|
2018-06-17 23:27:18 +08:00
|
|
|
|
if (!isProxied) return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-06-17 23:27:18 +08:00
|
|
|
|
isProxied = false;
|
|
|
|
|
|
2018-06-17 16:56:46 +08:00
|
|
|
|
proxiedContent.Remove(Content);
|
2018-06-11 20:45:19 +08:00
|
|
|
|
nonProxiedContent.Add(Content);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-17 16:56:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates a proxy for the content of this <see cref="DrawableTaikoHitObject"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Drawable CreateProxiedContent() => proxiedContent.CreateProxy();
|
|
|
|
|
|
2018-06-11 20:45:19 +08:00
|
|
|
|
public abstract bool OnPressed(TaikoAction action);
|
2020-01-22 12:22:34 +08:00
|
|
|
|
|
|
|
|
|
public virtual void OnReleased(TaikoAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2018-11-15 19:26:12 +08:00
|
|
|
|
|
2019-08-27 13:19:55 +08:00
|
|
|
|
public override double LifetimeStart
|
|
|
|
|
{
|
|
|
|
|
get => base.LifetimeStart;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
base.LifetimeStart = value;
|
|
|
|
|
proxiedContent.LifetimeStart = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override double LifetimeEnd
|
|
|
|
|
{
|
|
|
|
|
get => base.LifetimeEnd;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
base.LifetimeEnd = value;
|
|
|
|
|
proxiedContent.LifetimeEnd = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-15 19:26:12 +08:00
|
|
|
|
private class ProxiedContentContainer : Container
|
|
|
|
|
{
|
2019-08-27 13:19:55 +08:00
|
|
|
|
public override bool RemoveWhenNotAlive => false;
|
2018-11-15 19:26:12 +08:00
|
|
|
|
}
|
2018-06-11 20:45:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
public abstract class DrawableTaikoHitObject<TObject> : DrawableTaikoHitObject
|
|
|
|
|
where TObject : TaikoHitObject
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public override Vector2 OriginPosition => new Vector2(DrawHeight / 2);
|
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
public new TObject HitObject;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 10:57:00 +08:00
|
|
|
|
protected readonly Vector2 BaseSize;
|
2020-04-11 12:14:34 +08:00
|
|
|
|
protected readonly CompositeDrawable MainPiece;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 10:57:00 +08:00
|
|
|
|
private readonly Container<DrawableStrongNestedHit> strongHitContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
protected DrawableTaikoHitObject(TObject hitObject)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
: base(hitObject)
|
|
|
|
|
{
|
|
|
|
|
HitObject = hitObject;
|
|
|
|
|
|
|
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
|
Origin = Anchor.Custom;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
Size = BaseSize = new Vector2(HitObject.IsStrong ? TaikoHitObject.DEFAULT_STRONG_SIZE : TaikoHitObject.DEFAULT_SIZE);
|
|
|
|
|
|
2018-06-11 20:45:19 +08:00
|
|
|
|
Content.Add(MainPiece = CreateMainPiece());
|
2018-08-03 15:11:57 +08:00
|
|
|
|
|
2019-10-17 10:57:00 +08:00
|
|
|
|
AddInternal(strongHitContainer = new Container<DrawableStrongNestedHit>());
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override void AddNestedHitObject(DrawableHitObject hitObject)
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
2019-10-17 12:52:21 +08:00
|
|
|
|
base.AddNestedHitObject(hitObject);
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2019-10-17 11:53:54 +08:00
|
|
|
|
switch (hitObject)
|
2018-08-03 15:11:57 +08:00
|
|
|
|
{
|
2019-10-17 10:57:00 +08:00
|
|
|
|
case DrawableStrongNestedHit strong:
|
|
|
|
|
strongHitContainer.Add(strong);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override void ClearNestedHitObjects()
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
2019-10-17 12:52:21 +08:00
|
|
|
|
base.ClearNestedHitObjects();
|
2019-10-17 10:57:00 +08:00
|
|
|
|
strongHitContainer.Clear();
|
|
|
|
|
}
|
2018-08-14 13:29:49 +08:00
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
protected override DrawableHitObject CreateNestedHitObject(HitObject hitObject)
|
2019-10-17 10:57:00 +08:00
|
|
|
|
{
|
|
|
|
|
switch (hitObject)
|
|
|
|
|
{
|
|
|
|
|
case StrongHitObject strong:
|
|
|
|
|
return CreateStrongHit(strong);
|
2018-08-03 15:11:57 +08:00
|
|
|
|
}
|
2019-10-17 10:57:00 +08:00
|
|
|
|
|
2019-10-17 12:52:21 +08:00
|
|
|
|
return base.CreateNestedHitObject(hitObject);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Normal and clap samples are handled by the drum
|
2019-06-30 20:58:30 +08:00
|
|
|
|
protected override IEnumerable<HitSampleInfo> GetSamples() => HitObject.Samples.Where(s => s.Name != HitSampleInfo.HIT_NORMAL && s.Name != HitSampleInfo.HIT_CLAP);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-11 12:14:34 +08:00
|
|
|
|
protected abstract CompositeDrawable CreateMainPiece();
|
2018-08-03 15:11:57 +08:00
|
|
|
|
|
2018-08-03 15:56:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the handler for this <see cref="DrawableHitObject"/>'s <see cref="StrongHitObject"/>.
|
|
|
|
|
/// This is only invoked if <see cref="TaikoHitObject.IsStrong"/> is true for <see cref="HitObject"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="hitObject">The strong hitobject.</param>
|
|
|
|
|
/// <returns>The strong hitobject handler.</returns>
|
2018-08-14 13:28:05 +08:00
|
|
|
|
protected virtual DrawableStrongNestedHit CreateStrongHit(StrongHitObject hitObject) => null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|