2022-03-08 18:55:25 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2022-03-08 18:55:25 +08:00
|
|
|
using JetBrains.Annotations;
|
2022-03-08 19:33:15 +08:00
|
|
|
using osu.Framework.Bindables;
|
2022-03-08 18:55:25 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2022-03-08 19:33:15 +08:00
|
|
|
using osu.Game.Configuration;
|
2022-03-13 15:47:08 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
2022-03-08 18:55:25 +08:00
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning.Components
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Intended to be a test bed for skinning. May be removed at some point in the future.
|
|
|
|
/// </summary>
|
|
|
|
[UsedImplicitly]
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class BigBlackBox : CompositeDrawable, ISkinnableDrawable
|
2022-03-08 18:55:25 +08:00
|
|
|
{
|
|
|
|
public bool UsesFixedAnchor { get; set; }
|
|
|
|
|
2022-03-15 13:25:05 +08:00
|
|
|
[SettingSource("Spinning text", "Whether the big text should spin")]
|
2022-03-08 19:33:15 +08:00
|
|
|
public Bindable<bool> TextSpin { get; } = new BindableBool();
|
|
|
|
|
|
|
|
[SettingSource("Alpha", "The alpha value of this box")]
|
|
|
|
public BindableNumber<float> BoxAlpha { get; } = new BindableNumber<float>(1)
|
|
|
|
{
|
|
|
|
MinValue = 0,
|
|
|
|
MaxValue = 1,
|
2022-03-13 15:47:08 +08:00
|
|
|
Precision = 0.01f,
|
2022-03-08 19:33:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
private readonly Box box;
|
|
|
|
private readonly OsuSpriteText text;
|
2022-03-13 15:47:08 +08:00
|
|
|
private readonly OsuTextFlowContainer disclaimer;
|
2022-03-08 19:33:15 +08:00
|
|
|
|
2022-03-08 18:55:25 +08:00
|
|
|
public BigBlackBox()
|
|
|
|
{
|
2022-03-13 15:47:08 +08:00
|
|
|
Size = new Vector2(250);
|
2022-03-08 18:55:25 +08:00
|
|
|
|
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 20;
|
|
|
|
CornerExponent = 5;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2022-03-08 19:33:15 +08:00
|
|
|
box = new Box
|
2022-03-08 18:55:25 +08:00
|
|
|
{
|
|
|
|
Colour = Color4.Black,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2022-03-08 19:33:15 +08:00
|
|
|
text = new OsuSpriteText
|
2022-03-08 18:55:25 +08:00
|
|
|
{
|
|
|
|
Text = "Big Black Box",
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2022-03-13 15:47:08 +08:00
|
|
|
Font = OsuFont.Default.With(size: 40)
|
|
|
|
},
|
|
|
|
disclaimer = new OsuTextFlowContainer(st => st.Font = OsuFont.Default.With(size: 10))
|
|
|
|
{
|
|
|
|
Text = "This is intended to be a test component and may disappear in the future!",
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
TextAnchor = Anchor.TopCentre,
|
2022-03-08 18:55:25 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2022-03-08 19:33:15 +08:00
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
BoxAlpha.BindValueChanged(alpha => box.Alpha = alpha.NewValue, true);
|
|
|
|
TextSpin.BindValueChanged(spin =>
|
|
|
|
{
|
|
|
|
if (spin.NewValue)
|
|
|
|
text.Spin(1000, RotationDirection.Clockwise);
|
|
|
|
else
|
|
|
|
text.ClearTransforms();
|
|
|
|
}, true);
|
2022-03-13 15:47:08 +08:00
|
|
|
|
|
|
|
disclaimer.FadeOutFromOne(5000, Easing.InQuint);
|
2022-03-08 19:33:15 +08:00
|
|
|
}
|
2022-03-08 18:55:25 +08:00
|
|
|
}
|
|
|
|
}
|