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

157 lines
5.6 KiB
C#
Raw Normal View History

2018-09-22 04:52:25 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-11-17 11:14:15 +08:00
using System;
2018-09-22 04:52:25 +08:00
using System.Linq;
using osu.Framework.Allocation;
2018-09-24 22:30:37 +08:00
using osu.Framework.Configuration;
2018-09-22 04:52:25 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-11-16 19:30:12 +08:00
using osu.Framework.Input.Events;
2018-09-22 04:52:25 +08:00
using osu.Game.Graphics.Sprites;
2018-09-24 01:17:07 +08:00
using osu.Game.Graphics.UserInterface;
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 11:14:15 +08:00
using osu.Game.Tournament.Screens.Groupings;
2018-09-22 04:52:25 +08:00
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class LadderEditorSettings : PlayerSettingsGroup
{
private const int padding = 10;
protected override string Title => @"ladder";
2018-09-24 01:17:07 +08:00
private OsuTextBox textboxTeam1;
private OsuTextBox textboxTeam2;
2018-09-24 22:30:37 +08:00
private SettingsDropdown<TournamentGrouping> groupingDropdown;
2018-09-25 01:31:48 +08:00
private PlayerCheckbox losersCheckbox;
2018-11-17 11:14:15 +08:00
private DateTextBox dateTimeBox;
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; }
2018-09-22 04:52:25 +08:00
[BackgroundDependencyLoader]
private void load()
{
var teamEntries = ladderInfo.Teams;
2018-09-22 04:52:25 +08:00
2018-11-15 13:12:41 +08:00
var groupingOptions = ladderInfo.Groupings.Prepend(new TournamentGrouping());
2018-09-24 22:30:37 +08:00
2018-09-22 04:52:25 +08:00
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",
},
},
},
2018-09-24 01:17:07 +08:00
textboxTeam1 = new OsuTextBox { RelativeSizeAxes = Axes.X, Height = 20 },
2018-09-22 04:52:25 +08:00
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",
},
},
},
2018-09-24 01:17:07 +08:00
textboxTeam2 = new OsuTextBox { RelativeSizeAxes = Axes.X, Height = 20 },
2018-09-24 22:30:37 +08:00
groupingDropdown = new SettingsDropdown<TournamentGrouping>
{
2018-11-15 13:12:41 +08:00
Bindable = new Bindable<TournamentGrouping> { Default = groupingOptions.First() },
2018-09-24 22:30:37 +08:00
Items = groupingOptions
},
2018-09-25 01:31:48 +08:00
losersCheckbox = new PlayerCheckbox
{
LabelText = "Losers Bracket",
Bindable = new Bindable<bool>()
2018-11-17 11:14:15 +08:00
},
dateTimeBox = new DateTextBox
{
Bindable = new Bindable<DateTimeOffset>()
2018-09-25 01:31:48 +08:00
}
2018-09-22 04:52:25 +08:00
};
editorInfo.Selected.ValueChanged += selection =>
{
2018-09-24 01:17:07 +08:00
textboxTeam1.Text = selection?.Team1.Value?.Acronym;
textboxTeam2.Text = selection?.Team2.Value?.Acronym;
2018-11-15 13:12:41 +08:00
groupingDropdown.Bindable.Value = selection?.Grouping.Value ?? groupingOptions.First();
2018-09-25 01:31:48 +08:00
losersCheckbox.Current.Value = selection?.Losers.Value ?? false;
2018-11-17 11:14:15 +08:00
dateTimeBox.Bindable.Value = selection?.Date.Value ?? DateTimeOffset.UtcNow;
2018-09-22 04:52:25 +08:00
};
2018-09-24 01:17:07 +08:00
textboxTeam1.OnCommit = (val, newText) =>
2018-09-22 04:52:25 +08:00
{
2018-09-24 01:17:07 +08:00
if (newText && editorInfo.Selected.Value != null)
editorInfo.Selected.Value.Team1.Value = teamEntries.FirstOrDefault(t => t.Acronym == val.Text);
2018-09-22 04:52:25 +08:00
};
2018-09-24 01:17:07 +08:00
textboxTeam2.OnCommit = (val, newText) =>
2018-09-22 04:52:25 +08:00
{
2018-09-24 01:17:07 +08:00
if (newText && editorInfo.Selected.Value != null)
editorInfo.Selected.Value.Team2.Value = teamEntries.FirstOrDefault(t => t.Acronym == val.Text);
2018-09-22 04:52:25 +08:00
};
2018-09-24 22:30:37 +08:00
groupingDropdown.Bindable.ValueChanged += grouping =>
{
if (editorInfo.Selected.Value != null)
2018-11-17 11:14:15 +08:00
{
2018-09-24 22:30:37 +08:00
editorInfo.Selected.Value.Grouping.Value = grouping;
2018-11-17 11:14:15 +08:00
if (editorInfo.Selected.Value.Date.Value < grouping.StartDate.Value)
{
editorInfo.Selected.Value.Date.Value = grouping.StartDate.Value;
editorInfo.Selected.TriggerChange();
}
}
2018-09-24 22:30:37 +08:00
};
2018-09-25 01:31:48 +08:00
losersCheckbox.Current.ValueChanged += losers =>
{
if (editorInfo.Selected.Value != null)
editorInfo.Selected.Value.Losers.Value = losers;
};
2018-11-17 11:14:15 +08:00
dateTimeBox.Bindable.ValueChanged += date =>
{
if (editorInfo.Selected.Value != null)
editorInfo.Selected.Value.Date.Value = date;
};
}
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)
{
}
2018-09-22 04:52:25 +08:00
}
}