mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 22:22:54 +08:00
Refactor StarRatingDisplay
to be mutable with a current bindable
This commit is contained in:
parent
b4801faf32
commit
0410edecaf
@ -1,8 +1,10 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using NUnit.Framework;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Utils;
|
||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Screens.Ranking.Expanded;
|
using osu.Game.Screens.Ranking.Expanded;
|
||||||
|
|
||||||
@ -10,8 +12,11 @@ namespace osu.Game.Tests.Visual.Ranking
|
|||||||
{
|
{
|
||||||
public class TestSceneStarRatingDisplay : OsuTestScene
|
public class TestSceneStarRatingDisplay : OsuTestScene
|
||||||
{
|
{
|
||||||
public TestSceneStarRatingDisplay()
|
[SetUp]
|
||||||
|
public void SetUp() => Schedule(() =>
|
||||||
{
|
{
|
||||||
|
StarRatingDisplay changingStarRating;
|
||||||
|
|
||||||
Child = new FillFlowContainer
|
Child = new FillFlowContainer
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
@ -25,8 +30,14 @@ namespace osu.Game.Tests.Visual.Ranking
|
|||||||
new StarRatingDisplay(new StarDifficulty(5.67, 0)),
|
new StarRatingDisplay(new StarDifficulty(5.67, 0)),
|
||||||
new StarRatingDisplay(new StarDifficulty(6.78, 0)),
|
new StarRatingDisplay(new StarDifficulty(6.78, 0)),
|
||||||
new StarRatingDisplay(new StarDifficulty(10.11, 0)),
|
new StarRatingDisplay(new StarDifficulty(10.11, 0)),
|
||||||
|
changingStarRating = new StarRatingDisplay(),
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
Scheduler.AddDelayed(() =>
|
||||||
|
{
|
||||||
|
changingStarRating.Current.Value = new StarDifficulty(RNG.NextDouble(0, 10), RNG.Next());
|
||||||
|
}, 500, true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,12 +3,14 @@
|
|||||||
|
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Colour;
|
using osu.Framework.Graphics.Colour;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
|
using osu.Framework.Graphics.UserInterface;
|
||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Containers;
|
using osu.Game.Graphics.Containers;
|
||||||
@ -20,17 +22,29 @@ namespace osu.Game.Screens.Ranking.Expanded
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// A pill that displays the star rating of a <see cref="BeatmapInfo"/>.
|
/// A pill that displays the star rating of a <see cref="BeatmapInfo"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class StarRatingDisplay : CompositeDrawable
|
public class StarRatingDisplay : CompositeDrawable, IHasCurrentValue<StarDifficulty>
|
||||||
{
|
{
|
||||||
private readonly StarDifficulty difficulty;
|
private Box background;
|
||||||
|
private OsuTextFlowContainer textFlow;
|
||||||
|
|
||||||
|
[Resolved]
|
||||||
|
private OsuColour colours { get; set; }
|
||||||
|
|
||||||
|
private readonly BindableWithCurrent<StarDifficulty> current = new BindableWithCurrent<StarDifficulty>();
|
||||||
|
|
||||||
|
public Bindable<StarDifficulty> Current
|
||||||
|
{
|
||||||
|
get => current.Current;
|
||||||
|
set => current.Current = value;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new <see cref="StarRatingDisplay"/> using an already computed <see cref="StarDifficulty"/>.
|
/// Creates a new <see cref="StarRatingDisplay"/> using an already computed <see cref="StarDifficulty"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="starDifficulty">The already computed <see cref="StarDifficulty"/> to display the star difficulty of.</param>
|
/// <param name="starDifficulty">The already computed <see cref="StarDifficulty"/> to display the star difficulty of.</param>
|
||||||
public StarRatingDisplay(StarDifficulty starDifficulty)
|
public StarRatingDisplay(StarDifficulty starDifficulty = default)
|
||||||
{
|
{
|
||||||
difficulty = starDifficulty;
|
Current.Value = starDifficulty;
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
@ -38,15 +52,6 @@ namespace osu.Game.Screens.Ranking.Expanded
|
|||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both;
|
AutoSizeAxes = Axes.Both;
|
||||||
|
|
||||||
var starRatingParts = difficulty.Stars.ToString("0.00", CultureInfo.InvariantCulture).Split('.');
|
|
||||||
string wholePart = starRatingParts[0];
|
|
||||||
string fractionPart = starRatingParts[1];
|
|
||||||
string separator = CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator;
|
|
||||||
|
|
||||||
ColourInfo backgroundColour = difficulty.DifficultyRating == DifficultyRating.ExpertPlus
|
|
||||||
? ColourInfo.GradientVertical(Color4Extensions.FromHex("#C1C1C1"), Color4Extensions.FromHex("#595959"))
|
|
||||||
: (ColourInfo)colours.ForDifficultyRating(difficulty.DifficultyRating);
|
|
||||||
|
|
||||||
InternalChildren = new Drawable[]
|
InternalChildren = new Drawable[]
|
||||||
{
|
{
|
||||||
new CircularContainer
|
new CircularContainer
|
||||||
@ -55,10 +60,9 @@ namespace osu.Game.Screens.Ranking.Expanded
|
|||||||
Masking = true,
|
Masking = true,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new Box
|
background = new Box
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Colour = backgroundColour
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -78,32 +82,51 @@ namespace osu.Game.Screens.Ranking.Expanded
|
|||||||
Icon = FontAwesome.Solid.Star,
|
Icon = FontAwesome.Solid.Star,
|
||||||
Colour = Color4.Black
|
Colour = Color4.Black
|
||||||
},
|
},
|
||||||
new OsuTextFlowContainer(s => s.Font = OsuFont.Numeric.With(weight: FontWeight.Black))
|
textFlow = new OsuTextFlowContainer(s => s.Font = OsuFont.Numeric.With(weight: FontWeight.Black))
|
||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
AutoSizeAxes = Axes.Both,
|
AutoSizeAxes = Axes.Both,
|
||||||
Direction = FillDirection.Horizontal,
|
Direction = FillDirection.Horizontal,
|
||||||
TextAnchor = Anchor.BottomLeft,
|
TextAnchor = Anchor.BottomLeft,
|
||||||
}.With(t =>
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void LoadComplete()
|
||||||
{
|
{
|
||||||
t.AddText($"{wholePart}", s =>
|
base.LoadComplete();
|
||||||
|
Current.BindValueChanged(difficulty => updateDisplay(difficulty.NewValue), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateDisplay(StarDifficulty difficulty)
|
||||||
|
{
|
||||||
|
var starRatingParts = difficulty.Stars.ToString("0.00", CultureInfo.InvariantCulture).Split('.');
|
||||||
|
string wholePart = starRatingParts[0];
|
||||||
|
string fractionPart = starRatingParts[1];
|
||||||
|
string separator = CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator;
|
||||||
|
|
||||||
|
background.Colour = difficulty.DifficultyRating == DifficultyRating.ExpertPlus
|
||||||
|
? ColourInfo.GradientVertical(Color4Extensions.FromHex("#C1C1C1"), Color4Extensions.FromHex("#595959"))
|
||||||
|
: (ColourInfo)colours.ForDifficultyRating(difficulty.DifficultyRating);
|
||||||
|
|
||||||
|
textFlow.Clear();
|
||||||
|
|
||||||
|
textFlow.AddText($"{wholePart}", s =>
|
||||||
{
|
{
|
||||||
s.Colour = Color4.Black;
|
s.Colour = Color4.Black;
|
||||||
s.Font = s.Font.With(size: 14);
|
s.Font = s.Font.With(size: 14);
|
||||||
s.UseFullGlyphHeight = false;
|
s.UseFullGlyphHeight = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
t.AddText($"{separator}{fractionPart}", s =>
|
textFlow.AddText($"{separator}{fractionPart}", s =>
|
||||||
{
|
{
|
||||||
s.Colour = Color4.Black;
|
s.Colour = Color4.Black;
|
||||||
s.Font = s.Font.With(size: 7);
|
s.Font = s.Font.With(size: 7);
|
||||||
s.UseFullGlyphHeight = false;
|
s.UseFullGlyphHeight = false;
|
||||||
});
|
});
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user