1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

StarCounter styling using absolute positioning.

This commit is contained in:
Adonais Romero González 2016-10-08 21:45:01 -05:00
parent 5ebb2fc289
commit 0d18680eeb

View File

@ -1,6 +1,7 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>. //Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Graphics; using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Transformations; using osu.Framework.Graphics.Transformations;
@ -21,16 +22,28 @@ namespace osu.Game.Graphics.UserInterface
{ {
protected override Type transformType => typeof(TransformStar); protected override Type transformType => typeof(TransformStar);
protected float MinStarSize = 0.001f; protected float MinStarSize = 0.3f;
protected FlowContainer starContainer; protected Container starContainer;
protected List<TextAwesome> stars = new List<TextAwesome>(); protected List<TextAwesome> stars = new List<TextAwesome>();
public float MinStarAlpha = 0.5f;
public int MaxStars = 10; public int MaxStars = 10;
public int StarSize = 20;
public int StarSpacing = 2;
public StarCounter() : base() public StarCounter() : base()
{ {
RollingDuration = 5000; IsRollingProportional = true;
RollingDuration = 100;
}
protected override ulong getProportionalDuration(float currentValue, float newValue)
{
return (ulong)(Math.Abs(currentValue - newValue) * RollingDuration);
} }
public override void ResetCount() public override void ResetCount()
@ -45,11 +58,12 @@ namespace osu.Game.Graphics.UserInterface
Children = new Drawable[] Children = new Drawable[]
{ {
starContainer = new FlowContainer starContainer = new Container
{ {
Direction = FlowDirection.HorizontalOnly,
Anchor = Anchor.CentreLeft, Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft, Origin = Anchor.CentreLeft,
Width = MaxStars * StarSize,
Height = StarSize,
} }
}; };
@ -58,22 +72,17 @@ namespace osu.Game.Graphics.UserInterface
TextAwesome star = new TextAwesome TextAwesome star = new TextAwesome
{ {
Icon = FontAwesome.star, Icon = FontAwesome.star,
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre, Origin = Anchor.Centre,
TextSize = 20, TextSize = StarSize,
Scale = new Vector2(MinStarSize),
Alpha = MinStarAlpha,
Position = new Vector2((StarSize + StarSpacing) * i + (StarSize + StarSpacing) / 2, 0),
}; };
stars.Add(star); stars.Add(star);
starContainer.Add(star); starContainer.Add(star);
} }
// HACK: To mantain container height constant
starContainer.Add(new TextAwesome
{
Icon = FontAwesome.star,
Origin = Anchor.Centre,
TextSize = 20,
Alpha = 0.002f,
});
ResetCount(); ResetCount();
} }
@ -82,11 +91,18 @@ namespace osu.Game.Graphics.UserInterface
for (int i = 0; i < MaxStars; i++) for (int i = 0; i < MaxStars; i++)
{ {
if (newValue < i) if (newValue < i)
{
stars[i].Alpha = MinStarAlpha;
stars[i].ScaleTo(MinStarSize); stars[i].ScaleTo(MinStarSize);
else if (newValue > (i + 1)) }
stars[i].ScaleTo(1f);
else else
stars[i].ScaleTo(Interpolation.ValueAt(newValue, MinStarSize, 1f, i, i + 1, EasingTypes.None)); {
stars[i].Alpha = 1;
if (newValue > (i + 1))
stars[i].ScaleTo(1f);
else
stars[i].ScaleTo(Interpolation.ValueAt(newValue, MinStarSize, 1f, i, i + 1, EasingTypes.None));
}
} }
} }