mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:28:00 +08:00
66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Rulesets.Mania.Objects.Drawables;
|
|
using osu.Game.Rulesets.Mania.Skinning.Default;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning.Argon
|
|
{
|
|
/// <summary>
|
|
/// Represents length-wise portion of a hold note.
|
|
/// </summary>
|
|
public partial class ArgonHoldBodyPiece : CompositeDrawable, IHoldNoteBody
|
|
{
|
|
protected readonly Bindable<Color4> AccentColour = new Bindable<Color4>();
|
|
|
|
private Drawable background = null!;
|
|
private ArgonHoldNoteHittingLayer hittingLayer = null!;
|
|
|
|
public ArgonHoldBodyPiece()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
// Without this, the width of the body will be slightly larger than the head/tail.
|
|
Masking = true;
|
|
CornerRadius = ArgonNotePiece.CORNER_RADIUS;
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(DrawableHitObject? drawableObject)
|
|
{
|
|
InternalChildren = new[]
|
|
{
|
|
background = new Box { RelativeSizeAxes = Axes.Both },
|
|
hittingLayer = new ArgonHoldNoteHittingLayer()
|
|
};
|
|
|
|
if (drawableObject != null)
|
|
{
|
|
var holdNote = (DrawableHoldNote)drawableObject;
|
|
|
|
AccentColour.BindTo(holdNote.AccentColour);
|
|
hittingLayer.AccentColour.BindTo(holdNote.AccentColour);
|
|
((IBindable<bool>)hittingLayer.IsHitting).BindTo(holdNote.IsHitting);
|
|
}
|
|
|
|
AccentColour.BindValueChanged(colour =>
|
|
{
|
|
background.Colour = colour.NewValue.Darken(0.6f);
|
|
}, true);
|
|
}
|
|
|
|
public void Recycle()
|
|
{
|
|
hittingLayer.Recycle();
|
|
}
|
|
}
|
|
}
|