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
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables ;
2018-11-20 15:51:59 +08:00
using osuTK ;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics ;
using osu.Framework.Graphics.Containers ;
using osu.Framework.Graphics.Shapes ;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events ;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics ;
using osu.Game.Graphics.Containers ;
using osu.Game.Graphics.Sprites ;
using osu.Game.Users ;
2019-05-30 02:02:20 +08:00
using osu.Framework.Allocation ;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Profile.Sections.Kudosu
{
public class KudosuInfo : Container
{
private readonly Bindable < User > user = new Bindable < User > ( ) ;
2019-05-30 02:19:03 +08:00
2018-04-13 17:19:50 +08:00
public KudosuInfo ( Bindable < User > user )
{
this . user . BindTo ( user ) ;
CountSection total ;
CountSection avaliable ;
RelativeSizeAxes = Axes . X ;
AutoSizeAxes = Axes . Y ;
Masking = true ;
CornerRadius = 3 ;
Children = new Drawable [ ]
{
new FillFlowContainer
{
RelativeSizeAxes = Axes . X ,
AutoSizeAxes = Axes . Y ,
2019-05-30 02:02:20 +08:00
Direction = FillDirection . Horizontal ,
Spacing = new Vector2 ( 5 , 0 ) ,
2018-04-13 17:19:50 +08:00
Children = new [ ]
{
2019-05-30 15:57:54 +08:00
total = new CountTotal ( ) ,
avaliable = new CountAvailable ( )
2018-04-13 17:19:50 +08:00
}
}
} ;
2019-02-22 16:51:39 +08:00
this . user . ValueChanged + = u = >
2018-04-13 17:19:50 +08:00
{
2019-02-22 16:51:39 +08:00
total . Count = u . NewValue ? . Kudosu . Total ? ? 0 ;
avaliable . Count = u . NewValue ? . Kudosu . Available ? ? 0 ;
2018-04-13 17:19:50 +08:00
} ;
}
2019-05-30 02:19:03 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnClick ( ClickEvent e ) = > true ;
2019-05-30 02:19:03 +08:00
2019-05-30 15:57:54 +08:00
private class CountAvailable : CountSection
{
public CountAvailable ( )
: base ( "Kudosu Avaliable" )
{
DescriptionText . Text = "Kudosu can be traded for kudosu stars, which will help your beatmap get more attention. This is the number of kudosu you haven't traded in yet." ;
}
}
private class CountTotal : CountSection
{
public CountTotal ( )
: base ( "Total Kudosu Earned" )
{
DescriptionText . AddText ( "Based on how much of a contribution the user has made to beatmap moderation. See " ) ;
DescriptionText . AddLink ( "this link" , "https://osu.ppy.sh/wiki/Kudosu" ) ;
DescriptionText . AddText ( " for more information." ) ;
}
}
2018-04-13 17:19:50 +08:00
private class CountSection : Container
{
private readonly OsuSpriteText valueText ;
2019-05-30 15:57:54 +08:00
protected readonly LinkFlowContainer DescriptionText ;
2019-05-30 02:02:20 +08:00
private readonly Box lineBackground ;
2018-04-13 17:19:50 +08:00
public new int Count
{
2019-02-28 12:58:19 +08:00
set = > valueText . Text = value . ToString ( ) ;
2018-04-13 17:19:50 +08:00
}
2019-05-30 02:19:03 +08:00
2019-05-30 15:57:54 +08:00
public CountSection ( string header )
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes . X ;
Width = 0.5f ;
AutoSizeAxes = Axes . Y ;
2019-05-30 02:02:20 +08:00
Padding = new MarginPadding { Top = 10 , Bottom = 20 } ;
2018-04-13 17:19:50 +08:00
Child = new FillFlowContainer
{
AutoSizeAxes = Axes . Y ,
RelativeSizeAxes = Axes . X ,
Direction = FillDirection . Vertical ,
Spacing = new Vector2 ( 0 , 5 ) ,
Children = new Drawable [ ]
{
2019-05-30 02:02:20 +08:00
new CircularContainer
2018-04-13 17:19:50 +08:00
{
2019-05-30 02:02:20 +08:00
Masking = true ,
RelativeSizeAxes = Axes . X ,
2020-01-30 05:25:56 +08:00
Height = 2 ,
2019-05-30 02:02:20 +08:00
Child = lineBackground = new Box
2018-04-13 17:19:50 +08:00
{
2019-05-30 02:02:20 +08:00
RelativeSizeAxes = Axes . Both ,
2018-04-13 17:19:50 +08:00
}
} ,
2019-05-30 02:02:20 +08:00
new OsuSpriteText
{
Text = header ,
2019-05-30 15:49:18 +08:00
Font = OsuFont . GetFont ( size : 12 , weight : FontWeight . Bold )
2019-05-30 02:02:20 +08:00
} ,
valueText = new OsuSpriteText
{
Text = "0" ,
2019-05-30 15:49:18 +08:00
Font = OsuFont . GetFont ( size : 40 , weight : FontWeight . Light ) ,
2019-05-30 02:02:20 +08:00
UseFullGlyphHeight = false ,
} ,
2019-05-30 15:57:54 +08:00
DescriptionText = new LinkFlowContainer ( t = > t . Font = t . Font . With ( size : 14 ) )
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes . X ,
AutoSizeAxes = Axes . Y ,
}
}
} ;
}
2019-05-30 02:02:20 +08:00
[BackgroundDependencyLoader]
2020-01-30 05:25:56 +08:00
private void load ( OverlayColourProvider colourProvider )
2019-05-30 02:02:20 +08:00
{
2020-01-30 05:25:56 +08:00
lineBackground . Colour = colourProvider . Highlight1 ;
DescriptionText . Colour = colourProvider . Foreground1 ;
2019-05-30 02:02:20 +08:00
}
2018-04-13 17:19:50 +08:00
}
}
}