mirror of
https://github.com/ppy/osu.git
synced 2025-01-08 02:15:08 +08:00
Move file to other file
This commit is contained in:
parent
655b1a9e9d
commit
0f7316d41d
@ -9,7 +9,6 @@ using osu.Framework.Bindables;
|
|||||||
using osu.Framework.Extensions.IEnumerableExtensions;
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
using osu.Game.Graphics.UserInterface;
|
|
||||||
using osu.Game.Overlays.Settings;
|
using osu.Game.Overlays.Settings;
|
||||||
using osu.Game.Screens.Play.PlayerSettings;
|
using osu.Game.Screens.Play.PlayerSettings;
|
||||||
using osu.Game.Tournament.Components;
|
using osu.Game.Tournament.Components;
|
||||||
@ -126,66 +125,5 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SettingsTeamDropdown : LadderSettingsDropdown<TournamentTeam>
|
|
||||||
{
|
|
||||||
public SettingsTeamDropdown(BindableList<TournamentTeam> teams)
|
|
||||||
{
|
|
||||||
foreach (var t in teams.Prepend(new TournamentTeam()))
|
|
||||||
add(t);
|
|
||||||
|
|
||||||
teams.CollectionChanged += (_, args) =>
|
|
||||||
{
|
|
||||||
switch (args.Action)
|
|
||||||
{
|
|
||||||
case NotifyCollectionChangedAction.Add:
|
|
||||||
args.NewItems.Cast<TournamentTeam>().ForEach(add);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case NotifyCollectionChangedAction.Remove:
|
|
||||||
args.OldItems.Cast<TournamentTeam>().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;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void add(TournamentTeam team)
|
|
||||||
{
|
|
||||||
Control.AddDropdownItem(team);
|
|
||||||
boundReference(team.FullName).BindValueChanged(_ =>
|
|
||||||
{
|
|
||||||
Control.RemoveDropdownItem(team);
|
|
||||||
Control.AddDropdownItem(team);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private class LadderSettingsDropdown<T> : SettingsDropdown<T>
|
|
||||||
{
|
|
||||||
protected override OsuDropdown<T> CreateDropdown() => new DropdownControl();
|
|
||||||
|
|
||||||
private new class DropdownControl : SettingsDropdown<T>.DropdownControl
|
|
||||||
{
|
|
||||||
protected override DropdownMenu CreateMenu() => new Menu();
|
|
||||||
|
|
||||||
private new class Menu : OsuDropdownMenu
|
|
||||||
{
|
|
||||||
public Menu()
|
|
||||||
{
|
|
||||||
MaxHeight = 200;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
using osu.Game.Graphics.UserInterface;
|
||||||
|
using osu.Game.Overlays.Settings;
|
||||||
|
|
||||||
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
||||||
|
{
|
||||||
|
public class LadderSettingsDropdown<T> : SettingsDropdown<T>
|
||||||
|
{
|
||||||
|
protected override OsuDropdown<T> CreateDropdown() => new DropdownControl();
|
||||||
|
|
||||||
|
private new class DropdownControl : SettingsDropdown<T>.DropdownControl
|
||||||
|
{
|
||||||
|
protected override DropdownMenu CreateMenu() => new Menu();
|
||||||
|
|
||||||
|
private new class Menu : OsuDropdownMenu
|
||||||
|
{
|
||||||
|
public Menu()
|
||||||
|
{
|
||||||
|
MaxHeight = 200;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,55 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Collections.Specialized;
|
||||||
|
using System.Linq;
|
||||||
|
using osu.Framework.Bindables;
|
||||||
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
||||||
|
using osu.Game.Tournament.Models;
|
||||||
|
|
||||||
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
||||||
|
{
|
||||||
|
public class SettingsTeamDropdown : LadderSettingsDropdown<TournamentTeam>
|
||||||
|
{
|
||||||
|
public SettingsTeamDropdown(BindableList<TournamentTeam> teams)
|
||||||
|
{
|
||||||
|
foreach (var t in teams.Prepend(new TournamentTeam()))
|
||||||
|
add(t);
|
||||||
|
|
||||||
|
teams.CollectionChanged += (_, args) =>
|
||||||
|
{
|
||||||
|
switch (args.Action)
|
||||||
|
{
|
||||||
|
case NotifyCollectionChangedAction.Add:
|
||||||
|
args.NewItems.Cast<TournamentTeam>().ForEach(add);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case NotifyCollectionChangedAction.Remove:
|
||||||
|
args.OldItems.Cast<TournamentTeam>().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;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void add(TournamentTeam team)
|
||||||
|
{
|
||||||
|
Control.AddDropdownItem(team);
|
||||||
|
boundReference(team.FullName).BindValueChanged(_ =>
|
||||||
|
{
|
||||||
|
Control.RemoveDropdownItem(team);
|
||||||
|
Control.AddDropdownItem(team);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user