2019-06-14 19:32:02 +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.
|
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
using System.Collections.Generic;
|
2021-03-30 08:03:32 +08:00
|
|
|
using System.Diagnostics;
|
2019-06-18 16:59:33 +08:00
|
|
|
using System.IO;
|
2019-06-17 19:47:45 +08:00
|
|
|
using System.Linq;
|
2019-06-18 16:59:33 +08:00
|
|
|
using Newtonsoft.Json;
|
2019-06-14 19:32:02 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-06-17 15:28:58 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-06-14 19:32:02 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Game.Graphics;
|
2019-06-17 19:47:45 +08:00
|
|
|
using osu.Game.Online.API;
|
2019-06-14 19:32:02 +08:00
|
|
|
using osu.Game.Overlays.Settings;
|
|
|
|
using osu.Game.Tournament.Components;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2019-06-17 19:47:45 +08:00
|
|
|
using osu.Game.Users;
|
2019-06-14 19:32:02 +08:00
|
|
|
using osuTK;
|
|
|
|
|
2019-06-18 13:51:48 +08:00
|
|
|
namespace osu.Game.Tournament.Screens.Editors
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
public class TeamEditorScreen : TournamentEditorScreen<TeamEditorScreen.TeamRow, TournamentTeam>
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
[Resolved]
|
2019-11-11 16:39:48 +08:00
|
|
|
private TournamentGameBase game { get; set; }
|
2019-06-18 16:59:33 +08:00
|
|
|
|
|
|
|
protected override BindableList<TournamentTeam> Storage => LadderInfo.Teams;
|
|
|
|
|
2019-06-14 19:32:02 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2019-11-08 16:00:47 +08:00
|
|
|
ControlPanel.Add(new TourneyButton
|
2019-06-18 16:59:33 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Text = "Add all countries",
|
|
|
|
Action = addAllCountries
|
|
|
|
});
|
2019-06-14 19:32:02 +08:00
|
|
|
}
|
|
|
|
|
2020-05-16 18:50:56 +08:00
|
|
|
protected override TeamRow CreateDrawable(TournamentTeam model) => new TeamRow(model, this);
|
2019-06-18 16:59:33 +08:00
|
|
|
|
|
|
|
private void addAllCountries()
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
List<TournamentTeam> countries;
|
2021-03-30 08:00:09 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
using (Stream stream = game.Resources.GetStream("Resources/countries.json"))
|
|
|
|
using (var sr = new StreamReader(stream))
|
|
|
|
countries = JsonConvert.DeserializeObject<List<TournamentTeam>>(sr.ReadToEnd());
|
2019-06-14 19:32:02 +08:00
|
|
|
|
2021-03-30 08:03:32 +08:00
|
|
|
Debug.Assert(countries != null);
|
|
|
|
|
|
|
|
foreach (var c in countries)
|
|
|
|
Storage.Add(c);
|
2019-06-14 19:32:02 +08:00
|
|
|
}
|
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
public class TeamRow : CompositeDrawable, IModelBacked<TournamentTeam>
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
public TournamentTeam Model { get; }
|
2019-06-14 19:32:02 +08:00
|
|
|
|
2019-06-17 15:28:58 +08:00
|
|
|
private readonly Container drawableContainer;
|
|
|
|
|
2020-03-03 17:12:42 +08:00
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
private TournamentSceneManager sceneManager { get; set; }
|
|
|
|
|
2019-06-14 19:32:02 +08:00
|
|
|
[Resolved]
|
|
|
|
private LadderInfo ladderInfo { get; set; }
|
|
|
|
|
2020-05-16 18:50:56 +08:00
|
|
|
public TeamRow(TournamentTeam team, TournamentScreen parent)
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
Model = team;
|
2019-06-17 19:47:45 +08:00
|
|
|
|
2019-06-17 19:59:17 +08:00
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 10;
|
2019-06-14 19:32:02 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
PlayerEditor playerEditor = new PlayerEditor(Model)
|
2019-06-17 19:59:17 +08:00
|
|
|
{
|
|
|
|
Width = 0.95f
|
|
|
|
};
|
2019-06-17 15:28:58 +08:00
|
|
|
|
2019-06-14 19:32:02 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = OsuColour.Gray(0.1f),
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2019-06-17 19:59:17 +08:00
|
|
|
drawableContainer = new Container
|
|
|
|
{
|
|
|
|
Size = new Vector2(100, 50),
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
},
|
2019-06-14 19:32:02 +08:00
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Margin = new MarginPadding(5),
|
|
|
|
Spacing = new Vector2(5),
|
|
|
|
Direction = FillDirection.Full,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new SettingsTextBox
|
|
|
|
{
|
|
|
|
LabelText = "Name",
|
2019-06-17 19:59:17 +08:00
|
|
|
Width = 0.2f,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = Model.FullName
|
2019-06-14 19:32:02 +08:00
|
|
|
},
|
|
|
|
new SettingsTextBox
|
|
|
|
{
|
2019-06-17 15:28:58 +08:00
|
|
|
LabelText = "Acronym",
|
2019-06-17 19:59:17 +08:00
|
|
|
Width = 0.2f,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = Model.Acronym
|
2019-06-14 19:32:02 +08:00
|
|
|
},
|
2019-06-17 15:28:58 +08:00
|
|
|
new SettingsTextBox
|
2019-06-14 19:32:02 +08:00
|
|
|
{
|
2019-06-17 15:28:58 +08:00
|
|
|
LabelText = "Flag",
|
2019-06-17 19:59:17 +08:00
|
|
|
Width = 0.2f,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = Model.FlagName
|
2019-06-14 19:32:02 +08:00
|
|
|
},
|
2020-03-03 17:12:42 +08:00
|
|
|
new SettingsTextBox
|
|
|
|
{
|
|
|
|
LabelText = "Seed",
|
|
|
|
Width = 0.2f,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = Model.Seed
|
2020-03-03 17:12:42 +08:00
|
|
|
},
|
|
|
|
new SettingsSlider<int>
|
|
|
|
{
|
|
|
|
LabelText = "Last Year Placement",
|
|
|
|
Width = 0.33f,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = Model.LastYearPlacing
|
2020-03-03 17:12:42 +08:00
|
|
|
},
|
2019-06-17 19:47:45 +08:00
|
|
|
new SettingsButton
|
|
|
|
{
|
2019-06-17 19:59:17 +08:00
|
|
|
Width = 0.11f,
|
|
|
|
Margin = new MarginPadding(10),
|
2019-06-17 19:47:45 +08:00
|
|
|
Text = "Add player",
|
2019-06-18 15:10:23 +08:00
|
|
|
Action = () => playerEditor.CreateNew()
|
2019-06-17 19:47:45 +08:00
|
|
|
},
|
|
|
|
new DangerousSettingsButton
|
|
|
|
{
|
2019-06-17 19:59:17 +08:00
|
|
|
Width = 0.11f,
|
2019-06-17 19:47:45 +08:00
|
|
|
Text = "Delete Team",
|
2019-06-17 19:59:17 +08:00
|
|
|
Margin = new MarginPadding(10),
|
2019-06-17 19:47:45 +08:00
|
|
|
Action = () =>
|
|
|
|
{
|
|
|
|
Expire();
|
2019-06-18 16:59:33 +08:00
|
|
|
ladderInfo.Teams.Remove(Model);
|
2019-06-17 19:47:45 +08:00
|
|
|
},
|
2019-06-17 19:59:17 +08:00
|
|
|
},
|
2020-03-03 17:12:42 +08:00
|
|
|
playerEditor,
|
|
|
|
new SettingsButton
|
|
|
|
{
|
|
|
|
Width = 0.2f,
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
Text = "Edit seeding results",
|
|
|
|
Action = () =>
|
|
|
|
{
|
2020-05-16 18:50:56 +08:00
|
|
|
sceneManager?.SetScreen(new SeedingEditorScreen(team, parent));
|
2020-03-03 17:12:42 +08:00
|
|
|
}
|
|
|
|
},
|
2019-06-17 19:47:45 +08:00
|
|
|
}
|
|
|
|
},
|
2019-06-14 19:32:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2019-06-17 15:28:58 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
Model.FlagName.BindValueChanged(updateDrawable, true);
|
2019-06-17 15:28:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updateDrawable(ValueChangedEvent<string> flag)
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
drawableContainer.Child = new DrawableTeamFlag(Model);
|
2019-06-17 15:28:58 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 19:47:45 +08:00
|
|
|
public class PlayerEditor : CompositeDrawable
|
|
|
|
{
|
|
|
|
private readonly TournamentTeam team;
|
|
|
|
private readonly FillFlowContainer flow;
|
|
|
|
|
|
|
|
public PlayerEditor(TournamentTeam team)
|
|
|
|
{
|
|
|
|
this.team = team;
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
InternalChild = flow = new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
ChildrenEnumerable = team.Players.Select(p => new PlayerRow(team, p))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-06-18 15:10:23 +08:00
|
|
|
public void CreateNew()
|
2019-06-17 19:47:45 +08:00
|
|
|
{
|
|
|
|
var user = new User();
|
|
|
|
team.Players.Add(user);
|
|
|
|
flow.Add(new PlayerRow(team, user));
|
|
|
|
}
|
|
|
|
|
|
|
|
public class PlayerRow : CompositeDrawable
|
|
|
|
{
|
|
|
|
private readonly User user;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
protected IAPIProvider API { get; private set; }
|
|
|
|
|
2019-11-11 16:39:48 +08:00
|
|
|
[Resolved]
|
|
|
|
private TournamentGameBase game { get; set; }
|
|
|
|
|
2021-06-28 11:00:07 +08:00
|
|
|
private readonly Bindable<int?> userId = new Bindable<int?>();
|
2019-06-17 19:47:45 +08:00
|
|
|
|
|
|
|
private readonly Container drawableContainer;
|
|
|
|
|
|
|
|
public PlayerRow(TournamentTeam team, User user)
|
|
|
|
{
|
|
|
|
this.user = user;
|
|
|
|
|
|
|
|
Margin = new MarginPadding(10);
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
2019-06-17 19:59:17 +08:00
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
2019-06-17 19:47:45 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2019-06-17 19:59:17 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = OsuColour.Gray(0.2f),
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2019-06-17 19:47:45 +08:00
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Margin = new MarginPadding(5),
|
|
|
|
Padding = new MarginPadding { Right = 160 },
|
|
|
|
Spacing = new Vector2(5),
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2019-06-21 21:04:34 +08:00
|
|
|
new SettingsNumberBox
|
2019-06-17 19:47:45 +08:00
|
|
|
{
|
|
|
|
LabelText = "User ID",
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 200,
|
2020-10-06 16:18:41 +08:00
|
|
|
Current = userId,
|
2019-06-17 19:47:45 +08:00
|
|
|
},
|
|
|
|
drawableContainer = new Container
|
|
|
|
{
|
2019-06-17 19:59:17 +08:00
|
|
|
Size = new Vector2(100, 70),
|
2019-06-17 19:47:45 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new DangerousSettingsButton
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 150,
|
|
|
|
Text = "Delete Player",
|
|
|
|
Action = () =>
|
|
|
|
{
|
|
|
|
Expire();
|
|
|
|
team.Players.Remove(user);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2021-06-28 11:00:07 +08:00
|
|
|
userId.Value = user.Id;
|
2021-06-28 14:23:19 +08:00
|
|
|
userId.BindValueChanged(id =>
|
2019-06-17 19:47:45 +08:00
|
|
|
{
|
2021-06-28 14:23:19 +08:00
|
|
|
user.Id = id.NewValue ?? 0;
|
2019-06-17 19:47:45 +08:00
|
|
|
|
2021-06-28 14:23:19 +08:00
|
|
|
if (id.NewValue != id.OldValue)
|
2019-06-17 19:47:45 +08:00
|
|
|
user.Username = string.Empty;
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(user.Username))
|
|
|
|
{
|
|
|
|
updatePanel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-11 16:39:48 +08:00
|
|
|
game.PopulateUser(user, updatePanel, updatePanel);
|
2019-06-17 19:47:45 +08:00
|
|
|
}, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updatePanel()
|
|
|
|
{
|
2020-03-04 19:58:15 +08:00
|
|
|
drawableContainer.Child = new UserGridPanel(user) { Width = 300 };
|
2019-06-17 19:47:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-14 19:32:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|