// Copyright (c) ppy Pty Ltd . 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.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Taiko.Objects.Drawables; using osuTK; using osuTK.Graphics; namespace osu.Game.Rulesets.Taiko.Skinning.Default { public partial class TickPiece : CompositeDrawable { /// /// Any tick that is not the first for a drumroll is not filled, but is instead displayed /// as a hollow circle. This is what controls the border width of that circle. /// private const float tick_border_width = 5; /// /// The size of a tick. /// private const float tick_size = 0.35f; private readonly Box fillBox; private Bindable isFirstTick = null!; public TickPiece() { Anchor = Anchor.Centre; Origin = Anchor.Centre; RelativeSizeAxes = Axes.Both; FillMode = FillMode.Fit; Size = new Vector2(tick_size); InternalChild = new CircularContainer { RelativeSizeAxes = Axes.Both, Masking = true, BorderThickness = tick_border_width, BorderColour = Color4.White, Children = new[] { fillBox = new Box { RelativeSizeAxes = Axes.Both, Alpha = 0, AlwaysPresent = true } } }; } [Resolved] private DrawableHitObject drawableHitObject { get; set; } = null!; protected override void LoadComplete() { base.LoadComplete(); if (drawableHitObject is DrawableDrumRollTick drumRollTick) { isFirstTick = drumRollTick.IsFirstTick.GetBoundCopy(); isFirstTick.BindValueChanged(first => fillBox.Alpha = first.NewValue ? 1 : 0, true); } } } }