1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/LadderEditorSettings.cs

133 lines
4.5 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-22 04:52:25 +08:00
using System.Collections.Generic;
using System.Collections.Specialized;
2018-09-22 04:52:25 +08:00
using System.Linq;
using osu.Framework.Allocation;
2019-03-02 12:40:43 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.IEnumerableExtensions;
2018-09-22 04:52:25 +08:00
using osu.Framework.Graphics;
2018-11-16 19:30:12 +08:00
using osu.Framework.Input.Events;
2018-09-24 22:30:37 +08:00
using osu.Game.Overlays.Settings;
2018-09-22 04:52:25 +08:00
using osu.Game.Screens.Play.PlayerSettings;
2018-11-17 13:05:22 +08:00
using osu.Game.Tournament.Components;
2019-06-18 13:51:48 +08:00
using osu.Game.Tournament.Models;
2018-09-22 04:52:25 +08:00
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class LadderEditorSettings : PlayerSettingsGroup
{
private const int padding = 10;
2019-06-18 13:44:15 +08:00
private SettingsDropdown<TournamentRound> roundDropdown;
2018-09-25 01:31:48 +08:00
private PlayerCheckbox losersCheckbox;
2018-11-17 11:14:15 +08:00
private DateTextBox dateTimeBox;
private SettingsTeamDropdown team1Dropdown;
private SettingsTeamDropdown team2Dropdown;
2018-09-22 04:52:25 +08:00
[Resolved]
2018-11-06 13:49:20 +08:00
private LadderEditorInfo editorInfo { get; set; }
2018-09-22 04:52:25 +08:00
[Resolved]
private LadderInfo ladderInfo { get; set; }
public LadderEditorSettings()
: base("ladder")
{
}
2018-09-22 04:52:25 +08:00
[BackgroundDependencyLoader]
private void load()
{
Children = new Drawable[]
{
team1Dropdown = new SettingsTeamDropdown(ladderInfo.Teams) { LabelText = "Team 1" },
team2Dropdown = new SettingsTeamDropdown(ladderInfo.Teams) { LabelText = "Team 2" },
2019-06-18 13:44:15 +08:00
roundDropdown = new SettingsRoundDropdown(ladderInfo.Rounds) { LabelText = "Round" },
losersCheckbox = new PlayerCheckbox { LabelText = "Losers Bracket" },
dateTimeBox = new DateTextBox { LabelText = "Match Time" },
2018-09-22 04:52:25 +08:00
};
editorInfo.Selected.ValueChanged += selection =>
{
roundDropdown.Current = selection.NewValue?.Round;
losersCheckbox.Current = selection.NewValue?.Losers;
dateTimeBox.Current = selection.NewValue?.Date;
2018-09-22 04:52:25 +08:00
team1Dropdown.Current = selection.NewValue?.Team1;
team2Dropdown.Current = selection.NewValue?.Team2;
2018-09-22 04:52:25 +08:00
};
roundDropdown.Current.ValueChanged += round =>
2018-09-24 22:30:37 +08:00
{
2019-06-18 13:44:15 +08:00
if (editorInfo.Selected.Value?.Date.Value < round.NewValue?.StartDate.Value)
2018-11-17 11:14:15 +08:00
{
2019-06-18 13:44:15 +08:00
editorInfo.Selected.Value.Date.Value = round.NewValue.StartDate.Value;
editorInfo.Selected.TriggerChange();
2018-11-17 11:14:15 +08:00
}
2018-09-24 22:30:37 +08:00
};
2018-11-17 11:14:15 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
this.FadeIn();
2018-09-22 04:52:25 +08:00
}
2018-11-16 19:30:12 +08:00
protected override bool OnHover(HoverEvent e)
{
return false;
}
protected override void OnHoverLost(HoverLostEvent e)
{
}
private class SettingsRoundDropdown : SettingsDropdown<TournamentRound>
{
2019-06-18 13:44:15 +08:00
public SettingsRoundDropdown(BindableList<TournamentRound> rounds)
{
Current = new Bindable<TournamentRound>();
2019-06-18 13:44:15 +08:00
foreach (var r in rounds.Prepend(new TournamentRound()))
add(r);
rounds.CollectionChanged += (_, args) =>
{
switch (args.Action)
{
case NotifyCollectionChangedAction.Add:
args.NewItems.Cast<TournamentRound>().ForEach(add);
break;
case NotifyCollectionChangedAction.Remove:
args.OldItems.Cast<TournamentRound>().ForEach(i => Control.RemoveDropdownItem(i));
break;
}
};
}
private readonly List<IUnbindable> refBindables = new List<IUnbindable>();
private T boundReference<T>(T obj)
where T : IBindable
{
obj = (T)obj.GetBoundCopy();
refBindables.Add(obj);
return obj;
}
2019-06-18 13:44:15 +08:00
private void add(TournamentRound round)
{
2019-06-18 13:44:15 +08:00
Control.AddDropdownItem(round);
boundReference(round.Name).BindValueChanged(_ =>
{
2019-06-18 13:44:15 +08:00
Control.RemoveDropdownItem(round);
Control.AddDropdownItem(round);
});
}
}
2018-09-22 04:52:25 +08:00
}
}