mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 13:17:26 +08:00
157 lines
5.6 KiB
C#
157 lines
5.6 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Overlays.Settings;
|
|
using osu.Game.Screens.Play.PlayerSettings;
|
|
using osu.Game.Tournament.Components;
|
|
|
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
|
{
|
|
public class LadderEditorSettings : PlayerSettingsGroup
|
|
{
|
|
private const int padding = 10;
|
|
|
|
protected override string Title => @"ladder";
|
|
|
|
private OsuTextBox textboxTeam1;
|
|
private OsuTextBox textboxTeam2;
|
|
private SettingsDropdown<TournamentGrouping> groupingDropdown;
|
|
private PlayerCheckbox losersCheckbox;
|
|
private DateTextBox dateTimeBox;
|
|
|
|
[Resolved]
|
|
private LadderEditorInfo editorInfo { get; set; }
|
|
|
|
[Resolved]
|
|
private LadderInfo ladderInfo { get; set; }
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
var teamEntries = ladderInfo.Teams;
|
|
|
|
var groupingOptions = ladderInfo.Groupings.Prepend(new TournamentGrouping());
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding { Horizontal = padding },
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Text = "Team1",
|
|
},
|
|
},
|
|
},
|
|
textboxTeam1 = new OsuTextBox { RelativeSizeAxes = Axes.X, Height = 20 },
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding { Horizontal = padding },
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Text = "Team2",
|
|
},
|
|
},
|
|
},
|
|
textboxTeam2 = new OsuTextBox { RelativeSizeAxes = Axes.X, Height = 20 },
|
|
groupingDropdown = new SettingsDropdown<TournamentGrouping>
|
|
{
|
|
Bindable = new Bindable<TournamentGrouping> { Default = groupingOptions.First() },
|
|
Items = groupingOptions
|
|
},
|
|
losersCheckbox = new PlayerCheckbox
|
|
{
|
|
LabelText = "Losers Bracket",
|
|
Bindable = new Bindable<bool>()
|
|
},
|
|
dateTimeBox = new DateTextBox
|
|
{
|
|
Bindable = new Bindable<DateTimeOffset>()
|
|
}
|
|
};
|
|
|
|
editorInfo.Selected.ValueChanged += selection =>
|
|
{
|
|
textboxTeam1.Text = selection?.Team1.Value?.Acronym;
|
|
textboxTeam2.Text = selection?.Team2.Value?.Acronym;
|
|
groupingDropdown.Bindable.Value = selection?.Grouping.Value ?? groupingOptions.First();
|
|
losersCheckbox.Current.Value = selection?.Losers.Value ?? false;
|
|
dateTimeBox.Bindable.Value = selection?.Date.Value ?? DateTimeOffset.UtcNow;
|
|
};
|
|
|
|
textboxTeam1.OnCommit = (val, newText) =>
|
|
{
|
|
if (newText && editorInfo.Selected.Value != null)
|
|
editorInfo.Selected.Value.Team1.Value = teamEntries.FirstOrDefault(t => t.Acronym == val.Text);
|
|
};
|
|
|
|
textboxTeam2.OnCommit = (val, newText) =>
|
|
{
|
|
if (newText && editorInfo.Selected.Value != null)
|
|
editorInfo.Selected.Value.Team2.Value = teamEntries.FirstOrDefault(t => t.Acronym == val.Text);
|
|
};
|
|
|
|
groupingDropdown.Bindable.ValueChanged += grouping =>
|
|
{
|
|
if (editorInfo.Selected.Value != null)
|
|
{
|
|
editorInfo.Selected.Value.Grouping.Value = grouping;
|
|
if (editorInfo.Selected.Value.Date.Value < grouping.StartDate.Value)
|
|
{
|
|
editorInfo.Selected.Value.Date.Value = grouping.StartDate.Value;
|
|
editorInfo.Selected.TriggerChange();
|
|
}
|
|
}
|
|
};
|
|
|
|
losersCheckbox.Current.ValueChanged += losers =>
|
|
{
|
|
if (editorInfo.Selected.Value != null)
|
|
editorInfo.Selected.Value.Losers.Value = losers;
|
|
};
|
|
|
|
dateTimeBox.Bindable.ValueChanged += date =>
|
|
{
|
|
if (editorInfo.Selected.Value != null)
|
|
editorInfo.Selected.Value.Date.Value = date;
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
this.FadeIn();
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
}
|
|
}
|
|
}
|