2021-05-14 23:01:17 +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.
using osu.Framework.Allocation ;
using osu.Framework.Bindables ;
2023-01-17 00:37:47 +08:00
using osu.Framework.Extensions.LocalisationExtensions ;
2023-07-13 13:26:01 +08:00
using osu.Framework.Extensions.ObjectExtensions ;
2021-05-14 23:01:17 +08:00
using osu.Framework.Graphics ;
2022-12-21 03:36:27 +08:00
using osu.Framework.Graphics.Shapes ;
2023-07-13 13:26:01 +08:00
using osu.Framework.Graphics.Sprites ;
2021-05-15 09:24:08 +08:00
using osu.Framework.Graphics.UserInterface ;
2021-05-14 23:01:17 +08:00
using osu.Framework.Input.Events ;
2021-06-26 01:10:04 +08:00
using osu.Framework.Localisation ;
2023-07-14 03:45:06 +08:00
using osu.Game.Graphics ;
2022-12-21 03:36:27 +08:00
using osu.Game.Graphics.Containers ;
2021-05-24 19:34:47 +08:00
using osu.Game.Graphics.UserInterface ;
2023-01-17 00:37:47 +08:00
using osu.Game.Localisation ;
2023-07-13 13:26:01 +08:00
using osuTK ;
2021-05-14 23:01:17 +08:00
namespace osu.Game.Overlays
{
2023-07-13 12:46:50 +08:00
public partial class RevertToDefaultButton < T > : OsuClickableContainer , IHasCurrentValue < T >
2021-05-14 23:01:17 +08:00
{
public override bool IsPresent = > base . IsPresent | | Scheduler . HasPendingTasks ;
2021-05-26 17:03:15 +08:00
// this is done to ensure a click on this button doesn't trigger focus on a parent element which contains the button.
public override bool AcceptsFocus = > true ;
2021-07-09 05:39:09 +08:00
// this is intentionally not using BindableWithCurrent, as it can use the wrong IsDefault implementation when passed a BindableNumber.
// using GetBoundCopy() ensures that the received bindable is of the exact same type as the source bindable and uses the proper IsDefault implementation.
2023-07-13 13:26:01 +08:00
private Bindable < T > ? current ;
private SpriteIcon icon = null ! ;
private Circle circle = null ! ;
[Resolved]
2023-07-14 03:45:06 +08:00
private OsuColour colours { get ; set ; } = null ! ;
[Resolved]
private OverlayColourProvider ? colourProvider { get ; set ; }
2021-07-03 03:30:26 +08:00
2021-05-15 09:24:08 +08:00
public Bindable < T > Current
2021-05-14 23:01:17 +08:00
{
2023-07-13 13:26:01 +08:00
get = > current . AsNonNull ( ) ;
2021-07-03 03:30:26 +08:00
set
{
2021-07-03 04:24:51 +08:00
current ? . UnbindAll ( ) ;
current = value . GetBoundCopy ( ) ;
2021-07-03 03:30:26 +08:00
2021-07-09 05:48:48 +08:00
current . ValueChanged + = _ = > UpdateState ( ) ;
current . DefaultChanged + = _ = > UpdateState ( ) ;
current . DisabledChanged + = _ = > UpdateState ( ) ;
2021-08-16 17:40:34 +08:00
if ( IsLoaded )
UpdateState ( ) ;
2021-07-03 03:30:26 +08:00
}
2021-05-14 23:01:17 +08:00
}
2023-07-13 12:46:50 +08:00
public RevertToDefaultButton ( )
2022-12-21 03:36:27 +08:00
: base ( HoverSampleSet . Button )
{
}
2021-05-14 23:01:17 +08:00
[BackgroundDependencyLoader]
2023-07-13 13:26:01 +08:00
private void load ( )
2021-05-14 23:01:17 +08:00
{
2023-07-13 13:26:01 +08:00
Size = new Vector2 ( 14 ) ;
2021-10-16 03:44:56 +08:00
2023-07-13 13:26:01 +08:00
AddRange ( new Drawable [ ]
2022-12-21 03:36:27 +08:00
{
2023-07-13 13:26:01 +08:00
circle = new Circle
2022-12-21 03:36:27 +08:00
{
2023-07-13 13:26:01 +08:00
Anchor = Anchor . Centre ,
Origin = Anchor . Centre ,
2022-12-21 03:36:27 +08:00
RelativeSizeAxes = Axes . Both ,
2023-07-13 13:26:01 +08:00
} ,
icon = new SpriteIcon
{
Icon = FontAwesome . Solid . Undo ,
Anchor = Anchor . Centre ,
Origin = Anchor . Centre ,
Size = new Vector2 ( 8 ) ,
2022-12-21 03:36:27 +08:00
}
} ) ;
2021-05-24 19:34:47 +08:00
2021-05-24 20:08:34 +08:00
Action + = ( ) = >
{
2023-07-13 13:26:01 +08:00
if ( current ? . Disabled = = false )
2021-07-03 03:30:26 +08:00
current . SetDefault ( ) ;
2021-05-24 20:08:34 +08:00
} ;
2021-05-14 23:01:17 +08:00
}
2021-07-10 22:57:52 +08:00
protected override void LoadComplete ( )
{
base . LoadComplete ( ) ;
2021-10-16 03:44:56 +08:00
updateState ( ) ;
FinishTransforms ( true ) ;
2021-07-10 22:57:52 +08:00
}
2023-01-17 00:37:47 +08:00
public override LocalisableString TooltipText = > CommonStrings . RevertToDefault . ToLower ( ) ;
2021-05-14 23:01:17 +08:00
protected override bool OnHover ( HoverEvent e )
{
UpdateState ( ) ;
return false ;
}
protected override void OnHoverLost ( HoverLostEvent e )
{
UpdateState ( ) ;
}
public void UpdateState ( ) = > Scheduler . AddOnce ( updateState ) ;
2021-10-16 03:44:56 +08:00
private const double fade_duration = 200 ;
2021-08-16 17:40:34 +08:00
2021-05-14 23:01:17 +08:00
private void updateState ( )
{
2021-07-03 02:06:57 +08:00
if ( current = = null )
2021-05-14 23:01:17 +08:00
return ;
2023-07-13 13:26:01 +08:00
Enabled . Value = ! current . Disabled ;
2023-07-14 04:00:21 +08:00
this . FadeTo ( current . Disabled ? 0.2f : ( current . IsDefault ? 0 : 1 ) , fade_duration , Easing . OutQuint ) ;
2021-10-16 03:44:56 +08:00
2023-07-13 13:26:01 +08:00
if ( IsHovered & & Enabled . Value )
2021-10-16 03:44:56 +08:00
{
2023-07-13 13:26:01 +08:00
icon . RotateTo ( - 40 , 500 , Easing . OutQuint ) ;
2023-07-14 03:45:06 +08:00
icon . FadeColour ( colourProvider ? . Light1 ? ? colours . YellowLight , 300 , Easing . OutQuint ) ;
circle . FadeColour ( colourProvider ? . Background2 ? ? colours . Gray6 , 300 , Easing . OutQuint ) ;
2023-07-13 13:26:01 +08:00
this . ScaleTo ( 1.2f , 300 , Easing . OutQuint ) ;
2021-10-16 03:44:56 +08:00
}
else
{
2023-07-13 13:26:01 +08:00
icon . RotateTo ( 0 , 100 , Easing . OutQuint ) ;
2023-07-14 03:45:06 +08:00
icon . FadeColour ( colourProvider ? . Colour0 ? ? colours . Yellow , 100 , Easing . OutQuint ) ;
circle . FadeColour ( colourProvider ? . Background3 ? ? colours . Gray3 , 100 , Easing . OutQuint ) ;
2023-07-13 13:26:01 +08:00
this . ScaleTo ( 1f , 100 , Easing . OutQuint ) ;
2021-10-16 03:44:56 +08:00
}
2021-05-14 23:01:17 +08:00
}
}
2021-05-18 02:44:47 +08:00
}