1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 21:27:25 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/DrawableTournamentRound.cs

57 lines
2.0 KiB
C#
Raw Normal View History

2019-03-04 12:24:19 +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-09-24 23:57:44 +08:00
using JetBrains.Annotations;
using osu.Framework.Bindables;
2018-09-24 23:57:44 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-05-15 12:10:58 +08:00
using osu.Game.Graphics;
2019-06-18 13:51:48 +08:00
using osu.Game.Tournament.Models;
2018-09-24 23:57:44 +08:00
2018-09-25 03:21:48 +08:00
namespace osu.Game.Tournament.Screens.Ladder.Components
2018-09-24 23:57:44 +08:00
{
2019-06-18 13:44:15 +08:00
public class DrawableTournamentRound : CompositeDrawable
2018-09-24 23:57:44 +08:00
{
[UsedImplicitly]
private readonly Bindable<string> name;
[UsedImplicitly]
private readonly Bindable<string> description;
2019-06-18 13:44:15 +08:00
public DrawableTournamentRound(TournamentRound round, bool losers = false)
2018-09-24 23:57:44 +08:00
{
TournamentSpriteText textName;
TournamentSpriteText textDescription;
2018-09-24 23:57:44 +08:00
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
Direction = FillDirection.Vertical,
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
textDescription = new TournamentSpriteText
2018-09-24 23:57:44 +08:00
{
Colour = TournamentGame.TEXT_COLOUR,
2018-09-24 23:57:44 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre
},
textName = new TournamentSpriteText
2018-09-24 23:57:44 +08:00
{
Font = OsuFont.Torus.With(weight: FontWeight.Bold),
Colour = TournamentGame.TEXT_COLOUR,
2018-09-24 23:57:44 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre
},
}
};
2019-06-18 13:44:15 +08:00
name = round.Name.GetBoundCopy();
name.BindValueChanged(n => textName.Text = ((losers ? "Losers " : "") + round.Name).ToUpper(), true);
description = round.Description.GetBoundCopy();
description.BindValueChanged(n => textDescription.Text = round.Description.Value?.ToUpper(), true);
2018-09-24 23:57:44 +08:00
}
}
}